<!--SIF Implementation Specification UK 1.0-6 (September 18, 2009)-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://www.sifinfo.org/uk/infrastructure/2.x" xmlns:sif="http://www.sifinfo.org/uk/infrastructure/2.x" elementFormDefault="qualified">
  <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="imports/xml/xml.xsd" />

  <!--Infrastructure Common Elements-->


  <!--SIF_Message-->

  <xs:complexType name="SIF_MessageType">
    <xs:annotation>
      <xs:documentation>Contains one of the SIF message types.</xs:documentation>
    </xs:annotation>
    <xs:choice>
      <xs:element ref="sif:SIF_Ack" />
      <xs:element ref="sif:SIF_Event" />
      <xs:element ref="sif:SIF_Provide" />
      <xs:element ref="sif:SIF_Provision" />
      <xs:element ref="sif:SIF_Register" />
      <xs:element ref="sif:SIF_Request" />
      <xs:element ref="sif:SIF_Response" />
      <xs:element ref="sif:SIF_Subscribe" />
      <xs:element ref="sif:SIF_SystemControl" />
      <xs:element ref="sif:SIF_Unprovide" />
      <xs:element ref="sif:SIF_Unregister" />
      <xs:element ref="sif:SIF_Unsubscribe" />
    </xs:choice>
    <!--<xs:attribute name="xmlns" use="optional" type="xs:anyURI">
  <xs:annotation>
    <xs:documentation>
              The xmlns attribute specifies the XML namespace for SIF messages.
              For this version of the specification, the value of this attribute MUST be http://www.sifinfo.org/uk/infrastructure/2.x. This XML namespace value will remain the same until the next major release of SIF (3.0).
            </xs:documentation>
  </xs:annotation>
</xs:attribute>-->
    <xs:attribute name="Version" use="required" type="sif:VersionType">
      <xs:annotation>
        <xs:documentation>
              The version of the SIF Implementation Specification that defines this message's XML structure.
              For this version of the specification, the value of this attribute is 2.0r1.
              This attribute can be used by ZIS and agent implementations to choose schema files to
              validate the message's XML.
            </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_Message" type="sif:SIF_MessageType" />


  <!--SIF_Header-->

  <xs:complexType name="SIF_HeaderType">
    <xs:annotation>
      <xs:documentation>Header information associated with a message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_MsgId" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>SIF_MsgId is a globally unique message identifier from the Agent or ZIS that sends out the message.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Timestamp" type="xs:dateTime">
        <xs:annotation>
          <xs:documentation>Timestamp of when the message was sent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Security" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SecureChannel">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_AuthenticationLevel" />
                  <xs:element ref="sif:SIF_EncryptionLevel" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SourceId" type="xs:token">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId is the ID of the originator of the message. Each source needs to have a zone unique case-sensitive identifier.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_DestinationId" minOccurs="0" type="xs:token">
        <xs:annotation>
          <xs:documentation>This element represents the ID of the recipient of the message and may be present as follows:</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Header" type="sif:SIF_HeaderType" />


  <!--SIF_EncryptionLevel-->

  <xs:simpleType name="SIF_EncryptionLevelType">
    <xs:restriction base="xs:unsignedInt">
      <xs:annotation>
        <xs:documentation>The minimum level of encryption required by the message originator to be considered a secure channel upon message delivery to other agents.</xs:documentation>
      </xs:annotation>
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>No encryption required</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 40 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 56 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 80 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 128 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_EncryptionLevel" type="sif:SIF_EncryptionLevelType" />


  <!--SIF_AuthenticationLevel-->

  <xs:simpleType name="SIF_AuthenticationLevelType">
    <xs:restriction base="xs:unsignedInt">
      <xs:annotation>
        <xs:documentation>The minimum level of authentication required by the message originator to be considered a secure channel upon message delivery to other agents.</xs:documentation>
      </xs:annotation>
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>No authentication required and a valid certificate does not need to be presented.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>A valid certificate must be presented.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>
                A valid certificate from a trusted certificate
                authority must be presented.
              </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>
                A valid certificate from a trusted certificate
                authority must be presented and the CN field of the certificate's
                Subject entry must match the host sending the certificate.
              </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_AuthenticationLevel" type="sif:SIF_AuthenticationLevelType" />


  <!--SIF_Contexts-->

  <xs:complexType name="SIF_ContextsType">
    <xs:annotation>
      <xs:documentation>
              A list of SIF contexts that applies to a message or operation.  Typically where used as an optional element,
              the omission of this element implies the SIF_Default context applies.
            </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Context" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Contexts" type="sif:SIF_ContextsType" />


  <!--SIF_Context-->

  <xs:simpleType name="SIF_ContextType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The name of a SIF Context that applies to a message or operation.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_Context" type="sif:SIF_ContextType" />


  <!--SIF_Protocol-->

  <xs:complexType name="SIF_ProtocolType">
    <xs:annotation>
      <xs:documentation>Contains protocol information for contacting a ZIS or Agent.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:choice>
        <xs:element name="SIF_URL" type="xs:anyURI">
          <xs:annotation>
            <xs:documentation>This element is required if the protocol is HTTPS or HTTP. 
            It contains the https or http URL for contacting the agent.</xs:documentation>
          </xs:annotation>
        </xs:element>
        <xs:element name="SIF_Property" maxOccurs="unbounded">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="SIF_Name" type="xs:token">
                <xs:annotation>
                  <xs:documentation>
              Property name.
            </xs:documentation>
                </xs:annotation>
              </xs:element>
              <xs:element name="SIF_Value" type="xs:string">
                <xs:annotation>
                  <xs:documentation>
              Property value.
            </xs:documentation>
                </xs:annotation>
              </xs:element>
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:choice>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>The type of protocol to use (HTTPS, HTTP or an implementation-defined protocol).</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:union>
          <xs:simpleType>
            <xs:restriction base="sif:DefinedProtocolsType" />
          </xs:simpleType>
          <xs:simpleType>
            <xs:restriction base="xs:token" />
          </xs:simpleType>
        </xs:union>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Secure" use="required">
      <xs:annotation>
        <xs:documentation>Whether the protocol provides a secure channel.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Yes" />
          <xs:enumeration value="No" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_Protocol" type="sif:SIF_ProtocolType" />


  <!--SIF_Status-->

  <xs:complexType name="SIF_StatusType">
    <xs:annotation>
      <xs:documentation>This element is used to signal a successful response.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Code" type="sif:InfrastructureStatusCodeType" />
      <xs:element name="SIF_Desc" minOccurs="0" type="xs:string">
        <xs:annotation>
          <xs:documentation>
              An optional textual description/equivalent of SIF_Code.
            </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Data" minOccurs="0">
        <xs:annotation>
          <xs:documentation>
              Optional element to hold data related to a successful operation.  This data is currently limited
              to a SIF_Message returned by the ZIS in response to a Pull-Mode Agent's SIF_GetMessage,
              SIF_AgentACL returned by the ZIS in response to SIF_Register and SIF_GetAgentACL,
              and SIF_ZoneStatus returned by the ZIS in response to SIF_GetZoneStatus.
            </xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:choice>
            <xs:element ref="sif:SIF_Message" />
            <xs:element name="SIF_AgentACL" type="sif:SIF_AgentACLInfrastructureType" />
            <xs:element name="SIF_ZoneStatus" type="sif:SIF_ZoneStatusInfrastructureType" />
          </xs:choice>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Status" type="sif:SIF_StatusType" />


  <!--SIF_Error-->

  <xs:complexType name="SIF_ErrorType">
    <xs:annotation>
      <xs:documentation>This element is used to signal an unsuccessful response.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Category" type="sif:InfrastructureErrorCategoryType" />
      <xs:element name="SIF_Code">
        <xs:annotation>
          <xs:documentation>
              See Error Codes.
            </xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureXMLValidationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEncryptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAuthenticationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAccessAndPermissionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRegistrationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureProvisionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSubscriptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRequestAndResponseErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEventReportingAndProcessingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureTransportErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSystemErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureGenericMessageHandlingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="xs:token" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Desc" type="xs:string">
        <xs:annotation>
          <xs:documentation>A simple, easy to understand, description of the error. The primary consumer of this message is the application user. Example: "Unable to open database."</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_ExtendedDesc" minOccurs="0" type="xs:string">
        <xs:annotation>
          <xs:documentation>An optional error description that is more complete and technical in nature. It is to be used as a diagnostic message in trouble-shooting procedures. Example: "The 'Students' table is opened in exclusive mode by user 'ADM1' (dbm.cpp, line 300)."</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Error" type="sif:SIF_ErrorType" />


  <!--SIF_Query-->

  <xs:complexType name="SIF_QueryType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_QueryObject">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Individual elements/attributes being requested of matching object.  See SIF_Element Syntax below. 
						If specified, only the elements/attributes requested are returned in the SIF_Response (with any parent elements/attributes); 
						otherwise, all elements supported by the provider's object are returned.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being queried for.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:choice minOccurs="0">
        <xs:element name="SIF_ConditionGroup">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="SIF_Conditions" maxOccurs="unbounded">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element name="SIF_Condition" maxOccurs="unbounded">
                      <xs:complexType>
                        <xs:sequence>
                          <xs:element name="SIF_Element" type="xs:normalizedString">
                            <xs:annotation>
                              <xs:documentation>This is the element/attribute being queried.  See below for syntax.</xs:documentation>
                            </xs:annotation>
                          </xs:element>
                          <xs:element name="SIF_Operator">
                            <xs:annotation>
                              <xs:documentation>The comparison operator for the condition.</xs:documentation>
                            </xs:annotation>
                            <xs:simpleType>
                              <xs:restriction base="xs:token">
                                <xs:enumeration value="EQ">
                                  <xs:annotation>
                                    <xs:documentation>Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="LT">
                                  <xs:annotation>
                                    <xs:documentation>Less Than</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="GT">
                                  <xs:annotation>
                                    <xs:documentation>Greater Than</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="LE">
                                  <xs:annotation>
                                    <xs:documentation>Less Than Or Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="GE">
                                  <xs:annotation>
                                    <xs:documentation>Greater Than Or Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="NE">
                                  <xs:annotation>
                                    <xs:documentation>Not Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                              </xs:restriction>
                            </xs:simpleType>
                          </xs:element>
                          <xs:element name="SIF_Value" type="xs:string">
                            <xs:annotation>
                              <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                            </xs:annotation>
                          </xs:element>
                        </xs:sequence>
                      </xs:complexType>
                    </xs:element>
                  </xs:sequence>
                  <xs:attribute name="Type" use="required">
                    <xs:annotation>
                      <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="And" />
                        <xs:enumeration value="Or" />
                        <xs:enumeration value="None" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:attribute>
                </xs:complexType>
              </xs:element>
            </xs:sequence>
            <xs:attribute name="Type" use="required">
              <xs:annotation>
                <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="And" />
                  <xs:enumeration value="Or" />
                  <xs:enumeration value="None" />
                </xs:restriction>
              </xs:simpleType>
            </xs:attribute>
          </xs:complexType>
        </xs:element>
        <xs:element name="SIF_Example" type="sif:SIF_ExampleObjectType">
          <xs:annotation>
            <xs:documentation>
							An example SIF object that serves as a template for matching objects.  There is an implied EQ operator
							for every element/attribute value present and an implied And group of all resulting conditions.  Currently
							this is an experimental feature and limited to use with select objects; wider use may be considered in future
							versions of this specification.
						</xs:documentation>
          </xs:annotation>
        </xs:element>
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Query" type="sif:SIF_QueryType" />


  <!--SIF_ExtendedQuery-->

  <xs:complexType name="SIF_ExtendedQueryType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism for SIF_Request, SIF_Query, has several limitations that limit its usefulness when creating reporting applications
						that process data from a SIF zone.  SIF_Query is limited to matching only one object type per query, requiring applications to
						manually join together results as needed for reporting and general data processing.  SIF_ExtendedQuery is designed to allow for joins on
						object identifiers/RefIds and to allow retrieval of data in a row/column fashion similar to SQL.  Each returned column may contain hierarchical XML elements/objects.
						Providers and Responders in a Zone may support SIF_ExtendedQuery
							in addition to SIF_Query.  Support for SIF_ExtendedQuery can be declared in and retrieved from the Zone is various Infrastructure
							messages and objects.
						</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_DestinationProvider" minOccurs="0" type="sif:SIF_RequestObjectNamesType">
        <xs:annotation>
          <xs:documentation>
              If no SIF_DestinationId applies to the request and this element is supplied, the Requester specifies that the
              extended query be routed to the Provider on record for the given object name.  If this element is omitted and no SIF_DestinationId
              applies to the request, the ZIS routes the request to the Provider on record for the object name in SIF_From.
            </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Select">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Indicates the element/attribute to return as a column.  Contents can be left empty to return the whole object specified in ObjectName,
						or * can be designated to return all attributes and immediate child elements of the object specified in ObjectName, or 
							SIF_Element Syntax can be specified, relative to the object specified in ObjectName.  Requested attributes
							are to be returned as the text value of the corresponding attribute, elements as a copy of the XML element itself including attributes if they exist.
					</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Alias" use="optional" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>Optional caption for the column.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object from which to retrieve element/attributes.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="Distinct" use="required" type="xs:boolean">
            <xs:annotation>
              <xs:documentation>Specifies whether query results should return all rows (false) or just distinct ones (true).  Rows are distinct if
						at least one column differs between them.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RowCount" use="required">
            <xs:annotation>
              <xs:documentation>The maximum number of rows to return.  If All, return all rows, otherwise return the top rows up to the maximum
						row count indicated.
					</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:union>
                <xs:simpleType>
                  <xs:restriction base="xs:positiveInteger" />
                </xs:simpleType>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="All" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:union>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_From">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Join" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_JoinOn" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_LeftElement">
                          <xs:annotation>
                            <xs:documentation>Specifies the left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                        <xs:element name="SIF_RightElement">
                          <xs:annotation>
                            <xs:documentation>Specifies right left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>Type of relational join.</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Inner" />
                      <xs:enumeration value="LeftOuter" />
                      <xs:enumeration value="RightOuter" />
                      <xs:enumeration value="FullOuter" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The name of the object to query.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Where" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ConditionGroup">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Conditions" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Condition" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_Element">
                                <xs:annotation>
                                  <xs:documentation>This is the element/attribute being queried.</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                  <xs:simpleContent>
                                    <xs:extension base="xs:normalizedString">
                                      <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                        <xs:annotation>
                                          <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                                        </xs:annotation>
                                      </xs:attribute>
                                    </xs:extension>
                                  </xs:simpleContent>
                                </xs:complexType>
                              </xs:element>
                              <xs:element name="SIF_Operator">
                                <xs:annotation>
                                  <xs:documentation>The comparison operator for the condition.</xs:documentation>
                                </xs:annotation>
                                <xs:simpleType>
                                  <xs:restriction base="xs:token">
                                    <xs:enumeration value="EQ">
                                      <xs:annotation>
                                        <xs:documentation>Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LT">
                                      <xs:annotation>
                                        <xs:documentation>Less Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GT">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LE">
                                      <xs:annotation>
                                        <xs:documentation>Less Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GE">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="NE">
                                      <xs:annotation>
                                        <xs:documentation>Not Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                  </xs:restriction>
                                </xs:simpleType>
                              </xs:element>
                              <xs:element name="SIF_Value" type="xs:string">
                                <xs:annotation>
                                  <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                      <xs:attribute name="Type" use="required">
                        <xs:annotation>
                          <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                          <xs:restriction base="xs:token">
                            <xs:enumeration value="And" />
                            <xs:enumeration value="Or" />
                            <xs:enumeration value="None" />
                          </xs:restriction>
                        </xs:simpleType>
                      </xs:attribute>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="And" />
                      <xs:enumeration value="Or" />
                      <xs:enumeration value="None" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_OrderBy" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>
							Indicates the element/attribute by which to sort.
						</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Ordering" use="required">
                      <xs:annotation>
                        <xs:documentation>Whether to order the element/attribute in ascending or descending order.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Ascending" />
                          <xs:enumeration value="Descending" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedQuery" type="sif:SIF_ExtendedQueryType" />


  <!--SIF_ExtendedQueryResults-->

  <xs:complexType name="SIF_ExtendedQueryResultsType">
    <xs:annotation>
      <xs:documentation>
              This element provides a wrapper for data returned in response to a SIF_ExtendedQuery.  Used in SIF_Response
              and SIF_ReportObject.
            </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ColumnHeaders">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The element/attribute specified for the column in SIF_ExtendedQuery.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The object in which the element/attribute occurs.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Alias" use="optional" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>The caption for the column, if specified in SIF_ExtendedQuery.
					</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <!--<xs:attribute ref="xsi:type" use="optional" />-->
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Rows">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="R" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="C" maxOccurs="unbounded" type="sif:SelectedContentType">
                    <xs:annotation>
                      <xs:documentation>
              Contains the value of each column specified in SIF_ExtendedQuery/SIF_Select.  
							The order of the columns must correspond to the order of the elements as requested in SIF_ExtendedQuery.
							Note the number of columns may be expanded from the requested columns if * is indicated
							one or more times in the SIF_Select clause.
            </xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedQueryResults" type="sif:SIF_ExtendedQueryResultsType" />


  <!--Infrastructure Messages-->


  <!--SIF_Ack-->

  <xs:complexType name="SIF_AckType">
    <xs:annotation>
      <xs:documentation>This message is used as an acknowledgement to an infrastructure message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_OriginalSourceId" nillable="true" type="xs:token">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId of the infrastructure message for which the SIF_Ack serves as a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_OriginalMsgId" nillable="true" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>The SIF_MsgId of the infrastructure message for which the SIF_Ack message serves as a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Status" />
        <xs:element ref="sif:SIF_Error" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Ack" type="sif:SIF_AckType" />


  <!--SIF_Event-->

  <xs:complexType name="SIF_EventType">
    <xs:annotation>
      <xs:documentation>SIF_Event is used to deliver event objects as defined in SIF.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_ObjectData">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_EventObject">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>Contains the actual object (partial or whole) that is being added, changed or deleted.</xs:documentation>
                </xs:annotation>
                <xs:complexContent>
                  <xs:extension base="sif:SIF_EventObjectType">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>This is the name of the object being added, changed or deleted.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Action" use="required">
                      <xs:annotation>
                        <xs:documentation>This is the action associated with the object that is being conveyed by this SIF_Event.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Add" />
                          <xs:enumeration value="Delete" />
                          <xs:enumeration value="Change" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:complexContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Event" type="sif:SIF_EventType" />


  <!--SIF_Provide-->

  <xs:complexType name="SIF_ProvideType">
    <xs:annotation>
      <xs:documentation>The SIF_Provide message is used for advertising the provision of data objects.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
              <xs:annotation>
                <xs:documentation>Whether or not the Agent supports SIF_ExtendedQuery for this object.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being provided.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Provide" type="sif:SIF_ProvideType" />


  <!--SIF_Provision-->

  <xs:complexType name="SIF_ProvisionType">
    <xs:annotation>
      <xs:documentation>
			Once registered, this message allows an agent to announce to the ZIS the functionality the agent will provide.
			The ZIS compares the functionality to its access control list and either returns a failure or a success.  Upon success,
			the ZIS performs an atomic update of its provide/subscribe database entries for the agent to match the objects listed in this message and atomically
			updates other stored settings for the agent.
			A ZIS must not allow an agent to perform operations that it did not successfully announce.  Agents should be aware that if the access control
			list changes after a successful SIF_Provision, some operations may still be rejected with access control errors.
		</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_ProvideObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>Whether or not SIF_ExtendedQuery is supported with regard to this object.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>
							Optionally specify whether or not SIF_ExtendedQuery may be sent in requests for this object.
						</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>
			Whether or not SIF_ExtendedQuery is supported with regard to this object.
		</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Provision" type="sif:SIF_ProvisionType" />


  <!--SIF_Register-->

  <xs:complexType name="SIF_RegisterType">
    <xs:annotation>
      <xs:documentation>SIF_Register is the message for registering an agent with a ZIS.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>This is the descriptive name of the agent that is registering (i.e. Ramsey Media Center).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
        <xs:annotation>
          <xs:documentation>Specifies the SIF Implementation Specification version(s) defining messages the agent can receive. If the ZIS cannot communicate in this format, it should reject the request.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Specifies the maximum size of a packet to be returned by the ZIS. The ZIS may return packets smaller than, or equal to, the maximum value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Mode">
        <xs:annotation>
          <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Push" />
            <xs:enumeration value="Pull" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
      <xs:element name="SIF_NodeVendor" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The vendor of the SIF agent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_NodeVersion" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The agent version number.  The format of this field is undefined, but it should
						match the format used in the agent's conformance statement, if the agent is SIF Certified.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Application" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Vendor" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Product" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the product that this agent supports.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Version" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>HTTP URL referencing an icon for graphical representation of the application/agent.
Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).  
Agents may optionally follow the more restrictive guidelines at [FAVICON].</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Register" type="sif:SIF_RegisterType" />


  <!--SIF_Request-->

  <xs:complexType name="SIF_RequestType">
    <xs:annotation>
      <xs:documentation>SIF_Request is used to request information in SIF data objects from other SIF nodes.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
        <xs:annotation>
          <xs:documentation>Specifies which SIF Implementation Specification version should be used when returning the response data; wildcards are allowed.
						The responding agent SHOULD return data using the highest version it supports 
						that falls within the specified versions.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Specifies the maximum size of a response packet to be returned to the requester. 
The responder may return packets smaller than, or equal to, the maximum value. 
To guarantee delivery of response packets, requesting agents must not specify a SIF_MaxBufferSize greater than its registered SIF_Register/SIF_MaxBufferSize.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Query" />
        <xs:element ref="sif:SIF_ExtendedQuery" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Request" type="sif:SIF_RequestType" />


  <!--SIF_Response-->

  <xs:complexType name="SIF_ResponseType">
    <xs:annotation>
      <xs:documentation>SIF_Response is used to respond to a SIF_Request message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_RequestMsgId" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>This is the message ID of the SIF_Request message being processed. It provides a unique match between a SIF_Response and a previous SIF_Request. Since the ID of each message from an agent is unique, the receiver of a SIF_Response message will be able to relate the SIF_Response to a SIF_Request that it sent out previously.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_PacketNumber" type="xs:positiveInteger">
        <xs:annotation>
          <xs:documentation>This element represents the index of the SIF_Response message in the sequence of packets that make up a complete response. Its value must be in the range of 1 through n, with n equal to the total number of packets that make up a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MorePackets">
        <xs:annotation>
          <xs:documentation>This element provides an indication as to whether there are more packets besides this one to make up a complete response.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Error" />
        <xs:element name="SIF_ObjectData" type="sif:SIF_ResponseObjectsType">
          <xs:annotation>
            <xs:documentation>The SIF_ObjectData element contains the data objects matching the supplied criteria in the SIF_Request message if the
						SIF_Request contained SIF_Query.  If the SIF_Request contained SIF_ExtendedQuery, include SIF_ExtendedQueryResults.</xs:documentation>
          </xs:annotation>
        </xs:element>
        <xs:element ref="sif:SIF_ExtendedQueryResults" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Response" type="sif:SIF_ResponseType" />


  <!--SIF_Subscribe-->

  <xs:complexType name="SIF_SubscribeType">
    <xs:annotation>
      <xs:documentation>This message is used to subscribe to event objects that are contained in this message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being subscribed to. All valid SIF_Events for this object will be routed to the subscriber.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Subscribe" type="sif:SIF_SubscribeType" />


  <!--SIF_SystemControl-->

  <xs:complexType name="SIF_SystemControlType">
    <xs:annotation>
      <xs:documentation>This message is designed to control the flow of data an agent and ZIS or vice-versa, and to synchronously
retrieve data available from the ZIS.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_SystemControlData">
        <xs:annotation>
          <xs:documentation>This element holds the sub-message being sent.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:choice>
            <xs:element ref="sif:SIF_Ping" />
            <xs:element ref="sif:SIF_Sleep" />
            <xs:element ref="sif:SIF_Wakeup" />
            <xs:element ref="sif:SIF_GetMessage" />
            <xs:element ref="sif:SIF_GetZoneStatus" />
            <xs:element ref="sif:SIF_GetAgentACL" />
          </xs:choice>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_SystemControl" type="sif:SIF_SystemControlType" />


  <!--SIF_Ping-->

  <xs:complexType name="SIF_PingType">
    <xs:annotation>
      <xs:documentation>This sub-message detects if an a Push-Mode Agent or ZIS is ready to receive and process messages.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Ping" type="sif:SIF_PingType" />


  <!--SIF_Sleep-->

  <xs:complexType name="SIF_SleepType">
    <xs:annotation>
      <xs:documentation>This sub-message tells a receiver not to send any more messages to the sender.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Sleep" type="sif:SIF_SleepType" />


  <!--SIF_Wakeup-->

  <xs:complexType name="SIF_WakeupType">
    <xs:annotation>
      <xs:documentation>This message tells a receiver that the sender is able to process messages.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Wakeup" type="sif:SIF_WakeupType" />


  <!--SIF_GetMessage-->

  <xs:complexType name="SIF_GetMessageType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the first available message to the agent, subject to Selective Message Blocking.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetMessage" type="sif:SIF_GetMessageType" />


  <!--SIF_GetZoneStatus-->

  <xs:complexType name="SIF_GetZoneStatusType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the current SIF_ZoneStatus in a SIF_Ack.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetZoneStatus" type="sif:SIF_GetZoneStatusType" />


  <!--SIF_GetAgentACL-->

  <xs:complexType name="SIF_GetAgentACLType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the Agent's ACL permissions in a SIF_Ack.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetAgentACL" type="sif:SIF_GetAgentACLType" />


  <!--SIF_Unprovide-->

  <xs:complexType name="SIF_UnprovideType">
    <xs:annotation>
      <xs:documentation>This message performs the opposite function of SIF_Provide.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being removed.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unprovide" type="sif:SIF_UnprovideType" />


  <!--SIF_Unregister-->

  <xs:complexType name="SIF_UnregisterType">
    <xs:annotation>
      <xs:documentation>This message is used to unregister an agent from a Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unregister" type="sif:SIF_UnregisterType" />


  <!--SIF_Unsubscribe-->

  <xs:complexType name="SIF_UnsubscribeType">
    <xs:annotation>
      <xs:documentation>This message is used to unsubscribe from SIF_Events.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object from which the agent should be unsubscribed. Events pertaining to this object published after successful unsubscription will no longer be queued for delivery to the agent. Events already queued for delivery to the agent prior to unsubscription will be delivered.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unsubscribe" type="sif:SIF_UnsubscribeType" />


  <!--Infrastructure Data Objects-->


  <!--SIF_ZoneStatus-->

  <xs:complexType name="SIF_ZoneStatusType">
    <xs:annotation>
      <xs:documentation>
	The SIF_ZoneStatus object is an object that is implicitly provided by all Zone Integration Servers to provide
	information about the ZIS. Zone Integration Servers MUST provide this object.
</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Name" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The descriptive name for the zone.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the ZIS/Zone.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Vendor" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Name" minOccurs="0" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the company that wrote the ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Product" minOccurs="0" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The product name assigned by the vendor to identify this ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Version" minOccurs="0" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The version of the vendor's product—not necessarily the SIF version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Providers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Provider" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being provided by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that is providing objects. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Subscribers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Subscriber" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being subscribed to by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that is subscribing to the object events. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AddPublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_ChangePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_DeletePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Responders" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Responder" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object for which the agent can respond to requests.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can respond. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Requesters" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Requester" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being requested by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can request an object. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SIFNodes" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SIFNode" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Name" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The descriptive name of the SIF node (i.e. Ramsey Food Services).</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
                    <xs:annotation>
                      <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the application/agent.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVendor" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The vendor of the SIF agent.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVersion" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>
	The agent version number.  The format of this field is undefined, but it should
	match the format used in the agent's conformance statement, if the agent is SIF Certified.
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Application" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Vendor" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="SIF_Product" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The name of the product that this agent supports.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="SIF_Version" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="SIF_SourceId" minOccurs="0" type="xs:token">
                    <xs:annotation>
                      <xs:documentation>The agent or ZIS identifier. This is the same value that the SIF node would place in any SIF_Header that it would create.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Mode" minOccurs="0">
                    <xs:annotation>
                      <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Push" />
                        <xs:enumeration value="Pull" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
                  <xs:element name="SIF_VersionList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Version" minOccurs="0" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
                          <xs:annotation>
                            <xs:documentation>This is the version or versions of the SIF Implementation Specification that define(s) the messages the SIF node can receive. 
For agents, this information was communicated when the SIF node registered with the ZIS.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element ref="sif:SIF_AuthenticationLevel" minOccurs="0" />
                  <xs:element ref="sif:SIF_EncryptionLevel" minOccurs="0" />
                  <xs:element name="SIF_MaxBufferSize" minOccurs="0" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>Specifies that the ZIS should never send packets larger than this value. Query responses from other providers are controlled by the SIF_MaxBufferSize attribute in the SIF_Request message.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Sleeping" minOccurs="0">
                    <xs:annotation>
                      <xs:documentation>This element shows whether the SIF node is ready to process messages.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="No">
                          <xs:annotation>
                            <xs:documentation>The SIF node is ready to process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="Yes">
                          <xs:annotation>
                            <xs:documentation>The SIF node is sleeping and cannot process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
	The type of the node registered with the ZIS.  Note that ZIS is forward-looking and not used currently; all information about this
	Zone/ZIS is contained outside SIF_SIFNodes.
</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Agent" />
                      <xs:enumeration value="ZIS" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedAuthentication" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ProtocolName" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Describes a particular authentication protocol supported.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="X.509" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedProtocols" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Protocol" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedVersions" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Version" minOccurs="0" maxOccurs="unbounded" type="sif:VersionType">
              <xs:annotation>
                <xs:documentation>Lists a specific SIF Implementation Specification version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AdministrationURL" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>Should a ZIS vendor provide an administration interface for the zone via a URL, the ZIS can make the URL available in SIF_ZoneStatus. Agent administrators can use the URL to access zone administration features, should they have permission to do so.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
    <xs:attribute name="ZoneId" use="required" type="xs:token">
      <xs:annotation>
        <xs:documentation>
	The identifier for this Zone.
	It is the same as the SIF_SourceId that the ZIS would place in any SIF_Header that it creates.
</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_ZoneStatus" type="sif:SIF_ZoneStatusType">
    <xs:unique name="SIF_ZoneStatusKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@ZoneId" />
    </xs:unique>
  </xs:element>


  <!--SIF_ZoneStatusInfrastructure-->

  <xs:complexType name="SIF_ZoneStatusInfrastructureType">
    <xs:annotation>
      <xs:documentation>
	The SIF_ZoneStatus object is an object that is implicitly provided by all Zone Integration Servers to provide
	information about the ZIS. Zone Integration Servers MUST provide this object.
</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The descriptive name for the zone.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the ZIS/Zone.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Vendor" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Name" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the company that wrote the ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Product" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The product name assigned by the vendor to identify this ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Version" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The version of the vendor's product—not necessarily the SIF version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Providers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Provider" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being provided by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that is providing objects. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Subscribers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Subscriber" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being subscribed to by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that is subscribing to the object events. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AddPublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_ChangePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_DeletePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Responders" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Responder" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object for which the agent can respond to requests.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can respond. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Requesters" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Requester" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                              <xs:annotation>
                                <xs:documentation>The name of the object being requested by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required" type="xs:token">
                  <xs:annotation>
                    <xs:documentation>The identifier of the SIF node that can request an object. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SIFNodes" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SIFNode" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Name" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The descriptive name of the SIF node (i.e. Ramsey Food Services).</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
                    <xs:annotation>
                      <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the application/agent.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVendor" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The vendor of the SIF agent.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVersion" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>
	The agent version number.  The format of this field is undefined, but it should
	match the format used in the agent's conformance statement, if the agent is SIF Certified.
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Application" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Vendor" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="SIF_Product" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The name of the product that this agent supports.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="SIF_Version" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="SIF_SourceId" type="xs:token">
                    <xs:annotation>
                      <xs:documentation>The agent or ZIS identifier. This is the same value that the SIF node would place in any SIF_Header that it would create.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Mode">
                    <xs:annotation>
                      <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Push" />
                        <xs:enumeration value="Pull" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
                  <xs:element name="SIF_VersionList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
                          <xs:annotation>
                            <xs:documentation>This is the version or versions of the SIF Implementation Specification that define(s) the messages the SIF node can receive. 
For agents, this information was communicated when the SIF node registered with the ZIS.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element ref="sif:SIF_AuthenticationLevel" minOccurs="0" />
                  <xs:element ref="sif:SIF_EncryptionLevel" minOccurs="0" />
                  <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>Specifies that the ZIS should never send packets larger than this value. Query responses from other providers are controlled by the SIF_MaxBufferSize attribute in the SIF_Request message.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Sleeping">
                    <xs:annotation>
                      <xs:documentation>This element shows whether the SIF node is ready to process messages.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="No">
                          <xs:annotation>
                            <xs:documentation>The SIF node is ready to process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="Yes">
                          <xs:annotation>
                            <xs:documentation>The SIF node is sleeping and cannot process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
	The type of the node registered with the ZIS.  Note that ZIS is forward-looking and not used currently; all information about this
	Zone/ZIS is contained outside SIF_SIFNodes.
</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Agent" />
                      <xs:enumeration value="ZIS" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedAuthentication" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ProtocolName" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Describes a particular authentication protocol supported.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="X.509" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedProtocols">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Protocol" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedVersions">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionType">
              <xs:annotation>
                <xs:documentation>Lists a specific SIF Implementation Specification version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AdministrationURL" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>Should a ZIS vendor provide an administration interface for the zone via a URL, the ZIS can make the URL available in SIF_ZoneStatus. Agent administrators can use the URL to access zone administration features, should they have permission to do so.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" />
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
    <xs:attribute name="ZoneId" use="required" type="xs:token">
      <xs:annotation>
        <xs:documentation>
	The identifier for this Zone.
	It is the same as the SIF_SourceId that the ZIS would place in any SIF_Header that it creates.
</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>


  <!--SIF_AgentACL-->

  <xs:complexType name="SIF_AgentACLType">
    <xs:annotation>
      <xs:documentation>This object provides an Agent its access control list (ACL) settings in the Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ProvideAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondAccess" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_AgentACL" type="sif:SIF_AgentACLType" />


  <!--SIF_AgentACLInfrastructure-->

  <xs:complexType name="SIF_AgentACLInfrastructureType">
    <xs:annotation>
      <xs:documentation>This object provides an Agent its access control list (ACL) settings in the Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ProvideAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="xs:NCName">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>


  <!--Data Model Common Elements-->


  <!--SIF_ExtendedElements-->

  <xs:complexType name="SIF_ExtendedElementsType">
    <xs:annotation>
      <xs:documentation>Allows an agent to include data not yet defined within a SIF data object as name/value pairs.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ExtendedElement" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:annotation>
            <xs:documentation>A name/value pair, the name being contained in the Name attribute, the value being the element content.</xs:documentation>
          </xs:annotation>
          <xs:complexContent>
            <xs:extension base="sif:ExtendedContentType">
              <xs:attribute name="Name" use="required" type="xs:normalizedString">
                <xs:annotation>
                  <xs:documentation>The name of the extended element. As it is possible that names for extended elements may collide from agent to agent, it is recommended that the names of extended elements be configurable in an agent, or that agents use URIs for the names of extended elements.</xs:documentation>
                </xs:annotation>
              </xs:attribute>
              <!--<xs:attribute ref="xsi:type" use="optional" />-->
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>
	In a Change event, this flag can be used to indicate an element has been deleted from the parent list container.  At a minimum the key for the list must also be present.
</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedElements" type="sif:SIF_ExtendedElementsType">
    <xs:unique name="SIF_ExtendedElementsKey1">
      <xs:selector xpath="./sif:SIF_ExtendedElement" />
      <xs:field xpath="@Name" />
    </xs:unique>
  </xs:element>


  <!--ElectronicIdList-->

  <xs:complexType name="ElectronicIdListType">
    <xs:annotation>
      <xs:documentation>A list of electronic identifiers associated with an entity.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:ElectronicId" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="ElectronicIdList" type="sif:ElectronicIdListType" />


  <!--ElectronicId-->

  <xs:complexType name="ElectronicIdType">
    <xs:annotation>
      <xs:documentation>
	Common element used to specify entity identifiers that are read by electronic equipment. It is used in objects such
	as StudentPersonal, StaffPersonal, and LibraryPatronStatus.
</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:normalizedString">
        <xs:attribute name="Type" use="required">
          <xs:annotation>
            <xs:documentation>Electronic ID type.</xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:token">
              <xs:enumeration value="Barcode" />
              <xs:enumeration value="Magstripe" />
              <xs:enumeration value="PIN" />
              <xs:enumeration value="RFID" />
            </xs:restriction>
          </xs:simpleType>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>

  <xs:element name="ElectronicId" type="sif:ElectronicIdType" />


  <!--SchoolURL-->

  <xs:simpleType name="SchoolURLType">
    <xs:restriction base="xs:anyURI">
      <xs:annotation>
        <xs:documentation>URL for a school.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolURL" type="sif:SchoolURLType" />


  <!--LocalId-->

  <xs:simpleType name="LocalIdType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>
	This is a common element used to define the locally assigned identifier associated with an entity. It is used in
	StudentPersonal, StaffPersonal, SchoolInfo, and other objects.
</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LocalId" type="sif:LocalIdType" />


  <!--SchoolYear-->

  <xs:simpleType name="SchoolYearType">
    <xs:restriction base="xs:gYear">
      <xs:annotation>
        <xs:documentation>School year for which this information is applicable, expressed as the four-digit year in which the school year ends (e.g., "2004" for the 2003-04 school year).</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolYear" type="sif:SchoolYearType" />


  <!--LastName-->

  <xs:simpleType name="LastNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's last name.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LastName" type="sif:LastNameType" />


  <!--FirstName-->

  <xs:simpleType name="FirstNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's first name.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="FirstName" type="sif:FirstNameType" />


  <!--MiddleName-->

  <xs:simpleType name="MiddleNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's middle name or initial.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="MiddleName" type="sif:MiddleNameType" />


  <!--Address-->

  <xs:complexType name="AddressType">
    <xs:annotation>
      <xs:documentation>This element contains address data, some of which is defined by the BS7666
International Address and Geographic Location Specification. Other
elements are present for support of international addresses. Applications
storing address information in the traditional line format must translate this
information into the appropriate data elements below.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="StartDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date person began using this address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date person stopped using this address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PAON" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Dwelling name, or at least a general description of the location in lieu of having any other information. This is required when no other PAON information is provided.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SAON" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Sub-dwelling name, or other descriptive information in lieu of having any other information.  This is required when no other SAON data is provided.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Street" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The name of the street.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Locality" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The locality name refers to a neighbourhood, suburb, district, village, estate, settlement, or parish that may form part of a town, or stand in its own right within the context of an administrative area.  Where an industrial estate contains streets it is defined as a locality in its own right.  At least one of Locality, Town, or AdministrativeArea must be specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Town" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The city name refers to a city or town that is not an adminstrative area, a suburb of an administrative area that does not form part of another town or a London district. At least one of Locality, Town, or AdministrativeArea must be specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AdministrativeArea" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The administrative area is a geographic area that may be the highest level local administrative area, and may be a county or a unitary authority, an island or island group, or London. At least one of Locality, Town, or AdministrativeArea must be specified</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="County" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Where applicable, the name of the county.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PostTown" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Post Office usually assigns these based on Sorting Office.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PostCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The code allocated by the Post Office (within GBR) to identify a group of postal delivery points.  
Valid Postcode formats are:</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Country" minOccurs="0" nillable="true" type="sif:CountryType">
        <xs:annotation>
          <xs:documentation>Country where physical address is located, if known.  Usually this is going to be 'GBR' but could be outside the UK.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UniquePropertyReferenceNumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:integer">
            <xs:annotation>
              <xs:documentation>The unique Property and Land Reference Number (UPRN) for this address. Numeric: 1 to 12 digits.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="0" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="999999999999" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="UniqueStreetReferenceNumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:integer">
            <xs:annotation>
              <xs:documentation>The unique Property Street Reference Number (USRN) for this address.  Numeric: 1 to 8 digits.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="0" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="99999999" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="LocationContext" minOccurs="0" nillable="true" type="sif:LocationContextType">
        <xs:annotation>
          <xs:documentation>The physical location of an address in terms of Census District, LA Electoral Ward, Parliamentary Constituency, and other defining location-centric characteristics.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GridLocation" minOccurs="0" nillable="true" type="sif:GridLocationType">
        <xs:annotation>
          <xs:documentation>The physical property location coordinates.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>Code that defines the address type.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Current" />
          <xs:enumeration value="Mailing" />
          <xs:enumeration value="Transportation" />
          <xs:enumeration value="Previous" />
          <xs:enumeration value="Other" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="Address" type="sif:AddressType" />


  <!--AddressList-->

  <xs:complexType name="AddressListType">
    <xs:annotation>
      <xs:documentation>A list of Address elements.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Address" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="sif:AddressType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="AddressList" type="sif:AddressListType">
    <xs:unique name="AddressListKey1">
      <xs:selector xpath="./sif:Address" />
      <xs:field xpath="@Type" />
    </xs:unique>
  </xs:element>


  <!--ContactList-->

  <xs:complexType name="ContactListType">
    <xs:annotation>
      <xs:documentation>A list of contact persons associated with a school or LA.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Contact" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="PositionTitle" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The contact person's position title within the school or LA.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Role" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Role played by this contact in the school or LA.  Any descriptive text is allowed here.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="PublishInDirectory" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether or not this contact's information should be published in a directory of school or LA information.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="SIF_RefId" use="required" type="sif:IdRefType">
            <xs:annotation>
              <xs:documentation>The ID (GUID) of the person listed as a contact. Note that this is any person listed as a contact through either a ContactPersonal, WorkforcePersonal, or even a LearnerPersonal record.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="SIF_RefObject" use="required">
            <xs:annotation>
              <xs:documentation>The object type being referred to. </xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="WorkforcePersonal" />
                <xs:enumeration value="ContactPersonal" />
                <xs:enumeration value="LearnerPersonal" />
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="ContactList" type="sif:ContactListType" />


  <!--Country-->

  <xs:simpleType name="CountryType">
    <xs:restriction base="sif:teachernetNationStatesAndCountriesType">
      <xs:annotation>
        <xs:documentation>The 3-character alphabetic country code defined by ISO 3166-1.  Given this code all other code and name information can be obtained directly from the standard.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="Country" type="sif:CountryType" />


  <!--Demographics-->

  <xs:complexType name="DemographicsType">
    <xs:annotation>
      <xs:documentation>Demographic information about a learner, contact, workforce member, etc. This element occurs within objects such as LearnerPersonal, LearnerContact, etc.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="EthnicityList" minOccurs="0" nillable="true" type="sif:EthnicityListType">
        <xs:annotation>
          <xs:documentation>A list of the person's ethnicities by proportion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Gender" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Person's gender.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="U">
              <xs:annotation>
                <xs:documentation>Unknown</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="W">
              <xs:annotation>
                <xs:documentation>Withheld</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="BirthDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>The person's date of birth.  Required for learners.  Optional for others.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="BirthDateVerification" minOccurs="0" nillable="true" type="sif:UKBirthDateVerificationLevelType">
        <xs:annotation>
          <xs:documentation>Means by which the person's birth date was validated.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PlaceOfBirth" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The person's place of birth--like village, town, city etc.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountyOfBirth" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The county in which the person was born.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountryOfBirth" minOccurs="0" nillable="true" type="sif:CountryType">
        <xs:annotation>
          <xs:documentation>The individual's country of birth.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountriesOfCitizenship" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CountryOfCitizenship" minOccurs="0" maxOccurs="unbounded" type="sif:CountryType">
              <xs:annotation>
                <xs:documentation>The country of legal nationality (i.e. the country which issued the individual's passport).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CountriesOfResidency" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CountryOfResidency" minOccurs="0" maxOccurs="unbounded" type="sif:CountryType">
              <xs:annotation>
                <xs:documentation>A person's country of residence.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CountryArrivalDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date the person first arrived in the UK.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EnglishProficiency" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="EALSteps" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Based on QCA Steps. (England)</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="S1">
                    <xs:annotation>
                      <xs:documentation>Step 1</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="S2">
                    <xs:annotation>
                      <xs:documentation>Step 2</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="1T">
                    <xs:annotation>
                      <xs:documentation>Level 1 Threshold</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="1S">
                    <xs:annotation>
                      <xs:documentation>Level 1 Secure</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EALAcquisition" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Based on a differing scale from QCA Steps. (Wales)</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>New to English</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="B">
                    <xs:annotation>
                      <xs:documentation>Early Acquisition</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="C">
                    <xs:annotation>
                      <xs:documentation>Developing Competence</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="D">
                    <xs:annotation>
                      <xs:documentation>Compentent</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="E">
                    <xs:annotation>
                      <xs:documentation>Fluent</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="0">
                    <xs:annotation>
                      <xs:documentation>Not applicable</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="LanguageList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Language" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" minOccurs="0" type="sif:teachernetLanguagesType">
                    <xs:annotation>
                      <xs:documentation>This is the code that specifies the person's language.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Fluent" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>Indicates that the person is fluent in this language.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="TypeList" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Type" minOccurs="0" maxOccurs="unbounded">
                          <xs:annotation>
                            <xs:documentation>A typification of the language. i.e. how is this language used?</xs:documentation>
                          </xs:annotation>
                          <xs:simpleType>
                            <xs:restriction base="xs:token">
                              <xs:enumeration value="C">
                                <xs:annotation>
                                  <xs:documentation>Correspondence Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="F">
                                <xs:annotation>
                                  <xs:documentation>First Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="M">
                                <xs:annotation>
                                  <xs:documentation>Multiple First Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="H">
                                <xs:annotation>
                                  <xs:documentation>Home</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="T">
                                <xs:annotation>
                                  <xs:documentation>Tuition</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="S">
                                <xs:annotation>
                                  <xs:documentation>Second Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="Source" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
                    <xs:annotation>
                      <xs:documentation>Source of data on use of the specified language.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Study" minOccurs="0" nillable="true" type="sif:UKLanguageStudyType">
                    <xs:annotation>
                      <xs:documentation>The level in which the learner is taught this language at school.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="StudyOther" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>Indicates whether the learner studies subjects in this language at school separate from studying the language itself.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MaritalStatus" minOccurs="0" nillable="true" type="sif:UKMaritalStatusType">
        <xs:annotation>
          <xs:documentation>The person's marital status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NonUKSystemImmigrant" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates the learner has recently arrived from a non-English or other common UK language system. (Wales)</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Refugee" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates the person's refugee/asylum seeker status as defined by the United Nations (Article 1 of the 1951 Refugee Convention).</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Religion" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AffiliationCode" minOccurs="0" type="sif:UKReligiousAffiliationType">
              <xs:annotation>
                <xs:documentation>Person's religious faith.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EducationStatus" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether the person is actively attending religious education classes.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>Attends</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="W">
                    <xs:annotation>
                      <xs:documentation>Withdrawn</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="CollectiveWorshipStatus" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether the person is participating in religious collective worship.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>Attends</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="W">
                    <xs:annotation>
                      <xs:documentation>Withdrawn</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="Source" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of person's religious affiliation code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Traveller" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" minOccurs="0" type="sif:UKTravellerGypsyCodeType">
              <xs:annotation>
                <xs:documentation>Code to identify type of traveller/gypsy.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Source" minOccurs="0" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of individual's recorded traveller/gypsy code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="Demographics" type="sif:DemographicsType" />


  <!--Email-->

  <xs:complexType name="EmailType">
    <xs:annotation>
      <xs:documentation>This element represents an e-mail address of one of a number of types.</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:normalizedString">
        <xs:attribute name="Type" use="required">
          <xs:annotation>
            <xs:documentation>This attribute specifies the type of e-mail address.</xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:token">
              <xs:enumeration value="Business" />
              <xs:enumeration value="Personal" />
              <xs:enumeration value="School" />
              <xs:enumeration value="Alternate1" />
              <xs:enumeration value="Alternate2" />
              <xs:enumeration value="Alternate3" />
              <xs:enumeration value="Alternate4" />
            </xs:restriction>
          </xs:simpleType>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>

  <xs:element name="Email" type="sif:EmailType" />


  <!--EmailList-->

  <xs:complexType name="EmailListType">
    <xs:annotation>
      <xs:documentation>A list of e-mail addresses associated with an individual.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Email" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:simpleContent>
            <xs:extension base="sif:EmailType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="EmailList" type="sif:EmailListType">
    <xs:unique name="EmailListKey1">
      <xs:selector xpath="./sif:Email" />
      <xs:field xpath="@Type" />
    </xs:unique>
  </xs:element>


  <!--EstablishmentId-->

  <xs:simpleType name="EstablishmentIdType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The DfES assigned identifier for a school or other educational establishment.  The list of all known Establishment ID's is extensive and available online.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="EstablishmentId" type="sif:EstablishmentIdType" />


  <!--EthnicityList-->

  <xs:complexType name="EthnicityListType">
    <xs:sequence>
      <xs:element name="Ethnicity" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" minOccurs="0" type="sif:teachernetEthnicityCodeType">
              <xs:annotation>
                <xs:documentation>The general ethnic category which reflects the individual's recognition of his or her community or with which the individual most identifies.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Source" minOccurs="0" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of inidividual's recorded ethnic code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="EthnicityList" type="sif:EthnicityListType" />


  <!--GridLocation-->

  <xs:complexType name="GridLocationType">
    <xs:annotation>
      <xs:documentation>This element contains a map location. The GridLocation element is utilised within other objects and elements.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="PropertyEasting" minOccurs="0" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Easting coordinate format.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PropertyNorthing" minOccurs="0" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Northing coordinate for mapping an address. Required when PropertyEasting
is also specified. This is best represented in a 7.1 format.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Latitude" minOccurs="0" nillable="true" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Geographical coordinate.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Longitude" minOccurs="0" nillable="true" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Geographical coordinate. Required when Latitude is also specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="GridLocation" type="sif:GridLocationType" />


  <!--LAId-->

  <xs:simpleType name="LAIdType">
    <xs:restriction base="sif:teachernetLAIdType">
      <xs:annotation>
        <xs:documentation>The 3-digit number assigned to the LA by the DfES.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LAId" type="sif:LAIdType" />


  <!--LAName-->

  <xs:simpleType name="LANameType">
    <xs:restriction base="sif:teachernetLANameType">
      <xs:annotation>
        <xs:documentation>The official name of the LA.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LAName" type="sif:LANameType" />


  <!--LocationContext-->

  <xs:complexType name="LocationContextType">
    <xs:annotation>
      <xs:documentation>The physical location of an address in terms of Census District, LA Electoral Ward, Parliamentary Constituency, and other defining location-centric characteristics.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="CensusDistrict" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>National Population Census Enumeration District.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WardCode" minOccurs="0" type="sif:ONSWardCodeType">
        <xs:annotation>
          <xs:documentation>ONS Ward Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WardName" minOccurs="0" type="sif:ONSWardNameType">
        <xs:annotation>
          <xs:documentation>ONS Ward Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ConstituencyCode" minOccurs="0" nillable="true" type="sif:ONSParliamentaryConstituencyCodeType">
        <xs:annotation>
          <xs:documentation>ONS Parliamentary Constituency Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ConstituencyName" minOccurs="0" nillable="true" type="sif:ONSParliamentaryConstituencyNameType">
        <xs:annotation>
          <xs:documentation>ONS Parliamentary Constituency Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Parish" minOccurs="0" nillable="true" type="sif:ONSParishCouncilNameType">
        <xs:annotation>
          <xs:documentation>ONS Parish Council Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChurchOfEnglandDiocese" minOccurs="0" nillable="true" type="sif:teachernetChurchOfEnglandDioceseType">
        <xs:annotation>
          <xs:documentation>Church of England Diocese Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChurchOfEnglandParish" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Church of England Parish Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="RomanCatholicDiocese" minOccurs="0" nillable="true" type="sif:teachernetRomanCatholicDioceseType">
        <xs:annotation>
          <xs:documentation>Roman Catholic Diocese Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="RomanCatholicParish" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Roman Catholic Parish</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LSCouncilCode" minOccurs="0" nillable="true" type="sif:teachernetLearningAndSkillsCouncilAreaCodeType">
        <xs:annotation>
          <xs:documentation>Learning and Skills Council area code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CatchmentArea" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School catchment area description</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="LocationContext" type="sif:LocationContextType" />


  <!--Name-->

  <xs:complexType name="NameType">
    <xs:annotation>
      <xs:documentation>The Name element defines name information for a person and occurs within the PersonalInformation element.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Title" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A title or prefix associated with the name.  If any of: Mr, Mrs, Ms, Miss, Rev, Fr, Dr, Prof, Hon, Sir, Lord, Lady - these must be as shown, otherwise free text.  Note that title is not applicable to learners.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FamilyName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Full legal family name. That part of the person's name which is used to describe family, clan, tribal group, or marital association.  Note that this element is always required.  However, when associated with a contact it may not be possible to know the family name in which case you should add the available information to the FullName element.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GivenName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Full given name (forename) of the person.  Note that this element is always required.  However, when associated with a contact it may not be possible to know the given name in which case you should add the available information to the FullName element.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="MiddleNames" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>All other given or middle names, each separated with a single space character.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FamilyNameFirst" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indicator used to identify the naming conventions used by some predominantly non-European, ethnic or language groups and related to the display nature of a name.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="PreferredFamilyName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The family name preferred most by the person (as written).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PreferredFamilyNameFirst" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indicator used to identify the naming conventions used by some predominantly non-European, ethnic or language groups and related to the display nature of a name.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="PreferredGivenName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The given name preferred most by the person (as written).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Suffix" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Textual suffix like PHD, JP, BSc.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FullName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A free text field for the complete name for display purposes. If this is associated with a ContactPersonal record and the FamilyName and GivenName are not both specified, then this becomes mandatory.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>Code that specifies what type of name this is.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="B">
            <xs:annotation>
              <xs:documentation>Birth name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="C">
            <xs:annotation>
              <xs:documentation>Current Legal name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="A">
            <xs:annotation>
              <xs:documentation>Alias / Alternative</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="R">
            <xs:annotation>
              <xs:documentation>Name of Record</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="F">
            <xs:annotation>
              <xs:documentation>Former Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="M">
            <xs:annotation>
              <xs:documentation>Married Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="P">
            <xs:annotation>
              <xs:documentation>Professional Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="Name" type="sif:NameType" />


  <!--NCYearGroup-->

  <xs:simpleType name="NCYearGroupType">
    <xs:restriction base="sif:UKNCYearGroupType">
      <xs:annotation>
        <xs:documentation>Code representing a National Curriculum Year Group.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="NCYearGroup" type="sif:NCYearGroupType" />


  <!--NCYearGroupList-->

  <xs:complexType name="NCYearGroupListType">
    <xs:annotation>
      <xs:documentation>This is a common element used to specify a collection of supported National Curriculum Year Groups. It is used in SchoolInfo and assessment-related objects.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:NCYearGroup" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="NCYearGroupList" type="sif:NCYearGroupListType" />


  <!--PersonalInformation-->

  <xs:complexType name="PersonalInformationType">
    <xs:annotation>
      <xs:documentation>This element contains basic personal and demographic information related to a person.  This element is part of all "personal" objects, including LearnerPersonal, WorkforcePersonal, and ContactPersonal.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:Name" minOccurs="0" />
      <xs:element name="OtherNames" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:Name" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Demographics" minOccurs="0" nillable="true" type="sif:DemographicsType">
        <xs:annotation>
          <xs:documentation>This element contains demographic data.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Email" minOccurs="0" nillable="true" type="sif:EmailType">
        <xs:annotation>
          <xs:documentation>The person's preferred e-mail address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherEmailList" minOccurs="0" nillable="true" type="sif:EmailListType">
        <xs:annotation>
          <xs:documentation>The person's other e-mail address(es).</xs:documentation>
        </xs:annotation>
        <xs:unique name="EmailListKey2">
          <xs:selector xpath="./sif:Email" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="Address" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The person's current physical address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherAddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>The person's other address(es).</xs:documentation>
        </xs:annotation>
        <xs:unique name="AddressListKey2">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="PhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The person's preferred phone number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherPhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>The person's other phone number(s).</xs:documentation>
        </xs:annotation>
        <xs:unique name="PhoneNumberListKey1">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="ElectronicIdList" minOccurs="0" nillable="true" type="sif:ElectronicIdListType">
        <xs:annotation>
          <xs:documentation>Electronic identifier(s) associated with this person.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherIdList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="OtherId" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>An "other" identifier associated with this person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>Text that describes the type of this other ID.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="PersonalInformation" type="sif:PersonalInformationType" />


  <!--PhoneNumber-->

  <xs:complexType name="PhoneNumberType">
    <xs:annotation>
      <xs:documentation>This element represents a phone number and occurs within objects such as LearnerPersonal, WorkforcePersonal, etc.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Number" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>Phone number. Validation:  0-9 and a leading '+' (for international calls).</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[+]?[0-9]+" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Extension" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Phone number extension.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ListedStatus" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether or not the phone number is available to the public.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Listed" />
            <xs:enumeration value="Unlisted" />
            <xs:enumeration value="Unknown" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required" type="sif:UKPhoneTypeType">
      <xs:annotation>
        <xs:documentation>Code that specifies the phone number type.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="PhoneNumber" type="sif:PhoneNumberType" />


  <!--PhoneNumberList-->

  <xs:complexType name="PhoneNumberListType">
    <xs:annotation>
      <xs:documentation>Lists phone numbers associated with an entity.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="PhoneNumber" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="sif:PhoneNumberType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="PhoneNumberList" type="sif:PhoneNumberListType">
    <xs:unique name="PhoneNumberListKey2">
      <xs:selector xpath="./sif:PhoneNumber" />
      <xs:field xpath="@Type" />
    </xs:unique>
  </xs:element>


  <!--SchoolURN-->

  <xs:simpleType name="SchoolURNType">
    <xs:restriction base="sif:EstablishmentIdType">
      <xs:annotation>
        <xs:documentation>The alternate DfES assigned identifier for a school or other educational establishment.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolURN" type="sif:SchoolURNType" />


  <!--SubjectAreaList-->

  <xs:complexType name="SubjectAreaListType">
    <xs:annotation>
      <xs:documentation>A list of subject areas.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SubjectArea" minOccurs="0" maxOccurs="unbounded" type="sif:UKGeneralSubjectType">
        <xs:annotation>
          <xs:documentation>Subject matter.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SubjectAreaList" type="sif:SubjectAreaListType" />


  <!--DataModelTaskForce-->


  <!--SIF_Metadata-->

  <xs:complexType name="SIF_MetadataType">
    <xs:annotation>
      <xs:documentation>A commonly defined container for metadata elements defined within SIF.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="TimeElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:TimeElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="LifeCycle" minOccurs="0" nillable="true" type="sif:LifeCycleType" />
      <xs:element name="RightsElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:RightsElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Metadata" type="sif:SIF_MetadataType" />


  <!--TimeElement-->

  <xs:complexType name="TimeElementType">
    <xs:annotation>
      <xs:documentation>A common metadata element designed to contain time data, both self-defined and by type.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Type" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
		This element is designed to contain the time period attached to an object.
		Very long periods (school year, quarter, etc.) and very small periods (second, millisecond, etc.) can be defined.
		This element provides a scoping description of the time metadata enclosed.
	</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Code" minOccurs="0" type="xs:token">
        <xs:annotation>
          <xs:documentation>
							This element provides a place for the application to send structured data (code values, unique identifier, timestamps).
							This code value can, depending upon the use case agreement between agents, be used to qualify the data in the </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Name" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
							Contains a human-readable description of the value in </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Value" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Contains the human-readable value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
      <xs:element name="EndDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
      <xs:element name="SpanGaps" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SpanGap" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Type" minOccurs="0" type="xs:normalizedString" />
                  <xs:element name="Code" minOccurs="0" type="xs:token" />
                  <xs:element name="Name" minOccurs="0" type="xs:normalizedString" />
                  <xs:element name="Value" minOccurs="0" type="xs:normalizedString" />
                  <xs:element name="StartDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
                  <xs:element name="EndDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="IsCurrent" minOccurs="0" type="xs:boolean">
        <xs:annotation>
          <xs:documentation>
							This element allows for the system to tag an object as being explicitly current.
							Although the baseline assumption in SIF is that objects are always current (default value is typically </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="TimeElement" type="sif:TimeElementType" />


  <!--LifeCycle-->

  <xs:complexType name="LifeCycleType">
    <xs:annotation>
      <xs:documentation>
								This common metadata element describes the life cycle of the object it represents, based on the IEEE LOM LifeCycle element [LOM].
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Created" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="DateTime" minOccurs="0" type="xs:dateTime" />
            <xs:element name="Creators" minOccurs="0" nillable="true">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Creator" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Name" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>
							Human-readable name of the data's creator. If the object contains system-generated data,
							the name should identify the creating service or application.
						</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="ID" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>Unique identifier of the creator.  An email address or URI could be used here.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ModificationHistory" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Modified" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="By" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>Identifier of the system or person that modified the data.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="DateTime" minOccurs="0" type="xs:dateTime">
                    <xs:annotation>
                      <xs:documentation>The date/time the modification occurred.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Description" minOccurs="0" nillable="true" type="xs:string">
                    <xs:annotation>
                      <xs:documentation>Human readable description of the data modifications.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="TimeElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:TimeElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="LifeCycle" type="sif:LifeCycleType" />


  <!--RightsElement-->

  <xs:complexType name="RightsElementType">
    <xs:annotation>
      <xs:documentation>
								A common metadata element designed to carry any intellectual property or copyright information, based on the IEEE LOM Rights element [LOM].
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Cost" minOccurs="0" nillable="true" type="xs:boolean" />
      <xs:element name="FeesForUse" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="FeeForUse" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="UseType" minOccurs="0" type="xs:string">
                    <xs:annotation>
                      <xs:documentation>
							A description of the fee structure for this resource.
							Some resources may be licensed differently depending upon their context.
							For example, a content provider might charge one fee structure for resources used in the classroom and a separate fee for those
							resources available to parents from home.
						</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="MeteringType" minOccurs="0" type="xs:token" />
                  <xs:element name="MeteringURL" minOccurs="0" nillable="true" type="xs:anyURI" />
                  <xs:element name="PerUseCharge" minOccurs="0" nillable="true" type="sif:MonetaryAmountType" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CopyrightStatement" minOccurs="0" nillable="true" type="xs:string" />
      <xs:element name="TermsOfUse" minOccurs="0" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="RightsElement" type="sif:RightsElementType" />


  <!--SIFUK-->


  <!--ContactPersonal-->

  <xs:complexType name="ContactPersonalType">
    <xs:annotation>
      <xs:documentation>This object describes any person created as a contact at a school, LEA, or other institution, or associated with a Learner or other Workforce person.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:PersonalInformation" minOccurs="0" />
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey2">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of a person referenced as a contact. Note that this GUID may be the same GUID assigned to a LearnerPersonal and/or WorkforcePersonal object record.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="ContactPersonal" type="sif:ContactPersonalType">
    <xs:unique name="ContactPersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LAInfo-->

  <xs:complexType name="LAInfoType">
    <xs:annotation>
      <xs:documentation>This object contains information about a Local Authority (LA).  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LAId" minOccurs="0" />
      <xs:element ref="sif:LAName" minOccurs="0" />
      <xs:element name="LAFullName" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The LA's full name.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LAURL" minOccurs="0" nillable="true" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>URL for the main LA website.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LAAddress" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The LA's main address information.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>A list of the LA's other addresses, if any.</xs:documentation>
        </xs:annotation>
        <xs:unique name="AddressListKey3">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="LAPhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The LA's primary phone number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>A list of the LA's other phone number(s).</xs:documentation>
        </xs:annotation>
        <xs:unique name="PhoneNumberListKey3">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="LAContactList" minOccurs="0" nillable="true" type="sif:ContactListType">
        <xs:annotation>
          <xs:documentation>A list of contacts within the LA.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey3">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID of the LA whose information this is.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LAInfo" type="sif:LAInfoType">
    <xs:unique name="LAInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerAttendanceSummary-->

  <xs:complexType name="LearnerAttendanceSummaryType">
    <xs:annotation>
      <xs:documentation>This object provides a summary of a learner's daily attendance and membership information for a given school during the time period between the StartDate and EndDate, inclusive. As such, there may be multiple instances of this object for a learner in a school over the course of an academic school year.  Note that sessions are defined by each school and in most cases is two but can be any number in the range 1-10.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" minOccurs="0" />
      <xs:element name="StartDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Starting date of this attendance reporting period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Ending date of this attendance reporting period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ReasonsList" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Reason" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" minOccurs="0" type="sif:UKAttendanceCodesType">
                    <xs:annotation>
                      <xs:documentation>The attendance code.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Type" minOccurs="0">
                    <xs:annotation>
                      <xs:documentation>The attendance code type.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Absent" />
                        <xs:enumeration value="EarlyDeparture" />
                        <xs:enumeration value="Late" />
                        <xs:enumeration value="Partial" />
                        <xs:enumeration value="Present" />
                        <xs:enumeration value="Other" />
                        <xs:enumeration value="NA" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Status" minOccurs="0">
                    <xs:annotation>
                      <xs:documentation>The authorised status of the attendance code.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Authorised" />
                        <xs:enumeration value="Unauthorised" />
                        <xs:enumeration value="Unknown" />
                        <xs:enumeration value="NA" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Total" minOccurs="0" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>The total number of sessions attributed to this reason between StartDate and EndDate for the specified reason.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SessionsAttendedTotal" minOccurs="0" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner attended school when school was in session between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SessionsPossible" minOccurs="0" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was present plus the number of sessions the learner was absent (authorised and unauthorised) when school was in session during the period between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AuthorisedAbsences" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was absent from school with a valid excuse when school was in session between the StartDate and EndDate, inclusive. Note that ts column can be derived from Reason Status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UnauthorisedAbsences" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was absent from school without a valid excuse when school was in session between the StartDate and EndDate, inclusive.  Note that this column can be derived from Reason Status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlternativeTuitionHours" minOccurs="0" nillable="true" type="sif:UKTuitionHoursType">
        <xs:annotation>
          <xs:documentation>Number of Alternative Tuition (whole) hours attended between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey4">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner for whom this attendance information is being reported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the school for which this attendance information is being reported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerAttendanceSummary" type="sif:LearnerAttendanceSummaryType">
    <xs:unique name="LearnerAttendanceSummaryKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@LearnerPersonalRefId" />
      <xs:field xpath="@SchoolInfoRefId" />
      <xs:field xpath="./sif:SchoolYear" />
      <xs:field xpath="./sif:StartDate" />
      <xs:field xpath="./sif:EndDate" />
    </xs:unique>
  </xs:element>


  <!--LearnerContact-->

  <xs:complexType name="LearnerContactType">
    <xs:annotation>
      <xs:documentation>This object contains information related to a contact person for a learner.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Relationship" minOccurs="0" type="sif:UKRelationshipType">
        <xs:annotation>
          <xs:documentation>Defines the relationship of the contact to the learner.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="sif:LocalIdType">
        <xs:annotation>
          <xs:documentation>The locally-assigned identifier for this contact.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ContactFlags" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ParentLegalGuardian" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the individual have parental or legal guardianship responsibility for the learner?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PickupRights" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact have pickup rights?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="LivesWith" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the learner live with this contact?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="AddressDisclosure" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Can address information be disclosed?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EmailCommunication" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact prefer written communcation via email?  Otherwise, postal mail will be used.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EmergencyContact" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Should this contact be notified in case of emergency?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="DisciplinaryContact" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is this person to be contacted in case of disciplinary action?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="HomeDuringDay" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is the contact at home during normal daytime hours?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="MemberOfArmedForces" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is this person a member of the armed forces?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PrimaryCareProvider" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does this person provide daily living or personal assistance to the learner?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="RequiresInterpreter" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact need a translator or interpreter?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="TransferAddress" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Should this contact be transferred with the Learner if and when the Learner moves?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ContactSequence" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Number (1-10) indicating the order in which the person should be contacted.  Note that 2 or more contacts may have the same value.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="1" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ContactSequenceSource" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
        <xs:annotation>
          <xs:documentation>Indicates the person who provided the contact sequence order.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey5">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner whose contact this is.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ContactPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this contact.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerContact" type="sif:LearnerContactType">
    <xs:unique name="LearnerContactKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@LearnerPersonalRefId" />
      <xs:field xpath="@ContactPersonalRefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerExclusion-->

  <xs:complexType name="LearnerExclusionType">
    <xs:annotation>
      <xs:documentation>This object contains information related to a learner being excluded from one or more sessions of school.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Category" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Exclusion category.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="FIXD">
              <xs:annotation>
                <xs:documentation>Fixed</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="PERM">
              <xs:annotation>
                <xs:documentation>Permanent</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="LNCH">
              <xs:annotation>
                <xs:documentation>Lunchtime</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Reason" minOccurs="0" type="sif:UKExclusionReasonType">
        <xs:annotation>
          <xs:documentation>Reason for exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date exclusion takes effect irrespective of any review or appeal. Normally this will not be the same as Date of Leaving (exitDate) and it should be noted that the learner will remain on the schools's roll for a period after this start date.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartSession" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Session to begin exclusion, starting with 1 for the first session of the day. In most cases there are two sessions per day but this is not always the case.  Validation: Number between 1 and 10.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="1" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date exclusion concludes.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ActualSessions" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Total number of sessions for which the exclusion is in effect. For lunchtime exclusions, each lunchtime for which the exclusion applies is one session. For fixed term and permanent exclusions, this is one session during the school day. For exclusions that are followed by reinstatement the actual, not the planned number of sessions should be recorded. (Exclusion sessions are used only to calculate the total allowable in a term or academic year and are not the same as an attendance session.)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Appeal" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is there an appeal against permanent exclusion?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="AppealDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date for appeal against permanent exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AppealResult" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>The result of the appeal against permanent exclusion.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="R">
              <xs:annotation>
                <xs:documentation>Reinstatement</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="E">
              <xs:annotation>
                <xs:documentation>Exclusion stands</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="O">
              <xs:annotation>
                <xs:documentation>Reinstatement would be appropriate but not in best interest of learner given other circumstances</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ReinstatementDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date learner was reinstated, if appropriate.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HeadTeacherNotificationDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date head teacher notified parents, school LA, and home LA (if different) of exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GovernorMeetingDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of Governors' meeting with respect to exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HearingNoticeOfAppealDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of exclusion hearing/expiration of notice of appeal.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey6">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this exclusion.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the excluded learner.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerExclusion" type="sif:LearnerExclusionType">
    <xs:unique name="LearnerExclusionKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerGroupEnrolment-->

  <xs:complexType name="LearnerGroupEnrolmentType">
    <xs:annotation>
      <xs:documentation>This object contains information about a learner's enrolment in a course (teaching group) or other (class, homeroom or registration) group.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" minOccurs="0" />
      <xs:element name="EntryDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date from when this enrolment is valid.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date on which the learner's enrolment ends or has ended.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey7">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this LearnerGroupEnrolment entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner to whom the enrolment information applies.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolGroupRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the group in which this learner is enroled.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerGroupEnrolment" type="sif:LearnerGroupEnrolmentType">
    <xs:unique name="LearnerGroupEnrolmentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerPersonal-->

  <xs:complexType name="LearnerPersonalType">
    <xs:annotation>
      <xs:documentation>This object contains personal information related to a learner. As most
learners are enroled in the school or establishment publishing this object,
basic enrolment information is also provided to aid in overall SIF
performance.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="sif:LocalIdType">
        <xs:annotation>
          <xs:documentation>The locally-assigned identifier for this learner. This can be the internal pupil number or any other number as determined by the publishing agent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AlertMsg" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>This is an alert message that is associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required">
                      <xs:annotation>
                        <xs:documentation>This attribute specifies what type of alert message this is.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Legal" />
                          <xs:enumeration value="Discipline" />
                          <xs:enumeration value="Educational" />
                          <xs:enumeration value="Other" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalAlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="MedicalAlertMsg" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Medical alert associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Severity" use="required">
                      <xs:annotation>
                        <xs:documentation>The level of severity of this medical alert.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Low" />
                          <xs:enumeration value="Moderate" />
                          <xs:enumeration value="High" />
                          <xs:enumeration value="Severe" />
                          <xs:enumeration value="Unknown" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:PersonalInformation" minOccurs="0" />
      <xs:element name="UIPI" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Unique Internal Pupil Number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UPN" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Unique Pupil Number (UPN) allocated to each learner in maintained schools in England and Wales. It is an identifier for use in the educational context during a child's school career only and subject to Data Protection restrictions.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UPNAllocationDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date UPN was allocated by the LA.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FormerUPNList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="UPN" minOccurs="0" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>A former UPN assigned to the pupil whilst at a school (eg temporary UPN was allocated when the pupil was first admitted to the school but subsequently replaced by the permanent UPN being retrieved from a previous school).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ULN" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>Unique Learner Number (ULN), a 10-digit number where zero is not allowed as the leading digit.</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[1-9][0-9]{9}" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="FamilyStructure" minOccurs="0" nillable="true" type="sif:UKFamilyStructureType">
        <xs:annotation>
          <xs:documentation>Indicates type of family structure learner is living in.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="InCare" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Current" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Indicates if the learner is "looked after" currently.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                  <xs:enumeration value="Unknown" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="Type" minOccurs="0" nillable="true" type="sif:UKInCareTypeType">
              <xs:annotation>
                <xs:documentation>Type of care the learner is in (eg fostering, children's home).</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element ref="sif:LAId" minOccurs="0" />
            <xs:element name="AtCurrentSchool" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has ever been in care while at this school.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PersonalEducationPlan" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner in care has a personal education plan.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ConnexionsAgreement" minOccurs="0" nillable="true" type="sif:UKConnexionsAgreementType">
        <xs:annotation>
          <xs:documentation>Indicates if parents have consented to allow learner data to be shared with Connexions (Middle, Secondary and Special Schools only).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChildProtectionRegister" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="IsRegistered" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has been registered on the Child Protection Register.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                  <xs:enumeration value="Unknown" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
              <xs:annotation>
                <xs:documentation>The LA in which the learner was registered for protection.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SiblingRegistered" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has a sibling that is also on the Child Protection Register.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="GiftedTalented" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner qualifies for Gifted/Talented status.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="HomeLA" minOccurs="0" nillable="true" type="sif:LAIdType">
        <xs:annotation>
          <xs:documentation>The LA in which the learner lives but not necessarily the one in which they attend school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LearnerIdentity" minOccurs="0" nillable="true" type="sif:UKLearnerIdentityType">
        <xs:annotation>
          <xs:documentation>Classification of national identity. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Pregnant" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner is pregnant.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SiblingList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Sibling" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LearnerPersonalRefId" minOccurs="0" type="sif:IdRefType">
                    <xs:annotation>
                      <xs:documentation>The ID (GUID) of the LearnerPersonal record for this sibling.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="UIPI" minOccurs="0" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The Unique Internal Pupil Number for a sibling of this learner.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="UniformAllowance" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner is paid a uniform allowance.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="CurrentSchoolEnrolment" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:LAId" minOccurs="0" />
            <xs:element ref="sif:EstablishmentId" minOccurs="0" />
            <xs:element ref="sif:NCYearGroup" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="LearnerSchoolEnrolmentRefId" use="required" type="sif:IdRefType">
            <xs:annotation>
              <xs:documentation>The ID (GUID) of the LearnerSchoolEnrolment record associated with this learner that is also designated as the current or current main enrolment.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="PreviousEstablishmentList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="PreviousEstablishment" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>Establishment Number for this school</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentName" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>School's name as indicated on the Annual Schools Census.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The 3-digit LA number assigned by DfES.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EntryDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The date the learner entered this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The date the learner exited this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ExitType" minOccurs="0" nillable="true" type="sif:UKLeavingReasonType">
                    <xs:annotation>
                      <xs:documentation>Code indicating the type of exit from this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LastSchool" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>An indication of whether the described school or establishment was the last establishment the learner attended. Note that it is possible that more than one establishment can be marked as LastSchool when a learner is enroled in more than one school simultaneously.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey8">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner. Note that this GUID may be the same one assigned to this person when this person is either a contact (ContactPersonal) or a member of the workforce (WorkforcePersonal).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerPersonal" type="sif:LearnerPersonalType">
    <xs:unique name="LearnerPersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerSchoolEnrolment-->

  <xs:complexType name="LearnerSchoolEnrolmentType">
    <xs:annotation>
      <xs:documentation>This object defines information related to a learner's enrolment within a
particular school or establishment.The current status on an enrolment is
based on EntryDate and ExitDate. Future enrolments are supported where
EntryDate is in the future. ExitDate may also be specified as a future
occurance.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="EntryDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>The date from when this enrolment is valid.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NCYearGroupActual" minOccurs="0" type="sif:NCYearGroupType">
        <xs:annotation>
          <xs:documentation>The year group in which the learner is taught for the majority of their time, regardless of their chronological age.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ClassType" minOccurs="0" nillable="true" type="sif:UKClassTypeType">
        <xs:annotation>
          <xs:documentation>Indicates if the learner is in a nursery class. Must be set to 'O'  if age on August 31 is &gt;= 6.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>The ending date of this enrolment. If the learner has exited before the end of the school year, ExitDate must have a value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitType" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" minOccurs="0" type="sif:UKLeavingReasonType">
              <xs:annotation>
                <xs:documentation>Code indicating the type of exit for this enrolment.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Destination" minOccurs="0" nillable="true">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" minOccurs="0" type="sif:UKLeavingDestinationType">
                    <xs:annotation>
                      <xs:documentation>Code indicating the destination type.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The LA number for destination school or college.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES number for destination school or college.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Name" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>Name of institution/employer of learner's destination.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Sessions" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Number of learner sessions (half days) per week.  A maximum of 10 is possible per week.</xs:documentation>
            </xs:annotation>
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="FTPTStatus" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indication of whether the learner is enroled only part time.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Boarder" minOccurs="0" nillable="true" type="sif:UKBoarderTypeType">
        <xs:annotation>
          <xs:documentation>Indicates whether the learner is a boarder at the school or not.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlternativeTuition" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Category" minOccurs="0" type="sif:UKTuitionCategoryType">
              <xs:annotation>
                <xs:documentation>Reason for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartDate" minOccurs="0" type="xs:date">
              <xs:annotation>
                <xs:documentation>Beginning date for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
              <xs:annotation>
                <xs:documentation>End date for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="TotalHours" minOccurs="0" nillable="true" type="xs:unsignedInt">
              <xs:annotation>
                <xs:documentation>The total number of hours provided for with the tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ProvisionType" minOccurs="0" type="sif:UKAlternativeTuitionProvisionTypeType">
              <xs:annotation>
                <xs:documentation>Alternative tuition provision type.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey9">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies a particular enrolment.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner to whom this information is linked.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the school to which this enrolment applies.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MembershipType" use="required" type="sif:UKLearnerEnrolmentStatusType">
      <xs:annotation>
        <xs:documentation>The type of this enrolment as it relates to the school identified by SchoolInfoRefId.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerSchoolEnrolment" type="sif:LearnerSchoolEnrolmentType">
    <xs:unique name="LearnerSchoolEnrolmentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--LearnerSpecialNeeds-->

  <xs:complexType name="LearnerSpecialNeedsType">
    <xs:annotation>
      <xs:documentation>This object contains information regarding a special education need (SEN)
for a learner when provisioned within a school or establishment. A new
object exists for each provision. The current status of any provision can be
determined by querying StartDate and EndDate. Both dates are allowed to
be in the future. The publisher of this object must support queries on these
dates.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="UnitMember" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is this learner with special education needs (SEN) in a mainstream school a member of an SEN Unit (sometimes called special class)?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ResourcedProvisionMember" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is this learner with special education needs (SEN) in a mainstream school a member of a resourced provision?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="NextReviewDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of learner's next SEN review.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Provision" minOccurs="0" type="sif:UKSENProvisionType">
        <xs:annotation>
          <xs:documentation>A provision (stage) accommodated for this learner within this school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date when learner was placed on the current SEN stage. Date may be in the
future.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date when learner finished this SEN stage.  Assumed to be current unless a date in the past is specified here.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SENTypeList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SENType" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>The code for a Special Educational Need (type) for this learner. </xs:documentation>
                </xs:annotation>
                <xs:simpleContent>
                  <xs:extension base="sif:UKSENTypeTypeOrEmpty">
                    <xs:attribute name="Ranking" use="required" type="xs:unsignedInt">
                      <xs:annotation>
                        <xs:documentation>A value (starting at 1) indicating the order of significance of special educational need in relation to other SEN types listed here.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="AdviceAndAssessmentLevel" minOccurs="0" nillable="true" type="sif:UKAdviceAndAssessmentWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Advice and Assessment. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GroupingAndSupportLevel" minOccurs="0" nillable="true" type="sif:UKGroupingAndSupportWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Grouping and Support. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SpecialisedResourcesLevel" minOccurs="0" nillable="true" type="sif:UKSpecialisedResourcesWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Specialised Resources. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TeachingMethodsLevel" minOccurs="0" nillable="true" type="sif:UKCurriculumAndTeachingMethodsWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Curriculum and Teaching Methods. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EmbeddedBasicSkillsSupport" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Provision of Embedded Basic Skills support beyond the attainment of formal qualification.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:UKBasicSkillsSupportWalesType" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="LiteracyLevelStart" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of literacy at start of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LiteracyLevelEnd" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of literacy achieved by the end of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NumeracyLevelStart" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of numeracy at start of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NumeracyLevelEnd" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of numeracy achieved by the end of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NationalCurriculumList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="NationalCurriculum" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Modification" minOccurs="0">
                    <xs:annotation>
                      <xs:documentation>How is the National Curriculum used for this learner?</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="M">
                          <xs:annotation>
                            <xs:documentation>Modified</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="N">
                          <xs:annotation>
                            <xs:documentation>Disapplied</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Subject" minOccurs="0" type="sif:UKGeneralSubjectType">
                    <xs:annotation>
                      <xs:documentation>National Curriculum subject(s) for which modification or disapplication applies.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalFlag" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is there medical information on this Learner?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ParamedicalSupport" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Type of therapy needed by Learner.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="P">
              <xs:annotation>
                <xs:documentation>Physiotherapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="S">
              <xs:annotation>
                <xs:documentation>Speech Therapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="O">
              <xs:annotation>
                <xs:documentation>Occupational Therapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="MedicalNotes" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Summary of learner's medical condition.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey10">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies a learner special need (provision).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner with special educational needs.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies the school provisioned to work with the learner's special needs.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerSpecialNeeds" type="sif:LearnerSpecialNeedsType" />


  <!--PersonPicture-->

  <xs:complexType name="PersonPictureType">
    <xs:annotation>
      <xs:documentation>This object either contains or references a person's picture.  Compare with US/Canada objects: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_RefObjectList" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_RefObject" minOccurs="0">
              <xs:annotation>
                <xs:documentation>The name of a "personal" object that can be requested for this person using the specified PersonRefId.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="ContactPersonal" />
                  <xs:enumeration value="LearnerPersonal" />
                  <xs:enumeration value="WorkforcePersonal" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SchoolYear" minOccurs="0" />
      <xs:element name="PictureSource" minOccurs="0">
        <xs:complexType>
          <xs:annotation>
            <xs:documentation>This element defines the picture. If the Type attribute is URL, this is the location of the picture in [JPEG] format; if Type is JPEG, this is the [JPEG] image data encoded using the Base64 Content-Transfer-Encoding defined in Section 6.8 of [RFC 2045].</xs:documentation>
          </xs:annotation>
          <xs:simpleContent>
            <xs:extension base="sif:URIOrBinaryTypeOrEmpty">
              <xs:attribute name="Type" use="required">
                <xs:annotation>
                  <xs:documentation>The way the picture is specified (URL or JPEG).</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="URL" />
                    <xs:enumeration value="JPEG" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
      <xs:element name="OKToPublish" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Can the picture be published?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey11">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="PersonRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>This is the GUID of the person whose picture this is.  It is important to note that using the same GUID a person may have a LearnerPersonal record, a WorkforcePersonal record, and a ContactPersonal record all at the same time.  This same picture is applicable regardless of the associated object type(s).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="PersonPicture" type="sif:PersonPictureType">
    <xs:unique name="PersonPictureKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@PersonRefId" />
    </xs:unique>
  </xs:element>


  <!--SchoolGroupType-->

  <xs:complexType name="SchoolGroupTypeType">
    <xs:annotation>
      <xs:documentation>This object describes a high-level course or class grouping organised and/or taught within a school or establishment.  Note that not all courses are based upon a subject area.  One such course is "Class Group" which is the same as a homeroom or registration group.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Code" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The school defined local code for the group (or course).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Title" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Title associated with this group.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Textual description for the group.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SubjectAreaList" minOccurs="0" nillable="true" type="sif:SubjectAreaListType">
        <xs:annotation>
          <xs:documentation>Subject matter areas taught as part of the course, if any.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey12">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID that uniquely identifies a school course.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that references the school or establishment where the course is offered or the registration group exists.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolYear" use="required" type="sif:SchoolYearType">
      <xs:annotation>
        <xs:documentation>School year for which the information is applicable, expressed as the four-digit year in which the school year ends (e.g. 2007 for the 2006/07 school year). Where a group membership is valid across multiple years, the current year at the time of publication will be used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="GroupType" use="required">
      <xs:annotation>
        <xs:documentation>The group type.  Teaching groups are used to teach subjects while other groups are organised for various other reasons.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="G">
            <xs:annotation>
              <xs:documentation>Generic Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="R">
            <xs:annotation>
              <xs:documentation>Registration/Class Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="T">
            <xs:annotation>
              <xs:documentation>Teaching (course) Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolGroupType" type="sif:SchoolGroupTypeType">
    <xs:unique name="SchoolGroupTypeKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--SchoolGroup-->

  <xs:complexType name="SchoolGroupType">
    <xs:annotation>
      <xs:documentation>This object describes a specific group and includes resource and time tabling information.  All groups are based upon a SchoolGroupType record. However, there are courses which are not based upon any subject area and likewise may not have any teachers or other staff assigned.  Compare with US/Canada object:  </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LocalId" minOccurs="0" />
      <xs:element name="GroupName" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The name associated with this group for display purposes.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A textual description.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ParentSchoolGroupRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The parent group associated with this group, if any.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ScheduleInfoList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ScheduleInfo" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="TeacherList" minOccurs="0" nillable="true">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Teacher" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="Role" minOccurs="0" nillable="true" type="sif:UKGroupRoleType">
                                <xs:annotation>
                                  <xs:documentation>The role associated with this person in the context of this group.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                            <xs:attribute name="WorkforcePersonalRefId" use="required" type="sif:IdRefType">
                              <xs:annotation>
                                <xs:documentation>The ID (GUID) of a teacher, staff member, or other employee participating in a non-learner capacity within this group.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey13">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this group entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolGroupTypeRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that identifies a course upon which this group is centered. Note that this element is mandatory when GroupType is associated with a course (teaching group).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolYear" use="required" type="sif:SchoolYearType">
      <xs:annotation>
        <xs:documentation>School year for which the group is applicable, expressed as the four-digit year in which the school year ends (e.g. 2007 for the 2006/07 school year). Where a group membership is valid across multiple years, the current year at the time of publication will be used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolGroup" type="sif:SchoolGroupType">
    <xs:unique name="SchoolGroupKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--SchoolInfo-->

  <xs:complexType name="SchoolInfoType">
    <xs:annotation>
      <xs:documentation>This object contains basic information about a school or other educational establishment.  Compare with US/Canada object with the same name.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>An ID assigned by the publishing agent for this school or establishment. This may be set to any value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:EstablishmentId" minOccurs="0" />
      <xs:element ref="sif:LAId" minOccurs="0" />
      <xs:element name="SchoolName" minOccurs="0" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School's name as indicated on the Annual Schools Census.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolFullName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School's full name as stated in the Instrument of Government.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="URN" minOccurs="0" nillable="true" type="sif:SchoolURNType">
        <xs:annotation>
          <xs:documentation>School Unique Reference Number.  This number is an alternate to the Establishment Number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolURL" minOccurs="0" nillable="true" type="sif:SchoolURLType">
        <xs:annotation>
          <xs:documentation>URL for the school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolAddress" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The school's published address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>Other addresses associated with the school.</xs:documentation>
        </xs:annotation>
        <xs:unique name="AddressListKey4">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="SchoolPhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The main phone number for this school/establishment.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherPhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>A list of the school's phone numbers.</xs:documentation>
        </xs:annotation>
        <xs:unique name="PhoneNumberListKey4">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:unique>
      </xs:element>
      <xs:element name="SchoolEmail" minOccurs="0" nillable="true" type="sif:EmailType">
        <xs:annotation>
          <xs:documentation>School's email address for general correspondence.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolContactList" minOccurs="0" nillable="true" type="sif:ContactListType">
        <xs:annotation>
          <xs:documentation>A list of contacts at the school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HeadTeacherInfo" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ContactName" minOccurs="0" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the head Teacher.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ContactTitle" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The official title of the Head Teacher.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Phase" minOccurs="0" nillable="true" type="sif:UKPhaseTypeType">
        <xs:annotation>
          <xs:documentation>The high level code indicating the level of the educational institution.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolType" minOccurs="0" nillable="true" type="sif:UKSchoolTypeType">
        <xs:annotation>
          <xs:documentation>An indication of the level of the educational institution.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Governance" minOccurs="0" nillable="true" type="sif:UKGovernanceTypeType">
        <xs:annotation>
          <xs:documentation>Governance afforded to this school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Intake" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Intake type.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="COMP">
              <xs:annotation>
                <xs:documentation>Comprehensive</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL1">
              <xs:annotation>
                <xs:documentation>Selective (Grammar)</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL2">
              <xs:annotation>
                <xs:documentation>Secondary Modern</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL3">
              <xs:annotation>
                <xs:documentation>Selective (Technical)</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL4">
              <xs:annotation>
                <xs:documentation>Religious School</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="NCYearGroupList" minOccurs="0" nillable="true" type="sif:NCYearGroupListType">
        <xs:annotation>
          <xs:documentation>Collection of National Curriculum Year Groups offered in this school or establishment.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GenderOfEntry" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Gender of learners allowed for entry to school.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="C">
              <xs:annotation>
                <xs:documentation>Coeducational</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="GenderSixthForm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Gender of learners allowed for entry to Sixth Form.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="C">
              <xs:annotation>
                <xs:documentation>Coeducational</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="blank = HighestNCYear less than 12" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Boarders" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school supports boarders or not.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SessionsPerDay" minOccurs="0" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions in the usual school day (usually two).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Nursery" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school maintains a nursery class or not. Must be NO if Phase is set to MP, MS or SY. Must be YES if Phase is set to NY or EY.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Special" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school has a special class/unit or not.  Must be Yes if Phase = SP.  Any details will be stored in the associated SchoolInfoDetail object.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="OperationalStatus" minOccurs="0" nillable="true" type="sif:UKOperationalStatusType">
        <xs:annotation>
          <xs:documentation>Operational condition of a school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey14">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID that identifies this school.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LAInfoRefId" use="optional" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) assigned to the LA of which this school is a member.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolInfo" type="sif:SchoolInfoType">
    <xs:unique name="SchoolInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--TermInfo-->

  <xs:complexType name="TermInfoType">
    <xs:annotation>
      <xs:documentation>This object provides information about a term; i.e., a reportable period of time.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" minOccurs="0" />
      <xs:element name="StartDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Starting date of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" type="xs:date">
        <xs:annotation>
          <xs:documentation>Ending date of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Text-based description of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TermCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Locally-defined code. Use 'AUT', 'SPR', or 'SUM' for a 3 term year. Otherwise specify the term number within the year.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TermsPerYear" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>The number of terms in a given year (3-6).</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="3" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="6" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="MarkingTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent a marking period?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SchedulingTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent a scheduling term?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="AttendanceTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent an attendance term?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey15">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this TermInfo entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that identifies the school where the term is used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="TermInfo" type="sif:TermInfoType">
    <xs:unique name="TermInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--WorkforcePersonal-->

  <xs:complexType name="WorkforcePersonalType">
    <xs:annotation>
      <xs:documentation>This object contains key personal information relating to a workforce member, who might be a teacher or other employee of the school or LA.  Compare with US/Canada objects: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LocalId" minOccurs="0" />
      <xs:element name="AlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AlertMsg" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>This is an alert message that is associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required">
                      <xs:annotation>
                        <xs:documentation>This attribute specifies what type of alert message this is.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Legal" />
                          <xs:enumeration value="Discipline" />
                          <xs:enumeration value="Educational" />
                          <xs:enumeration value="Other" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalAlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="MedicalAlertMsg" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Medical alert associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Severity" use="required">
                      <xs:annotation>
                        <xs:documentation>The level of severity of this medical alert.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Low" />
                          <xs:enumeration value="Moderate" />
                          <xs:enumeration value="High" />
                          <xs:enumeration value="Severe" />
                          <xs:enumeration value="Unknown" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:PersonalInformation" minOccurs="0" />
      <xs:element name="TeacherNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The DfES Teacher Reference number. For those who have one this is a unique number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NINumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>National Insurance Number. Do not specify temporary numbers. Format:  AAnnnnnnA</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[A-Z]{2}[0-9]{6}[A-Z]" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="CurrentAssignmentList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CurrentAssignment" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES assigned number for the LA in which the workforce member is working, if associated.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES assigned number for the school or establishment in which the workforce member is working.  Note that the school may not necessarily be in the same LA listed as the LAId.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Posts" minOccurs="0" nillable="true">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Post" minOccurs="0" maxOccurs="unbounded" type="sif:UKAssignmentPostType">
                          <xs:annotation>
                            <xs:documentation>The post assigned to the workforce member in the context of the school or LA.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey16">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the workforce member.  Note that the same GUID may be assigned to this person when they are also a learner (via LearnerPersonal) and/or a contact (via ContactPersonal).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="WorkforcePersonal" type="sif:WorkforcePersonalType">
    <xs:unique name="WorkforcePersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:unique>
  </xs:element>


  <!--InfrastructureWorkingGroup-->


  <!--SIF_LogEntry-->

  <xs:complexType name="SIF_LogEntryType">
    <xs:annotation>
      <xs:documentation>
								This object captures an occurrence within a SIF node (ZIS or agent)—error, warning or information—for storage in an optionally provided zone log.
								SIF_LogEntry Adds are reported and are used to post new log entries to the provider of the log.
								Of course, subscribing agents may also filter incoming Adds as part of their own logging mechanism.
								Any Change or Delete SIF_Events should be ignored at the agent level, but should be routed by the
								ZIS (though this should not be necessary). Use of the log is optional and voluntary, except where noted as mandatory in this specification.
								Nodes may post as much or as little log data as required with the expectation that if there is a provider of SIF_LogEntry that the logged entries be available
								for a provider-defined amount of time subject to provider-defined restrictions on the quantity of data
								logged by any given node.
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_LogEntryHeader" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Header" minOccurs="0" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_OriginalHeader" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Header" minOccurs="0" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Category" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>A SIF_LogEntry category. May be omitted for informational-type postings, where typically a textual description will suffice.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="1">
              <xs:annotation>
                <xs:documentation>Success</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="2">
              <xs:annotation>
                <xs:documentation>Data Issues with Success Result</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="3">
              <xs:annotation>
                <xs:documentation>Data Issues with Failure Result</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="4">
              <xs:annotation>
                <xs:documentation>Error Conditions</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Code" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>A SIF_LogEntry code with regard to SIF_Category above. May be omitted for informational-type postings, where typically a textual description will suffice. If a SIF_Code is included, SIF_Category must be included as well.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntrySuccessCategoryType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryDataIssuesWithSuccessResultType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryDataIssuesWithFailureResultType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryAgentErrorConditionType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryZISErrorConditionType" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_ApplicationCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
								An error code specific to the application posting the entry.
								Can be used by vendors to query log entries for errors specific to their applications.
								If a SIF_ApplicationCode is included, SIF_Category must be included as well;
								i.e., application-specific error codes should fall within one of the defined log entry categories.
							</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Desc" minOccurs="0" type="xs:string">
        <xs:annotation>
          <xs:documentation>A textual description of the error.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_ExtendedDesc" minOccurs="0" nillable="true" type="xs:string">
        <xs:annotation>
          <xs:documentation>Any extended error description.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_LogObjects" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_LogObject" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>Any SIF data objects to which this log entry may apply.</xs:documentation>
                </xs:annotation>
                <xs:complexContent>
                  <xs:extension base="sif:SIF_LogEntryExtendedContentType">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the SIF object referenced (e.g. StudentPersonal).</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:complexContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:unique name="SIF_ExtendedElementsKey17">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:unique>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Source" use="required">
      <xs:annotation>
        <xs:documentation>The SIF node that logged this entry.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Agent" />
          <xs:enumeration value="ZIS" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="LogLevel" use="required">
      <xs:annotation>
        <xs:documentation>The level of the log entry herein described.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Info" />
          <xs:enumeration value="Warning" />
          <xs:enumeration value="Error" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_LogEntry" type="sif:SIF_LogEntryType" />

  <xs:simpleType name="InfrastructureStatusCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0" />
      <xs:enumeration value="1" />
      <xs:enumeration value="2" />
      <xs:enumeration value="3" />
      <xs:enumeration value="7" />
      <xs:enumeration value="8" />
      <xs:enumeration value="9" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureErrorCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>Unknown (This should NEVER be used if possible)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>XML Validation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Encryption</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Authentication</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Access and Permissions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Registration</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Subscription</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Request and Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Event Reporting and Processing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Transport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>System (OS, Database, Vendor localized, etc.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Generic Message Handling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>SMB Handling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureXMLValidationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message is not well-formed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Generic validation error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Invalid value for element/attribute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Missing mandatory element/attribute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureEncryptionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureAuthenticationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Generic authentication error (with signature)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Missing sender's certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Invalid certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Sender's certificate is not trusted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Expired certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Invalid signature</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Invalid encryption algorithm (only accepts MD4)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Missing public key of the receiver (when decrypting message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Missing receiver's private key (when decrypting message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureAccessAndPermissionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>No permission to register</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>No permission to provide this object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>No permission to subscribe to this SIF_Event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>No permission to request this object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>No permission to respond to this object request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>No permission to administer policies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>SIF_SourceId is not registered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Add</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Change</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Delete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureRegistrationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId is invalid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Requested transport protocol is unsupported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Requested SIF_Version(s) not supported.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Requested SIF_MaxBufferSize is too small</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>ZIS requires a secure transport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Agent is registered for push mode (returned when a push-mode agent sends a SIF_GetMessage).</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureProvisionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Object already has a provider (SIF_Provide message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSubscriptionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureRequestAndResponseErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>No provider</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Responder does not support requested SIF_Version</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Responder does not support requested SIF_MaxBufferSize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Unsupported query in request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Invalid SIF_RequestMsgId specified in SIF_Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>SIF_Response is larger than requested SIF_MaxBufferSize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>SIF_PacketNumber is invalid in SIF_Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>SIF_Response does not match any SIF_Version from SIF_Request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14">
        <xs:annotation>
          <xs:documentation>SIF_DestinationId does not match SIF_SourceId from SIF_Request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15">
        <xs:annotation>
          <xs:documentation>No support for SIF_ExtendedQuery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16">
        <xs:annotation>
          <xs:documentation>SIF_RequestMsgId deleted from cache due to timeout</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17">
        <xs:annotation>
          <xs:documentation>SIF_RequestMsgId deleted from cache by administrator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureEventReportingAndProcessingErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureTransportErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Requested protocol is not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Secure channel requested and no secure path exists</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Unable to establish connection</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSystemErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureGenericMessageHandlingErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Version not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Context not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Protocol error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>No such message (as identified by SIF_OriginalMsgId)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Multiple contexts not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSMBErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>SMB can only be invoked during a SIF_Event acknowledgement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Final SIF_Ack expected from Push-Mode Agent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Incorrect SIF_MsgId in final SIF_Ack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntrySuccessCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Success</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryDataIssuesWithSuccessResultType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Data was changed to complete request successfully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Data was added to complete request successfully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryDataIssuesWithFailureResultType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Insufficient information in message</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Cannot process change due to business rule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Related information unavailable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryAgentErrorConditionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>An exception has occurred in the agent (generic error)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryZISErrorConditionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>An exception has occurred in the ZIS (generic error)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to buffer size limitations</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to minimum security requirements</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to destination agent not supporting SIF_Version</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to SIF_Response validation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAbsenceCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="MAT">
        <xs:annotation>
          <xs:documentation>Maternity /Paternity leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other paid authorised absence, e.g. compassionate leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PUB">
        <xs:annotation>
          <xs:documentation>Paid absence for public duties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEC">
        <xs:annotation>
          <xs:documentation>Secondment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIC">
        <xs:annotation>
          <xs:documentation>Sickness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRN">
        <xs:annotation>
          <xs:documentation>Training</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNA">
        <xs:annotation>
          <xs:documentation>Unauthorised absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNP">
        <xs:annotation>
          <xs:documentation>Unpaid, authorised absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdditionalPaymentTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Inner London Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOT">
        <xs:annotation>
          <xs:documentation>Outer London Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LFR">
        <xs:annotation>
          <xs:documentation>London Fringe Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAL">
        <xs:annotation>
          <xs:documentation>Management Allowances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TLR">
        <xs:annotation>
          <xs:documentation>Teaching and Learning Responsibility Payments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RAR">
        <xs:annotation>
          <xs:documentation>Recruitment and Retention </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>SEN Allowances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACT">
        <xs:annotation>
          <xs:documentation>Acting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RES">
        <xs:annotation>
          <xs:documentation>Residential duties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INS">
        <xs:annotation>
          <xs:documentation>INSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOS">
        <xs:annotation>
          <xs:documentation>Out of School Activities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCP">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (Pay)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCC">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (One Off Payment)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCA">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEL">
        <xs:annotation>
          <xs:documentation>Welcome Back</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTC">
        <xs:annotation>
          <xs:documentation>GTC subscription </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UQT">
        <xs:annotation>
          <xs:documentation>Unqualified Teachers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsAptitudeCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Physical Education or Sport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Performing Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Visual Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ML">
        <xs:annotation>
          <xs:documentation>Modern Foreign Languages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DT">
        <xs:annotation>
          <xs:documentation>Design Technology or IT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsOfferStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>No offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Withdraw Previous Offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Discard (higher preference offered)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsNotifyMethodType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Online</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>Email</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>SMS/Text message</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="L">
        <xs:annotation>
          <xs:documentation>Letter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsPrebandCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1A">
        <xs:annotation>
          <xs:documentation>Band 1A (Highest)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1B">
        <xs:annotation>
          <xs:documentation>Band 1B</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2A">
        <xs:annotation>
          <xs:documentation>Band 2A</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2B">
        <xs:annotation>
          <xs:documentation>Band 2B</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Band 3 (Lowest)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Band Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsReasonCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="DIST">
        <xs:annotation>
          <xs:documentation>Distance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIBL">
        <xs:annotation>
          <xs:documentation>Sibling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEDL">
        <xs:annotation>
          <xs:documentation>Medical</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RLGN">
        <xs:annotation>
          <xs:documentation>Religion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTCH">
        <xs:annotation>
          <xs:documentation>Catchment Area</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FEED">
        <xs:annotation>
          <xs:documentation>Feeder School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRAV">
        <xs:annotation>
          <xs:documentation>Travelling Time</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSEX">
        <xs:annotation>
          <xs:documentation>Single Sex School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COED">
        <xs:annotation>
          <xs:documentation>Coeducational School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="APTD">
        <xs:annotation>
          <xs:documentation>Aptitude</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOCL">
        <xs:annotation>
          <xs:documentation>Social Reasons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHR">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKADTFileStatusTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Prime">
        <xs:annotation>
          <xs:documentation>These files contain completely new data and should be considered the complete application for the student.  </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Change">
        <xs:annotation>
          <xs:documentation>A 'Change' value means that all data previously supplied (apart from the Application Reference) are to be deleted and only the data in the change file to be used for pupils in the file.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Withdrawal">
        <xs:annotation>
          <xs:documentation>These files advise the  LA or Own Admission Authority school that an application should be noted as withdrawn for a pupil who moves away from the LA during the admissions process.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Suspended">
        <xs:annotation>
          <xs:documentation>This is a precautionary status, as it is not known when it might be used.  These records should go to suspense, as it is not possible to know what to do with them if the condition cannot be determined.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Late">
        <xs:annotation>
          <xs:documentation>The records in this file type are considered as late by the Home LAs criteria.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdviceAndAssessmentWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AA1">
        <xs:annotation>
          <xs:documentation>School based assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA2">
        <xs:annotation>
          <xs:documentation>External advice/assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA3">
        <xs:annotation>
          <xs:documentation>Specialised assessments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA4">
        <xs:annotation>
          <xs:documentation>Multu-agency assessments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAlternativeTuitionProvisionTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="HSP">
        <xs:annotation>
          <xs:documentation>Hospital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>Independent School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NMS">
        <xs:annotation>
          <xs:documentation>Non-maintained Special School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Not a School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssignmentPostType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ADMC">
        <xs:annotation>
          <xs:documentation>Administrator / Clerk </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADVT">
        <xs:annotation>
          <xs:documentation>Advisory teacher (unattached)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARTD">
        <xs:annotation>
          <xs:documentation>Art &amp;/or Design Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASHT">
        <xs:annotation>
          <xs:documentation>Assistant head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATTN">
        <xs:annotation>
          <xs:documentation>Attendance Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BILN">
        <xs:annotation>
          <xs:documentation>Bilingual Support Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BURS">
        <xs:annotation>
          <xs:documentation>Bursar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUSS">
        <xs:annotation>
          <xs:documentation>Business Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTKR">
        <xs:annotation>
          <xs:documentation>Caretaker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCHR">
        <xs:annotation>
          <xs:documentation>Classroom Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLNR">
        <xs:annotation>
          <xs:documentation>Cleaner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CXPA">
        <xs:annotation>
          <xs:documentation>Connexions Personal Adviser</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COOK">
        <xs:annotation>
          <xs:documentation>Cook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COVR">
        <xs:annotation>
          <xs:documentation>Cover Supervisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CART">
        <xs:annotation>
          <xs:documentation>Creative Arts Specialist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DATA">
        <xs:annotation>
          <xs:documentation>Data Manager / Analyst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DPHT">
        <xs:annotation>
          <xs:documentation>Deputy head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDWO">
        <xs:annotation>
          <xs:documentation>Education Welfare Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EPSY">
        <xs:annotation>
          <xs:documentation>Educational Psychologist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESCT">
        <xs:annotation>
          <xs:documentation>Escort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INVG">
        <xs:annotation>
          <xs:documentation>Exam Invigilator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXAM">
        <xs:annotation>
          <xs:documentation>Examinations Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FINC">
        <xs:annotation>
          <xs:documentation>Finance Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDTR">
        <xs:annotation>
          <xs:documentation>Head teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDYR">
        <xs:annotation>
          <xs:documentation>Head of Year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDPT">
        <xs:annotation>
          <xs:documentation>Head of Department</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDHO">
        <xs:annotation>
          <xs:documentation>Head of House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HLTA">
        <xs:annotation>
          <xs:documentation>Higher Level Teaching Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HSLO">
        <xs:annotation>
          <xs:documentation>Home-School Liaison Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICTM">
        <xs:annotation>
          <xs:documentation>ICT Network Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICTT">
        <xs:annotation>
          <xs:documentation>ICT Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INST">
        <xs:annotation>
          <xs:documentation>Instructor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LANG">
        <xs:annotation>
          <xs:documentation>Language support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPLY">
        <xs:annotation>
          <xs:documentation>LEA Supply Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LRNM">
        <xs:annotation>
          <xs:documentation>Learning Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LMEN">
        <xs:annotation>
          <xs:documentation>Learning Mentor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSEN">
        <xs:annotation>
          <xs:documentation>Learning Support Assistant (for SEN pupils)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIBR">
        <xs:annotation>
          <xs:documentation>Librarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LITR">
        <xs:annotation>
          <xs:documentation>Literacy Worker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MIDA">
        <xs:annotation>
          <xs:documentation>Midday Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MIDS">
        <xs:annotation>
          <xs:documentation>Midday Supervisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MINS">
        <xs:annotation>
          <xs:documentation>Minority ethnic support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MISC">
        <xs:annotation>
          <xs:documentation>Miscellaneous Teaching Service for the LEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUSS">
        <xs:annotation>
          <xs:documentation>Music Specialist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUSC">
        <xs:annotation>
          <xs:documentation>Music tuition (include peripatetic)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NURS">
        <xs:annotation>
          <xs:documentation>Nurse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NNSE">
        <xs:annotation>
          <xs:documentation>Nursery Nurse </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMAN">
        <xs:annotation>
          <xs:documentation>Office Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CATR">
        <xs:annotation>
          <xs:documentation>Other Catering Staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OICT">
        <xs:annotation>
          <xs:documentation>Other ICT Support Staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PERI">
        <xs:annotation>
          <xs:documentation>Peripatetic Teacher (unattached)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAHT">
        <xs:annotation>
          <xs:documentation>Personal Assistant to Headteacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREM">
        <xs:annotation>
          <xs:documentation>Premises Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RECP">
        <xs:annotation>
          <xs:documentation>Receptionist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RPRG">
        <xs:annotation>
          <xs:documentation>Reprographics Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSEC">
        <xs:annotation>
          <xs:documentation>School Secretary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STCH">
        <xs:annotation>
          <xs:documentation>Science Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SENC">
        <xs:annotation>
          <xs:documentation>SEN co-ordinator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TNON">
        <xs:annotation>
          <xs:documentation>Teacher: engaged for non-school education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TPRU">
        <xs:annotation>
          <xs:documentation>Teacher: engaged to teach in a Pupil Referral Unit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMIS">
        <xs:annotation>
          <xs:documentation>Teacher: engaged to teach in miscellaneous establishments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TASS">
        <xs:annotation>
          <xs:documentation>Teaching Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTCH">
        <xs:annotation>
          <xs:documentation>Technology Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THER">
        <xs:annotation>
          <xs:documentation>Therapist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRAV">
        <xs:annotation>
          <xs:documentation>Traveller support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VOLN">
        <xs:annotation>
          <xs:documentation>Volunteer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WELF">
        <xs:annotation>
          <xs:documentation>Welfare Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAttendanceCodesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="/">
        <xs:annotation>
          <xs:documentation>Present (AM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="\">
        <xs:annotation>
          <xs:documentation>Present (PM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil being educated off site (not dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Authorised absence as pupil is absent due to other authorised circumstances, including Public
performances and employment (licensed under regulations), family bereavement, special occasions (in
limited circumstances), absences when Traveller children are attending another school.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is dual registered (i.e. attending another establishment)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>Authorised absence as pupil is excluded, with no alternative provision made</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Authorised absence due to agreed extended family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="G">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil is on a family holiday, not agreed, or is taking days in excess of an agreed family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="H">
        <xs:annotation>
          <xs:documentation>Authorised absence due to agreed family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="I">
        <xs:annotation>
          <xs:documentation>Authorised absence due to Illness (NOT medical or dental etc. appointments)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="J">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending interview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="K">
        <xs:annotation>
          <xs:documentation>Unknown - used as a placeholder in lieu of valid data. Assumed to be authorised and present until otherwise
proven or changed.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="L">
        <xs:annotation>
          <xs:documentation>Late (before registers closed) marked as present</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Authorised absence due to medical/ dental appointments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil missed sessions for a reason that has not yet been provided</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil missed sessions for an unauthorised absence not covered by any other code/description</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending an approved sporting activity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="R">
        <xs:annotation>
          <xs:documentation>Authorised absence due to religious observance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Authorised absence due to study leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>Authorised absence due to traveller absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil arrived after registers closed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="V">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is away on an educational visit or trip </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending work experience</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="X">
        <xs:annotation>
          <xs:documentation>Non-compulsory school age absence - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y">
        <xs:annotation>
          <xs:documentation>Enforced closure - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Z">
        <xs:annotation>
          <xs:documentation>Pupil not yet on roll - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="#">
        <xs:annotation>
          <xs:documentation>School closed to pupils - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBasicSkillsSupportWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="00">
        <xs:annotation>
          <xs:documentation>Does not require support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="01">
        <xs:annotation>
          <xs:documentation>Specialist literacy support only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="02">
        <xs:annotation>
          <xs:documentation>Specialist numeracy support only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="03">
        <xs:annotation>
          <xs:documentation>specialist literacy and numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="04">
        <xs:annotation>
          <xs:documentation>other literacy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05">
        <xs:annotation>
          <xs:documentation>other numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="06">
        <xs:annotation>
          <xs:documentation>other literacy and numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="07">
        <xs:annotation>
          <xs:documentation>Needs support but has not/will not receive support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="90">
        <xs:annotation>
          <xs:documentation>Basic Skills needs not assessed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBirthDateVerificationLevelType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>Not Verified</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>One or more of the following Secondary certificates: Certificate of Baptism; Marriage Certificate; National Health Service Medical Card; Child's Certificate of Vaccination; Child's Health Record Card; A certificate of Service in HM Forces or other employment under the Crown or in the Mercantile Marine; A certificate of membership of a Trade Union Friendly Society or any cards or papers relating to membership of an Approved Society or Unemployment Insurance Apprenticeship indentures; Early certificate or testimonial from employer; Aliens registration card, certificate of naturalisation, Home Office travel document or a passport; Life insurance policy; Certificate of confirmation; School certificate or report; A birthday book or old family record; Family Bible containing a record of birth.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>One of the following:  Full certificate; Birth certificate short form; Certificate of registry showing given names and family name; GRO copy; Adoption Order issued by the High Court, County Court or Juvenile Court; Certificate of adoption issued by the GRO; Foreign birth certificate issued by registration authority of the foreign country.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBoarderTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>Boarder, nights per week not specified</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Boarder, six nights or less a week</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Boarder, seven nights a week</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Not a boarder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKClassTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Nursery Class (England), Nursery Class (not a Special Class/Unit) (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Not a Nursery Class (England), Other Class (not a Special Class/Unit) (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Nursery Special Class/Unit (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKConnexionsAgreementType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Yes">
        <xs:annotation>
          <xs:documentation>Permission has been given by the parent or guardian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="No">
        <xs:annotation>
          <xs:documentation>Parent or guardian has refused permission</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNS">
        <xs:annotation>
          <xs:documentation>Unsought - School has not yet sent out Fair Processing Notices (Data cannot be shared with Connexions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNR">
        <xs:annotation>
          <xs:documentation>Sought, No Reply - School has sent out Fair Processing Notices, but has received no reply from parent or guardian (Data can be shared with Connexions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKCurriculumAndTeachingMethodsWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="CT1">
        <xs:annotation>
          <xs:documentation>Some targeted differentiation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT2">
        <xs:annotation>
          <xs:documentation>Significant and targeted differentiation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT3">
        <xs:annotation>
          <xs:documentation>Some curriculum modifications</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT4">
        <xs:annotation>
          <xs:documentation>Significant curriculum modifications</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKExclusionReasonType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BU">
        <xs:annotation>
          <xs:documentation>Bullying</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DA">
        <xs:annotation>
          <xs:documentation>Drug and alcohol related</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DB">
        <xs:annotation>
          <xs:documentation>Persistent disruptive behaviour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DM">
        <xs:annotation>
          <xs:documentation>Damage to property</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DR">
        <xs:annotation>
          <xs:documentation>Defiance of rules/ discipline policy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Physical assault against an adult</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PP">
        <xs:annotation>
          <xs:documentation>Physical assault against a pupil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PW">
        <xs:annotation>
          <xs:documentation>Possession / use of weapon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RA">
        <xs:annotation>
          <xs:documentation>Racial harrassment/abuse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SM">
        <xs:annotation>
          <xs:documentation>Sexual misconduct/abuse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TB">
        <xs:annotation>
          <xs:documentation>Threatening or dangerous behaviour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TH">
        <xs:annotation>
          <xs:documentation>Theft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Verbal abuse/threatening behaviour against an adult</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VP">
        <xs:annotation>
          <xs:documentation>Verbal abuse/threatening behaviour against a pupil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKFamilyStructureType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Single Parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>2 Adults</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Foster Parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>In Residental Care</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGeneralSubjectType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AAD">
        <xs:annotation>
          <xs:documentation>Applied Art &amp; Design</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABS">
        <xs:annotation>
          <xs:documentation>Applied Business Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACC">
        <xs:annotation>
          <xs:documentation>Accountancy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AHS">
        <xs:annotation>
          <xs:documentation>Combined Arts / Humanities / Social studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIT">
        <xs:annotation>
          <xs:documentation>Applied ICT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARA">
        <xs:annotation>
          <xs:documentation>Arabic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ART">
        <xs:annotation>
          <xs:documentation>Art &amp; Design / Art</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASC">
        <xs:annotation>
          <xs:documentation>Applied Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEN">
        <xs:annotation>
          <xs:documentation>Bengali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIO">
        <xs:annotation>
          <xs:documentation>Biology / Botany / Zoology / Ecology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAB">
        <xs:annotation>
          <xs:documentation>Commercial &amp; Business Studies/Education/Management</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Careers Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CBE">
        <xs:annotation>
          <xs:documentation>Construction and Built Environment / Building</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDT">
        <xs:annotation>
          <xs:documentation>Craft, Design &amp; Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHD">
        <xs:annotation>
          <xs:documentation>Child Development</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHM">
        <xs:annotation>
          <xs:documentation>Chemistry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CIT">
        <xs:annotation>
          <xs:documentation>Citizenship</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLS">
        <xs:annotation>
          <xs:documentation>Classics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COM">
        <xs:annotation>
          <xs:documentation>Communication Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COS">
        <xs:annotation>
          <xs:documentation>Community Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSB">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Biology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSC">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Chemistry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSP">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Physics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Cymraeg/Welsh (as First Language)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAN">
        <xs:annotation>
          <xs:documentation>Danish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAT">
        <xs:annotation>
          <xs:documentation>Design and Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNC">
        <xs:annotation>
          <xs:documentation>Dance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DRA">
        <xs:annotation>
          <xs:documentation>Drama</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTE">
        <xs:annotation>
          <xs:documentation>Design and Technology - Electronics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTF">
        <xs:annotation>
          <xs:documentation>Design and Technology - Food Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTG">
        <xs:annotation>
          <xs:documentation>Design and Technology - Graphics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTR">
        <xs:annotation>
          <xs:documentation>Design and Technology - Resistant Materials</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTS">
        <xs:annotation>
          <xs:documentation>Design and Technology - Systems &amp; Control</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTT">
        <xs:annotation>
          <xs:documentation>Design and Technology - Textiles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUT">
        <xs:annotation>
          <xs:documentation>Dutch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ECO">
        <xs:annotation>
          <xs:documentation>Economics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDU">
        <xs:annotation>
          <xs:documentation>Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENR">
        <xs:annotation>
          <xs:documentation>Engineering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENV">
        <xs:annotation>
          <xs:documentation>Environmental Science/Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EUR">
        <xs:annotation>
          <xs:documentation>European Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finnish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRE">
        <xs:annotation>
          <xs:documentation>French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEN">
        <xs:annotation>
          <xs:documentation>General Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Geography</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GER">
        <xs:annotation>
          <xs:documentation>German</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLG">
        <xs:annotation>
          <xs:documentation>Geology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GPL">
        <xs:annotation>
          <xs:documentation>Government &amp; Politics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRC">
        <xs:annotation>
          <xs:documentation>Greek (Classical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRE">
        <xs:annotation>
          <xs:documentation>Greek (Modern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUJ">
        <xs:annotation>
          <xs:documentation>Gujerati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAC">
        <xs:annotation>
          <xs:documentation>Hospitality and Catering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HBB">
        <xs:annotation>
          <xs:documentation>Hebrew (Biblical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEB">
        <xs:annotation>
          <xs:documentation>Hebrew (Modern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIN">
        <xs:annotation>
          <xs:documentation>Hindi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIS">
        <xs:annotation>
          <xs:documentation>History</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HSC">
        <xs:annotation>
          <xs:documentation>Health and Social Care</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUM">
        <xs:annotation>
          <xs:documentation>Humanities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICT">
        <xs:annotation>
          <xs:documentation>Information &amp; Communication Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>Industrial Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAP">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSK">
        <xs:annotation>
          <xs:documentation>Key Skills (Only if &lt;KeyStage&gt; = 4)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAE">
        <xs:annotation>
          <xs:documentation>Land &amp; Environment / Agriculture</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAT">
        <xs:annotation>
          <xs:documentation>Latin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAW">
        <xs:annotation>
          <xs:documentation>Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIF">
        <xs:annotation>
          <xs:documentation>Life Skills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTT">
        <xs:annotation>
          <xs:documentation>Leisure, Travel and Tourism</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAT">
        <xs:annotation>
          <xs:documentation>Mathematics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MED">
        <xs:annotation>
          <xs:documentation>Media Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MFL">
        <xs:annotation>
          <xs:documentation>Modern Foreign Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNF">
        <xs:annotation>
          <xs:documentation>Manufacturing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUS">
        <xs:annotation>
          <xs:documentation>Music</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OBC">
        <xs:annotation>
          <xs:documentation>Other Business / Commercial Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OCL">
        <xs:annotation>
          <xs:documentation>Other Classical Studies/Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OHU">
        <xs:annotation>
          <xs:documentation>Other Humanities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLA">
        <xs:annotation>
          <xs:documentation>Other Language Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMA">
        <xs:annotation>
          <xs:documentation>Other Mathematical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPH">
        <xs:annotation>
          <xs:documentation>Other Physical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPR">
        <xs:annotation>
          <xs:documentation>Other Aesthetic / Practical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OSC">
        <xs:annotation>
          <xs:documentation>Other Sciences</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OSS">
        <xs:annotation>
          <xs:documentation>Other Social Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTE">
        <xs:annotation>
          <xs:documentation>Other Technological Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other (not otherwise specified)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OVO">
        <xs:annotation>
          <xs:documentation>Other Vocational Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAN">
        <xs:annotation>
          <xs:documentation>Panjabi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PED">
        <xs:annotation>
          <xs:documentation>Physical Education / Sports</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PER">
        <xs:annotation>
          <xs:documentation>Performing Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHL">
        <xs:annotation>
          <xs:documentation>Philosophy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHY">
        <xs:annotation>
          <xs:documentation>Physics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRI">
        <xs:annotation>
          <xs:documentation>Primary Curriculum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSH">
        <xs:annotation>
          <xs:documentation>Personal Social &amp; Health Education (PSHE)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSY">
        <xs:annotation>
          <xs:documentation>Psychology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REL">
        <xs:annotation>
          <xs:documentation>Religious Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWD">
        <xs:annotation>
          <xs:documentation>Retail, Warehousing &amp; Distribution</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCI">
        <xs:annotation>
          <xs:documentation>Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>Special Educational Needs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOC">
        <xs:annotation>
          <xs:documentation>Sociology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPA">
        <xs:annotation>
          <xs:documentation>Spanish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSS">
        <xs:annotation>
          <xs:documentation>Social Studies/Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>Statistics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Swedish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TDG">
        <xs:annotation>
          <xs:documentation>Technical Drawing/Graphics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UFA">
        <xs:annotation>
          <xs:documentation>Under-5 Activities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URD">
        <xs:annotation>
          <xs:documentation>Urdu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VNW">
        <xs:annotation>
          <xs:documentation>Any new GCSE in a vocational subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEL">
        <xs:annotation>
          <xs:documentation>Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGovernanceTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="CO">
        <xs:annotation>
          <xs:documentation>Community</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Voluntary Aided</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VC">
        <xs:annotation>
          <xs:documentation>Voluntary Controlled</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FO">
        <xs:annotation>
          <xs:documentation>Foundation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IN">
        <xs:annotation>
          <xs:documentation>Independent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NM">
        <xs:annotation>
          <xs:documentation>Non-maintained (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT">
        <xs:annotation>
          <xs:documentation>City Technology College (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CA">
        <xs:annotation>
          <xs:documentation>Academies (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGroupRoleType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="HDT">
        <xs:annotation>
          <xs:documentation>Head teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DHT">
        <xs:annotation>
          <xs:documentation>Deputy head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AHT">
        <xs:annotation>
          <xs:documentation>Assistant head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCH">
        <xs:annotation>
          <xs:documentation>Classroom teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AST">
        <xs:annotation>
          <xs:documentation>Advanced Skills Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXL">
        <xs:annotation>
          <xs:documentation>Excellent Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUP">
        <xs:annotation>
          <xs:documentation>Support staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AVT">
        <xs:annotation>
          <xs:documentation>Advisory Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EPS">
        <xs:annotation>
          <xs:documentation>Educational Psychologist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADM">
        <xs:annotation>
          <xs:documentation>Administrator (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GOV">
        <xs:annotation>
          <xs:documentation>Governor (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACD">
        <xs:annotation>
          <xs:documentation>Academic (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VOL">
        <xs:annotation>
          <xs:documentation>Volunteer (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGroupingAndSupportWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="GS1">
        <xs:annotation>
          <xs:documentation>Occassional additional support in class</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS2">
        <xs:annotation>
          <xs:documentation>Targeted and sustained additional support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS3">
        <xs:annotation>
          <xs:documentation>Small group class provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS4">
        <xs:annotation>
          <xs:documentation>Mostly small group provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKInCareTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="FT">
        <xs:annotation>
          <xs:documentation>Fostered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CH">
        <xs:annotation>
          <xs:documentation>Children's Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WP">
        <xs:annotation>
          <xs:documentation>With parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Placed for adoption</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLanguageStudyType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Taught as a first language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Taught as a second language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Taught other language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Not taught language at all</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Disapplied from curriculum by SEN statement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLearnerEnrolmentStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Current (single registration at this school)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="G">
        <xs:annotation>
          <xs:documentation>Guest (pupil not registered at this school but attending some lessons or sessions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Current Main (dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Current Subsidiary (dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Previous</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLearnerIdentityType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="WAL">
        <xs:annotation>
          <xs:documentation>Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCO">
        <xs:annotation>
          <xs:documentation>Scottish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRE">
        <xs:annotation>
          <xs:documentation>Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRI">
        <xs:annotation>
          <xs:documentation>British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REF">
        <xs:annotation>
          <xs:documentation>Refused</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOS">
        <xs:annotation>
          <xs:documentation>Not Supplied</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLeavingDestinationType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="MP">
        <xs:annotation>
          <xs:documentation>Maintained primary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IP">
        <xs:annotation>
          <xs:documentation>Independent primary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Maintained secondary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IS">
        <xs:annotation>
          <xs:documentation>Independent secondary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SC">
        <xs:annotation>
          <xs:documentation>6th Form College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FE">
        <xs:annotation>
          <xs:documentation>General FE, tertiary and specialist colleges </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HE">
        <xs:annotation>
          <xs:documentation>Higher education institutions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WL">
        <xs:annotation>
          <xs:documentation>Work based Learning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EM">
        <xs:annotation>
          <xs:documentation>Employment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NK">
        <xs:annotation>
          <xs:documentation>Other/Not Known</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLeavingReasonType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="DD">
        <xs:annotation>
          <xs:documentation>Deceased</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EO">
        <xs:annotation>
          <xs:documentation>Education other than at school/college</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EM">
        <xs:annotation>
          <xs:documentation>Emigration</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FE">
        <xs:annotation>
          <xs:documentation>Further Education (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FM">
        <xs:annotation>
          <xs:documentation>First to Middle Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HE">
        <xs:annotation>
          <xs:documentation>Higher Education (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NI">
        <xs:annotation>
          <xs:documentation>Nursery to Infant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IJ">
        <xs:annotation>
          <xs:documentation>Infant to Junior/Primary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JS">
        <xs:annotation>
          <xs:documentation>Junior/Primary to Secondary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Middle to Secondary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OS">
        <xs:annotation>
          <xs:documentation>Other School Sixth Form (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other/Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Permanent Exclusion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ST">
        <xs:annotation>
          <xs:documentation>School Transfer (Mid-Year)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TR">
        <xs:annotation>
          <xs:documentation>Training (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UN">
        <xs:annotation>
          <xs:documentation>Unemployment (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WK">
        <xs:annotation>
          <xs:documentation>Employment (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MD">
        <xs:annotation>
          <xs:documentation>Military deployment of parent(s)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKMaritalStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Single</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Married</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Divorced</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Widowed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Not disclosed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Separated</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKNCYearGroupType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N1">
        <xs:annotation>
          <xs:documentation>Nursery first year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N2">
        <xs:annotation>
          <xs:documentation>Nursery second year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="R">
        <xs:annotation>
          <xs:documentation>Reception</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Year 1</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Year 2</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Year 3</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Year 4</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Year 5</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Year 6</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Year 7</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Year 8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Year 9</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Year 10</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>Year 11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Year 12</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>Year 13</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14">
        <xs:annotation>
          <xs:documentation>Year 14</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Mixed Year Class - available for School Census Class Information</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="X">
        <xs:annotation>
          <xs:documentation>National Curriculum not followed  available only for Special Schools where pupils are not following a particular NC Year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKOperationalStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Open</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Closed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Open, but proposed to close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Proposed to open</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>De-registered as EY Setting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKPhaseTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="NY">
        <xs:annotation>
          <xs:documentation>Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PY">
        <xs:annotation>
          <xs:documentation>Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MP">
        <xs:annotation>
          <xs:documentation>Middle (Deemed Primary)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Middle (Deemed Secondary)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SY">
        <xs:annotation>
          <xs:documentation>Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SP">
        <xs:annotation>
          <xs:documentation>Special</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EY">
        <xs:annotation>
          <xs:documentation>Early Years Setting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PR">
        <xs:annotation>
          <xs:documentation>Pupil Referral Unit (PRU)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XX">
        <xs:annotation>
          <xs:documentation>Multiple phases (not Middle, Special, or PRU)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NO">
        <xs:annotation>
          <xs:documentation>No Establishment (for children not on any establishment roll)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKPhoneTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Fax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="H">
        <xs:annotation>
          <xs:documentation>Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>Alternate Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Mobile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Work</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Minicom (hearing impaired/disabled)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKRelationshipType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ASWR">
        <xs:annotation>
          <xs:documentation>Agency representative</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CARE">
        <xs:annotation>
          <xs:documentation>Carer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHMR">
        <xs:annotation>
          <xs:documentation>Childminder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEPD">
        <xs:annotation>
          <xs:documentation>Dependent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOCT">
        <xs:annotation>
          <xs:documentation>Doctor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EMPY">
        <xs:annotation>
          <xs:documentation>Employer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAAP">
        <xs:annotation>
          <xs:documentation>Adoptive parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAAS">
        <xs:annotation>
          <xs:documentation>Adopted son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABH">
        <xs:annotation>
          <xs:documentation>Brother, half</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABI">
        <xs:annotation>
          <xs:documentation>Brother-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABN">
        <xs:annotation>
          <xs:documentation>Brother, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABS">
        <xs:annotation>
          <xs:documentation>Brother, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADF">
        <xs:annotation>
          <xs:documentation>Foster daughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADI">
        <xs:annotation>
          <xs:documentation>Daughter-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADR">
        <xs:annotation>
          <xs:documentation>Daughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFF">
        <xs:annotation>
          <xs:documentation>Father, foster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFI">
        <xs:annotation>
          <xs:documentation>Father-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFN">
        <xs:annotation>
          <xs:documentation>Father, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFO">
        <xs:annotation>
          <xs:documentation>Father's significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFS">
        <xs:annotation>
          <xs:documentation>Father, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGA">
        <xs:annotation>
          <xs:documentation>Great aunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGD">
        <xs:annotation>
          <xs:documentation>Granddaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGF">
        <xs:annotation>
          <xs:documentation>Grandfather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGM">
        <xs:annotation>
          <xs:documentation>Grandmother</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGS">
        <xs:annotation>
          <xs:documentation>Grandson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGU">
        <xs:annotation>
          <xs:documentation>Great uncle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FALP">
        <xs:annotation>
          <xs:documentation>Life partner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMF">
        <xs:annotation>
          <xs:documentation>Mother, foster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMH">
        <xs:annotation>
          <xs:documentation>Husband</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMI">
        <xs:annotation>
          <xs:documentation>Mother-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMN">
        <xs:annotation>
          <xs:documentation>Mother, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMO">
        <xs:annotation>
          <xs:documentation>Mother's significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMS">
        <xs:annotation>
          <xs:documentation>Mother, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FANC">
        <xs:annotation>
          <xs:documentation>Niece</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FANW">
        <xs:annotation>
          <xs:documentation>Nephew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAOT">
        <xs:annotation>
          <xs:documentation>Family member</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAPF">
        <xs:annotation>
          <xs:documentation>Foster parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAPP">
        <xs:annotation>
          <xs:documentation>Life partner of parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASF">
        <xs:annotation>
          <xs:documentation>Foster son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASH">
        <xs:annotation>
          <xs:documentation>Sister, half</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASI">
        <xs:annotation>
          <xs:documentation>Sister-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASN">
        <xs:annotation>
          <xs:documentation>Sister, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASO">
        <xs:annotation>
          <xs:documentation>Son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASP">
        <xs:annotation>
          <xs:documentation>Stepson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASS">
        <xs:annotation>
          <xs:documentation>Sister, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASW">
        <xs:annotation>
          <xs:documentation>Son-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FNCF">
        <xs:annotation>
          <xs:documentation>Fiance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FNCM">
        <xs:annotation>
          <xs:documentation>Fianc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRND">
        <xs:annotation>
          <xs:documentation>Friend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUAR">
        <xs:annotation>
          <xs:documentation>Court appointed guardian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTCR">
        <xs:annotation>
          <xs:documentation>Head Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NONE">
        <xs:annotation>
          <xs:documentation>None</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OREL">
        <xs:annotation>
          <xs:documentation>Other relative</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHR">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREH">
        <xs:annotation>
          <xs:documentation>Former husband</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREW">
        <xs:annotation>
          <xs:documentation>Former wife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PROB">
        <xs:annotation>
          <xs:documentation>Probation officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PTNP">
        <xs:annotation>
          <xs:documentation>Partner of parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PTNR">
        <xs:annotation>
          <xs:documentation>Partner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELA">
        <xs:annotation>
          <xs:documentation>Aunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELC">
        <xs:annotation>
          <xs:documentation>Cousin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELG">
        <xs:annotation>
          <xs:documentation>Minister or priest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELU">
        <xs:annotation>
          <xs:documentation>Uncle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIGO">
        <xs:annotation>
          <xs:documentation>Significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWKR">
        <xs:annotation>
          <xs:documentation>Social Worker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TADV">
        <xs:annotation>
          <xs:documentation>Advisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WARD">
        <xs:annotation>
          <xs:documentation>Ward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIFE">
        <xs:annotation>
          <xs:documentation>Wife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKReligiousAffiliationType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BA">
        <xs:annotation>
          <xs:documentation>Baptist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BU">
        <xs:annotation>
          <xs:documentation>Buddhist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CE">
        <xs:annotation>
          <xs:documentation>Church of England</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CH">
        <xs:annotation>
          <xs:documentation>Christian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CO">
        <xs:annotation>
          <xs:documentation>Congregational</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EC">
        <xs:annotation>
          <xs:documentation>Christian (Ecumenical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FR">
        <xs:annotation>
          <xs:documentation>Free Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GR">
        <xs:annotation>
          <xs:documentation>Greek Orthodox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HI">
        <xs:annotation>
          <xs:documentation>Hindu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JE">
        <xs:annotation>
          <xs:documentation>Jewish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JW">
        <xs:annotation>
          <xs:documentation>Jehovah's Witness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LU">
        <xs:annotation>
          <xs:documentation>Lutheran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ME">
        <xs:annotation>
          <xs:documentation>Methodist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MO">
        <xs:annotation>
          <xs:documentation>Mormon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MU">
        <xs:annotation>
          <xs:documentation>Muslim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ND">
        <xs:annotation>
          <xs:documentation>Non-denominational/Secular</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NO">
        <xs:annotation>
          <xs:documentation>No religion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other Religious Affiliation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QU">
        <xs:annotation>
          <xs:documentation>Quaker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RC">
        <xs:annotation>
          <xs:documentation>Roman Catholic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RF">
        <xs:annotation>
          <xs:documentation>Refused</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RU">
        <xs:annotation>
          <xs:documentation>Russian Orthodox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SA">
        <xs:annotation>
          <xs:documentation>Salvation Army</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SD">
        <xs:annotation>
          <xs:documentation>Seventh Day Adventist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SI">
        <xs:annotation>
          <xs:documentation>Sikh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UR">
        <xs:annotation>
          <xs:documentation>United Reform Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSchoolTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="01">
        <xs:annotation>
          <xs:documentation>First school, 5-8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="02">
        <xs:annotation>
          <xs:documentation>First school, 5-9</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="03">
        <xs:annotation>
          <xs:documentation>First school, 5-10</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="04">
        <xs:annotation>
          <xs:documentation>First and Middle school, 5-12</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05">
        <xs:annotation>
          <xs:documentation>Middle school, 8-12, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="06">
        <xs:annotation>
          <xs:documentation>Middle school, 9-13, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="07">
        <xs:annotation>
          <xs:documentation>Middle school, 9-13, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="08">
        <xs:annotation>
          <xs:documentation>Middle school, 10-13, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 12-15/16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 12-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 13-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 13-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16">
        <xs:annotation>
          <xs:documentation>Infant school, 5-7/8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17">
        <xs:annotation>
          <xs:documentation>Junior school, 7/8-11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18">
        <xs:annotation>
          <xs:documentation>Infant and Junior school, 5-11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21">
        <xs:annotation>
          <xs:documentation>Comprehensive all-through, 11-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22">
        <xs:annotation>
          <xs:documentation>Comprehensive all-through, 11-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="25">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-13, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-14, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="27">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-16, optional transfer at 13</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="28">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-16, optional transfer at 14</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-16, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-18, optional transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-18, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 14-18, optional transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 14-18, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Modern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Grammar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Technical</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41">
        <xs:annotation>
          <xs:documentation>Middle school, 10-14, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42">
        <xs:annotation>
          <xs:documentation>First school, 5-7;</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43">
        <xs:annotation>
          <xs:documentation>First school, 7-10;</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 14/15-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45">
        <xs:annotation>
          <xs:documentation>Middle school, 9-12, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46">
        <xs:annotation>
          <xs:documentation>Comprehensive, Middle and Upper, 10-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47">
        <xs:annotation>
          <xs:documentation>City Technology College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="48">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 11-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="49">
        <xs:annotation>
          <xs:documentation>Academies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="50">
        <xs:annotation>
          <xs:documentation>Maintained Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="51">
        <xs:annotation>
          <xs:documentation>Direct Grant Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSENProvisionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>No Special Educational Need</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>School Action or Early Years Action</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>School Action Plus or Early Years Action Plus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Statement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSENTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="SPLD">
        <xs:annotation>
          <xs:documentation>Specific Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLD">
        <xs:annotation>
          <xs:documentation>Moderate Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLD">
        <xs:annotation>
          <xs:documentation>Severe Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PMLD">
        <xs:annotation>
          <xs:documentation>Profound &amp; Multiple Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BESD">
        <xs:annotation>
          <xs:documentation>Behaviour, Emotional &amp; Social Difficulties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLCD">
        <xs:annotation>
          <xs:documentation>Speech, Language and Communication Difficulties (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLCN">
        <xs:annotation>
          <xs:documentation>Speech, Language and Communication Needs (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HI">
        <xs:annotation>
          <xs:documentation>Hearing Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VI">
        <xs:annotation>
          <xs:documentation>Visual Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSI">
        <xs:annotation>
          <xs:documentation>Multi-Sensory Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PD">
        <xs:annotation>
          <xs:documentation>Physical Disability (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PMED">
        <xs:annotation>
          <xs:documentation>Physical and Medical Difficulties (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASD">
        <xs:annotation>
          <xs:documentation>Autistic Spectrum Disorder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other Difficulty/Disability (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNA">
        <xs:annotation>
          <xs:documentation>Does not apply (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSourceCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Provided by the child (ie pupil)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Provided by the parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Ascribed by the current school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>Ascribed by a previous school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Other </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSpecialisedResourcesWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="SR1">
        <xs:annotation>
          <xs:documentation>Periodic access to standard equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR2">
        <xs:annotation>
          <xs:documentation>Individual access to normally available equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR3">
        <xs:annotation>
          <xs:documentation>Individual access to specialised equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR4">
        <xs:annotation>
          <xs:documentation>Dedicated access to highly specialised equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTravellerGypsyCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="GH">
        <xs:annotation>
          <xs:documentation>Gypsy/Roma (Housed)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GT">
        <xs:annotation>
          <xs:documentation>Gypsy/Roma (Travelling)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Occupational Traveller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TR">
        <xs:annotation>
          <xs:documentation>Traveller (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NT">
        <xs:annotation>
          <xs:documentation>Not a Traveller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTuitionCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="IL">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA because of Illness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA because of Permanent Exclusion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OR">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA for Other Reason</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HP">
        <xs:annotation>
          <xs:documentation>Alternative Tuition at Home by Parents/Carers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTuitionHoursType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>5 hours or less</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>6-12 hours</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>13-19 hours</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>20 hours or more</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ISO4217CurrencyNamesAndCodeElementsType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AED">
        <xs:annotation>
          <xs:documentation>UAE Dirham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFN">
        <xs:annotation>
          <xs:documentation>Afghani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALL">
        <xs:annotation>
          <xs:documentation>Lek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMD">
        <xs:annotation>
          <xs:documentation>Armenian Dram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANG">
        <xs:annotation>
          <xs:documentation>Netherlands Antillian Guikder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOA">
        <xs:annotation>
          <xs:documentation>Kwanza</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARS">
        <xs:annotation>
          <xs:documentation>Argentine Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUD">
        <xs:annotation>
          <xs:documentation>Australian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AWG">
        <xs:annotation>
          <xs:documentation>Aruban Guilder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZN">
        <xs:annotation>
          <xs:documentation>Azerbaijanian Manat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAM">
        <xs:annotation>
          <xs:documentation>Convertible Marks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BBD">
        <xs:annotation>
          <xs:documentation>Barbados Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDT">
        <xs:annotation>
          <xs:documentation>Taka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGN">
        <xs:annotation>
          <xs:documentation>Bulgarian Lev</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHD">
        <xs:annotation>
          <xs:documentation>Bahraini Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIF">
        <xs:annotation>
          <xs:documentation>Burundi Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMD">
        <xs:annotation>
          <xs:documentation>Bermudian Dollar (customarily known as Bermuda Dollar) </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BND">
        <xs:annotation>
          <xs:documentation>Brunei Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOB">
        <xs:annotation>
          <xs:documentation>Boliviano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOV">
        <xs:annotation>
          <xs:documentation>Mvdol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRL">
        <xs:annotation>
          <xs:documentation>Brazilian Real</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSD">
        <xs:annotation>
          <xs:documentation>Bahamian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BTN">
        <xs:annotation>
          <xs:documentation>Ngultrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BWP">
        <xs:annotation>
          <xs:documentation>Pula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BYR">
        <xs:annotation>
          <xs:documentation>Belarussian Ruble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BZD">
        <xs:annotation>
          <xs:documentation>Belize Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAD">
        <xs:annotation>
          <xs:documentation>Canadian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDF">
        <xs:annotation>
          <xs:documentation>Franc Congolais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>WIR Euro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHF">
        <xs:annotation>
          <xs:documentation>Swiss Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHW">
        <xs:annotation>
          <xs:documentation>WIR Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLF">
        <xs:annotation>
          <xs:documentation>Unidades de formento</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLP">
        <xs:annotation>
          <xs:documentation>Chilean Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CNY">
        <xs:annotation>
          <xs:documentation>Yuan Renminbi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COP">
        <xs:annotation>
          <xs:documentation>Colombian Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COU">
        <xs:annotation>
          <xs:documentation>Unidad de Valor Real</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRC">
        <xs:annotation>
          <xs:documentation>Costa Rican Colon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSD">
        <xs:annotation>
          <xs:documentation>Serbian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUP">
        <xs:annotation>
          <xs:documentation>Cuban Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CVE">
        <xs:annotation>
          <xs:documentation>Cape Verde Escudo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYP">
        <xs:annotation>
          <xs:documentation>Cyprus Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZK">
        <xs:annotation>
          <xs:documentation>Czech Koruna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DJF">
        <xs:annotation>
          <xs:documentation>Djibouti Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DKK">
        <xs:annotation>
          <xs:documentation>Danish Krone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOP">
        <xs:annotation>
          <xs:documentation>Dominican Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZD">
        <xs:annotation>
          <xs:documentation>Algerian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EEK">
        <xs:annotation>
          <xs:documentation>Kroon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EGP">
        <xs:annotation>
          <xs:documentation>Egyptian Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ERN">
        <xs:annotation>
          <xs:documentation>Nakfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETB">
        <xs:annotation>
          <xs:documentation>Ethiopian Birr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EUR">
        <xs:annotation>
          <xs:documentation>Euro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FJD">
        <xs:annotation>
          <xs:documentation>Fiji Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FKP">
        <xs:annotation>
          <xs:documentation>Falkland Islands Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GBP">
        <xs:annotation>
          <xs:documentation>Pound Sterling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Lari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GHC">
        <xs:annotation>
          <xs:documentation>Cedi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIP">
        <xs:annotation>
          <xs:documentation>Gibraltar Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMD">
        <xs:annotation>
          <xs:documentation>Dalasi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNF">
        <xs:annotation>
          <xs:documentation>Guinea Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTQ">
        <xs:annotation>
          <xs:documentation>Quetzal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GWP">
        <xs:annotation>
          <xs:documentation>Guinea-Bissau Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GYD">
        <xs:annotation>
          <xs:documentation>Guyana Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HKD">
        <xs:annotation>
          <xs:documentation>Hong Kong Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HNL">
        <xs:annotation>
          <xs:documentation>Lempira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HRK">
        <xs:annotation>
          <xs:documentation>Croatian Kuna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTG">
        <xs:annotation>
          <xs:documentation>Gourde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUF">
        <xs:annotation>
          <xs:documentation>Forint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDR">
        <xs:annotation>
          <xs:documentation>Rupiah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ILS">
        <xs:annotation>
          <xs:documentation>New Israeli Sheqel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INR">
        <xs:annotation>
          <xs:documentation>Indian Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IQD">
        <xs:annotation>
          <xs:documentation>Iraqi Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRR">
        <xs:annotation>
          <xs:documentation>Iranian Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISK">
        <xs:annotation>
          <xs:documentation>Iceland Krona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JMD">
        <xs:annotation>
          <xs:documentation>Jamaican Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JOD">
        <xs:annotation>
          <xs:documentation>Jordanian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPY">
        <xs:annotation>
          <xs:documentation>Yen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KES">
        <xs:annotation>
          <xs:documentation>Kenyan Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGS">
        <xs:annotation>
          <xs:documentation>Som</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHR">
        <xs:annotation>
          <xs:documentation>Riel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KMF">
        <xs:annotation>
          <xs:documentation>Comoro Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KPW">
        <xs:annotation>
          <xs:documentation>North Korean Won</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRW">
        <xs:annotation>
          <xs:documentation>Won</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KWD">
        <xs:annotation>
          <xs:documentation>Kuwaiti Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KYD">
        <xs:annotation>
          <xs:documentation>Cayman Islands Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KZT">
        <xs:annotation>
          <xs:documentation>Tenge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAK">
        <xs:annotation>
          <xs:documentation>Kip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBP">
        <xs:annotation>
          <xs:documentation>Lebanese Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LKR">
        <xs:annotation>
          <xs:documentation>Sri Lanka Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LRD">
        <xs:annotation>
          <xs:documentation>Liberian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSL">
        <xs:annotation>
          <xs:documentation>Loti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTL">
        <xs:annotation>
          <xs:documentation>Lithuanian Litas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LVL">
        <xs:annotation>
          <xs:documentation>Latvian Lats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LYD">
        <xs:annotation>
          <xs:documentation>Libyan Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAD">
        <xs:annotation>
          <xs:documentation>Moroccan Dirham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDL">
        <xs:annotation>
          <xs:documentation>Moldovan Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MGA">
        <xs:annotation>
          <xs:documentation>Malagascy Ariary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Denar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMK">
        <xs:annotation>
          <xs:documentation>Kyat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNT">
        <xs:annotation>
          <xs:documentation>Tugrik</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOP">
        <xs:annotation>
          <xs:documentation>Pataca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MRO">
        <xs:annotation>
          <xs:documentation>Ouguiya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MTL">
        <xs:annotation>
          <xs:documentation>Maltese Lira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUR">
        <xs:annotation>
          <xs:documentation>Mauritius Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MVR">
        <xs:annotation>
          <xs:documentation>Rufiyaa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWK">
        <xs:annotation>
          <xs:documentation>Kwacha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MXN">
        <xs:annotation>
          <xs:documentation>Mexican Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MXV">
        <xs:annotation>
          <xs:documentation>Mexican Unidad de Inversion (UID)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYR">
        <xs:annotation>
          <xs:documentation>Malaysian Ringgit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MZN">
        <xs:annotation>
          <xs:documentation>Metical </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAD">
        <xs:annotation>
          <xs:documentation>Namibian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NGN">
        <xs:annotation>
          <xs:documentation>Naira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIO">
        <xs:annotation>
          <xs:documentation>Cordoba Oro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOK">
        <xs:annotation>
          <xs:documentation>Norwegian Krone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NPR">
        <xs:annotation>
          <xs:documentation>Nepalese Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZD">
        <xs:annotation>
          <xs:documentation>New Zealand Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMR">
        <xs:annotation>
          <xs:documentation>Rial Omani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAB">
        <xs:annotation>
          <xs:documentation>Balboa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PEN">
        <xs:annotation>
          <xs:documentation>Nuevo Sol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PGK">
        <xs:annotation>
          <xs:documentation>Kina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHP">
        <xs:annotation>
          <xs:documentation>Philippine Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PKR">
        <xs:annotation>
          <xs:documentation>Pakistan Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLN">
        <xs:annotation>
          <xs:documentation>Zloty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PYG">
        <xs:annotation>
          <xs:documentation>Guarani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QAR">
        <xs:annotation>
          <xs:documentation>Qatari Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROL">
        <xs:annotation>
          <xs:documentation>Old Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RON">
        <xs:annotation>
          <xs:documentation>New Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUB">
        <xs:annotation>
          <xs:documentation>Russian Ruble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWF">
        <xs:annotation>
          <xs:documentation>Rwanda Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAR">
        <xs:annotation>
          <xs:documentation>Saudi Riyal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SBD">
        <xs:annotation>
          <xs:documentation>Solomon Islands Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCR">
        <xs:annotation>
          <xs:documentation>Seychelles Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SDD">
        <xs:annotation>
          <xs:documentation>Sudanese Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEK">
        <xs:annotation>
          <xs:documentation>Swedish Krona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGD">
        <xs:annotation>
          <xs:documentation>Singapore Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHP">
        <xs:annotation>
          <xs:documentation>Saint Helena Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIT">
        <xs:annotation>
          <xs:documentation>Tolar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SKK">
        <xs:annotation>
          <xs:documentation>Slovak Koruna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLL">
        <xs:annotation>
          <xs:documentation>Leone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOS">
        <xs:annotation>
          <xs:documentation>Somali Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRD">
        <xs:annotation>
          <xs:documentation>Surinam Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STD">
        <xs:annotation>
          <xs:documentation>Dobra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVC">
        <xs:annotation>
          <xs:documentation>El Salvador Colon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYP">
        <xs:annotation>
          <xs:documentation>Syrian Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SZL">
        <xs:annotation>
          <xs:documentation>Lilangeni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THB">
        <xs:annotation>
          <xs:documentation>Baht</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TJS">
        <xs:annotation>
          <xs:documentation>Somoni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMM">
        <xs:annotation>
          <xs:documentation>Manat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TND">
        <xs:annotation>
          <xs:documentation>Tunisian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TOP">
        <xs:annotation>
          <xs:documentation>Pa'anga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRY">
        <xs:annotation>
          <xs:documentation>New Turkish Lira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTD">
        <xs:annotation>
          <xs:documentation>Trinidad and Tobago Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TWD">
        <xs:annotation>
          <xs:documentation>New Taiwan Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TZS">
        <xs:annotation>
          <xs:documentation>Tanzanian Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UAH">
        <xs:annotation>
          <xs:documentation>Hryvnia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UGX">
        <xs:annotation>
          <xs:documentation>Uganda Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USD">
        <xs:annotation>
          <xs:documentation>US Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USN">
        <xs:annotation>
          <xs:documentation>US Dollar (Next day)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USS">
        <xs:annotation>
          <xs:documentation>US Dollar (Same day)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UYU">
        <xs:annotation>
          <xs:documentation>Peso Uruguayo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZS">
        <xs:annotation>
          <xs:documentation>Uzbekistan Sum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEB">
        <xs:annotation>
          <xs:documentation>Bolivar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VND">
        <xs:annotation>
          <xs:documentation>Dong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VUV">
        <xs:annotation>
          <xs:documentation>Vatu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WST">
        <xs:annotation>
          <xs:documentation>Tala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAF">
        <xs:annotation>
          <xs:documentation>CFA Franc BEAC</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAG">
        <xs:annotation>
          <xs:documentation>Silver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAU">
        <xs:annotation>
          <xs:documentation>Gold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBA">
        <xs:annotation>
          <xs:documentation>Bond Markets Units European Composite Unit (EURCO)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBB">
        <xs:annotation>
          <xs:documentation>European Monetary Unit (E.M.U.-6)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBC">
        <xs:annotation>
          <xs:documentation>European Unit of Account 9 (E.U.A.-9)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBD">
        <xs:annotation>
          <xs:documentation>European Unit of Account 17 (E.U.A.-17)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XCD">
        <xs:annotation>
          <xs:documentation>East Caribbean Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XDR">
        <xs:annotation>
          <xs:documentation>SDR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XFO">
        <xs:annotation>
          <xs:documentation>Gold-Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XFU">
        <xs:annotation>
          <xs:documentation>UIC-Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XOF">
        <xs:annotation>
          <xs:documentation>CFA Franc BCEAO</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPD">
        <xs:annotation>
          <xs:documentation>Palladium</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPF">
        <xs:annotation>
          <xs:documentation>CFP Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPT">
        <xs:annotation>
          <xs:documentation>Platinum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XTS">
        <xs:annotation>
          <xs:documentation>Code specifically reserved for testing purposes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XXX">
        <xs:annotation>
          <xs:documentation>Code assigned for transactions where no currency is involved</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YER">
        <xs:annotation>
          <xs:documentation>Yemeni Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAR">
        <xs:annotation>
          <xs:documentation>Rand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZMK">
        <xs:annotation>
          <xs:documentation>Kwacha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZWN">
        <xs:annotation>
          <xs:documentation>Zimbabwe Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetEthnicityCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="WENG">
        <xs:annotation>
          <xs:documentation>White - English </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSCO">
        <xs:annotation>
          <xs:documentation>White - Scottish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WWEL">
        <xs:annotation>
          <xs:documentation>White - Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOWB">
        <xs:annotation>
          <xs:documentation>Other White British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIRI">
        <xs:annotation>
          <xs:documentation>White - Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIRT">
        <xs:annotation>
          <xs:documentation>Traveller of Irish Heritage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOTH">
        <xs:annotation>
          <xs:documentation>Any Other White Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WALB">
        <xs:annotation>
          <xs:documentation>Albanian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WBOS">
        <xs:annotation>
          <xs:documentation>Bosnian- Herzegovinian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WCRO">
        <xs:annotation>
          <xs:documentation>Croatian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRE">
        <xs:annotation>
          <xs:documentation>Greek/ Greek Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRK">
        <xs:annotation>
          <xs:documentation>Greek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRC">
        <xs:annotation>
          <xs:documentation>Greek Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WKOS">
        <xs:annotation>
          <xs:documentation>Kosovan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WPOR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSER">
        <xs:annotation>
          <xs:documentation>Serbian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUR">
        <xs:annotation>
          <xs:documentation>Turkish/ Turkish Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUK">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUC">
        <xs:annotation>
          <xs:documentation>Turkish Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEUR">
        <xs:annotation>
          <xs:documentation>White European</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEEU">
        <xs:annotation>
          <xs:documentation>White Eastern European </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WWEU">
        <xs:annotation>
          <xs:documentation>White Western European </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOTW">
        <xs:annotation>
          <xs:documentation>White Other </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WROM">
        <xs:annotation>
          <xs:documentation>Gypsy / Roma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWBC">
        <xs:annotation>
          <xs:documentation>White and Black Caribbean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWBA">
        <xs:annotation>
          <xs:documentation>White and Black African</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAS">
        <xs:annotation>
          <xs:documentation>White and Asian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAP">
        <xs:annotation>
          <xs:documentation>White and Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAI">
        <xs:annotation>
          <xs:documentation>White and Indian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAO">
        <xs:annotation>
          <xs:documentation>White and Any Other Asian Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOTH">
        <xs:annotation>
          <xs:documentation>Any Other Mixed Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAOE">
        <xs:annotation>
          <xs:documentation>Asian and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MABL">
        <xs:annotation>
          <xs:documentation>Asian and Black</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MACH">
        <xs:annotation>
          <xs:documentation>Asian and Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MBOE">
        <xs:annotation>
          <xs:documentation>Black and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MBCH">
        <xs:annotation>
          <xs:documentation>Black and Chinese </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MCOE">
        <xs:annotation>
          <xs:documentation>Chinese and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWOE">
        <xs:annotation>
          <xs:documentation>White and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWCH">
        <xs:annotation>
          <xs:documentation>White and Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOTM">
        <xs:annotation>
          <xs:documentation>Other Mixed Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIND">
        <xs:annotation>
          <xs:documentation>Indian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="APKN">
        <xs:annotation>
          <xs:documentation>Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMPK">
        <xs:annotation>
          <xs:documentation>Mirpuri Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKPA">
        <xs:annotation>
          <xs:documentation>Kashmiri Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOPK">
        <xs:annotation>
          <xs:documentation>Other Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABAN">
        <xs:annotation>
          <xs:documentation>Bangladeshi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOTH">
        <xs:annotation>
          <xs:documentation>Any Other Asian Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AAFR">
        <xs:annotation>
          <xs:documentation>African Asian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAO">
        <xs:annotation>
          <xs:documentation>Kashmiri Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANEP">
        <xs:annotation>
          <xs:documentation>Nepali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASNL">
        <xs:annotation>
          <xs:documentation>Sinhalese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASLT">
        <xs:annotation>
          <xs:documentation>Sri Lankan Tamil </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOTA">
        <xs:annotation>
          <xs:documentation>Other Asian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BCRB">
        <xs:annotation>
          <xs:documentation>Black Caribbean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAFR">
        <xs:annotation>
          <xs:documentation>Black - African</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BANN">
        <xs:annotation>
          <xs:documentation>Black - Angolan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BCON">
        <xs:annotation>
          <xs:documentation>Black - Congolese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGHA">
        <xs:annotation>
          <xs:documentation>Black - Ghanaian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGN">
        <xs:annotation>
          <xs:documentation>Black - Nigerian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSLN">
        <xs:annotation>
          <xs:documentation>Black - Sierra Leonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSOM">
        <xs:annotation>
          <xs:documentation>Black - Somali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSUD">
        <xs:annotation>
          <xs:documentation>Black - Sudanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAOF">
        <xs:annotation>
          <xs:documentation>Other Black African </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOTH">
        <xs:annotation>
          <xs:documentation>Any Other Black Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEUR">
        <xs:annotation>
          <xs:documentation>Black European</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNAM">
        <xs:annotation>
          <xs:documentation>Black North American </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOTB">
        <xs:annotation>
          <xs:documentation>Other Black</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHNE">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHKC">
        <xs:annotation>
          <xs:documentation>Hong Kong Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CMAL">
        <xs:annotation>
          <xs:documentation>Malaysian Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSNG">
        <xs:annotation>
          <xs:documentation>Singaporean Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTWN">
        <xs:annotation>
          <xs:documentation>Taiwanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COCH">
        <xs:annotation>
          <xs:documentation>Other Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOTH">
        <xs:annotation>
          <xs:documentation>Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAFG">
        <xs:annotation>
          <xs:documentation>Afghan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OARA">
        <xs:annotation>
          <xs:documentation>Arab Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OEGY">
        <xs:annotation>
          <xs:documentation>Egyptian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OFIL">
        <xs:annotation>
          <xs:documentation>Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OIRN">
        <xs:annotation>
          <xs:documentation>Iranian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OIRQ">
        <xs:annotation>
          <xs:documentation>Iraqi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OJPN">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OKOR">
        <xs:annotation>
          <xs:documentation>Korean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OKRD">
        <xs:annotation>
          <xs:documentation>Kurdish </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLAM">
        <xs:annotation>
          <xs:documentation>Latin/ South/ Central American </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLEB">
        <xs:annotation>
          <xs:documentation>Lebanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLIB">
        <xs:annotation>
          <xs:documentation>Libyan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMAL">
        <xs:annotation>
          <xs:documentation>Malay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMRC">
        <xs:annotation>
          <xs:documentation>Moroccan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPOL">
        <xs:annotation>
          <xs:documentation>Polynesian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHA">
        <xs:annotation>
          <xs:documentation>Thai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OVIE">
        <xs:annotation>
          <xs:documentation>Vietnamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OYEM">
        <xs:annotation>
          <xs:documentation>Yemeni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOEG">
        <xs:annotation>
          <xs:documentation>Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REFU">
        <xs:annotation>
          <xs:documentation>Refused </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOBT">
        <xs:annotation>
          <xs:documentation>Information Not Yet Obtained</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetChurchOfEnglandDioceseType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BAT">
        <xs:annotation>
          <xs:documentation>Bath &amp; Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIR">
        <xs:annotation>
          <xs:documentation>Birmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLA">
        <xs:annotation>
          <xs:documentation>Blackburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRA">
        <xs:annotation>
          <xs:documentation>Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRI">
        <xs:annotation>
          <xs:documentation>Bristol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAN">
        <xs:annotation>
          <xs:documentation>Canterbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Carlisle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Chelmsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHS">
        <xs:annotation>
          <xs:documentation>Chester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chichester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COV">
        <xs:annotation>
          <xs:documentation>Coventry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DER">
        <xs:annotation>
          <xs:documentation>Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUR">
        <xs:annotation>
          <xs:documentation>Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ELY">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXE">
        <xs:annotation>
          <xs:documentation>Exeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLO">
        <xs:annotation>
          <xs:documentation>Gloucester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUI">
        <xs:annotation>
          <xs:documentation>Guildford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEI">
        <xs:annotation>
          <xs:documentation>Leicester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIC">
        <xs:annotation>
          <xs:documentation>Lichfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Lincoln</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIV">
        <xs:annotation>
          <xs:documentation>Liverpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LON">
        <xs:annotation>
          <xs:documentation>London</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAN">
        <xs:annotation>
          <xs:documentation>Manchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NEW">
        <xs:annotation>
          <xs:documentation>Newcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OXF">
        <xs:annotation>
          <xs:documentation>Oxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PET">
        <xs:annotation>
          <xs:documentation>Peterborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portsmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RIP">
        <xs:annotation>
          <xs:documentation>Ripon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROC">
        <xs:annotation>
          <xs:documentation>Rochester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>St Albans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STE">
        <xs:annotation>
          <xs:documentation>St Edmundsbury &amp; Ipswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAL">
        <xs:annotation>
          <xs:documentation>Salisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHE">
        <xs:annotation>
          <xs:documentation>Sheffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOD">
        <xs:annotation>
          <xs:documentation>Sodor &amp; Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOU">
        <xs:annotation>
          <xs:documentation>Southwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOW">
        <xs:annotation>
          <xs:documentation>Southwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRU">
        <xs:annotation>
          <xs:documentation>Truro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAK">
        <xs:annotation>
          <xs:documentation>Wakefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIN">
        <xs:annotation>
          <xs:documentation>Winchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOR">
        <xs:annotation>
          <xs:documentation>Worcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YOR">
        <xs:annotation>
          <xs:documentation>York</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLAIdType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="001">
        <xs:annotation>
          <xs:documentation>BELFAST EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="002">
        <xs:annotation>
          <xs:documentation>WESTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="003">
        <xs:annotation>
          <xs:documentation>NORTH EASTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="004">
        <xs:annotation>
          <xs:documentation>SOUTH EASTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="005">
        <xs:annotation>
          <xs:documentation>SOUTHERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="201">
        <xs:annotation>
          <xs:documentation>CITY OF LONDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="202">
        <xs:annotation>
          <xs:documentation>CAMDEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="203">
        <xs:annotation>
          <xs:documentation>GREENWICH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="204">
        <xs:annotation>
          <xs:documentation>HACKNEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="205">
        <xs:annotation>
          <xs:documentation>HAMMERSMITH &amp; FULHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="206">
        <xs:annotation>
          <xs:documentation>ISLINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="207">
        <xs:annotation>
          <xs:documentation>KENSINGTON &amp; CHELSEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="208">
        <xs:annotation>
          <xs:documentation>LAMBETH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="209">
        <xs:annotation>
          <xs:documentation>LEWISHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="210">
        <xs:annotation>
          <xs:documentation>SOUTHWARK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="211">
        <xs:annotation>
          <xs:documentation>TOWER HAMLETS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="212">
        <xs:annotation>
          <xs:documentation>WANDSWORTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="213">
        <xs:annotation>
          <xs:documentation>WESTMINSTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="301">
        <xs:annotation>
          <xs:documentation>BARKING &amp; DAGENHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="302">
        <xs:annotation>
          <xs:documentation>BARNET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="303">
        <xs:annotation>
          <xs:documentation>BEXLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="304">
        <xs:annotation>
          <xs:documentation>BRENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="305">
        <xs:annotation>
          <xs:documentation>BROMLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="306">
        <xs:annotation>
          <xs:documentation>CROYDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="307">
        <xs:annotation>
          <xs:documentation>EALING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="308">
        <xs:annotation>
          <xs:documentation>ENFIELD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="309">
        <xs:annotation>
          <xs:documentation>HARINGEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="310">
        <xs:annotation>
          <xs:documentation>HARROW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="311">
        <xs:annotation>
          <xs:documentation>HAVERING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="312">
        <xs:annotation>
          <xs:documentation>HILLINGDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="313">
        <xs:annotation>
          <xs:documentation>HOUNSLOW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="314">
        <xs:annotation>
          <xs:documentation>KINGSTON UPON THAMES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="315">
        <xs:annotation>
          <xs:documentation>MERTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="316">
        <xs:annotation>
          <xs:documentation>NEWHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="317">
        <xs:annotation>
          <xs:documentation>REDBRIDGE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="318">
        <xs:annotation>
          <xs:documentation>RICHMOND UPON THAMES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="319">
        <xs:annotation>
          <xs:documentation>SUTTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="320">
        <xs:annotation>
          <xs:documentation>WALTHAM FOREST</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="330">
        <xs:annotation>
          <xs:documentation>BIRMINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="331">
        <xs:annotation>
          <xs:documentation>COVENTRY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="332">
        <xs:annotation>
          <xs:documentation>DUDLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="333">
        <xs:annotation>
          <xs:documentation>SANDWELL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="334">
        <xs:annotation>
          <xs:documentation>SOLIHULL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="335">
        <xs:annotation>
          <xs:documentation>WALSALL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="336">
        <xs:annotation>
          <xs:documentation>WOLVERHAMPTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="340">
        <xs:annotation>
          <xs:documentation>KNOWSLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="341">
        <xs:annotation>
          <xs:documentation>LIVERPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="342">
        <xs:annotation>
          <xs:documentation>ST HELENS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="343">
        <xs:annotation>
          <xs:documentation>SEFTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="344">
        <xs:annotation>
          <xs:documentation>WIRRAL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="350">
        <xs:annotation>
          <xs:documentation>BOLTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="351">
        <xs:annotation>
          <xs:documentation>BURY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="352">
        <xs:annotation>
          <xs:documentation>MANCHESTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="353">
        <xs:annotation>
          <xs:documentation>OLDHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="354">
        <xs:annotation>
          <xs:documentation>ROCHDALE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="355">
        <xs:annotation>
          <xs:documentation>SALFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="356">
        <xs:annotation>
          <xs:documentation>STOCKPORT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="357">
        <xs:annotation>
          <xs:documentation>TAMESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="358">
        <xs:annotation>
          <xs:documentation>TRAFFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="359">
        <xs:annotation>
          <xs:documentation>WIGAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="370">
        <xs:annotation>
          <xs:documentation>BARNSLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="371">
        <xs:annotation>
          <xs:documentation>DONCASTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="372">
        <xs:annotation>
          <xs:documentation>ROTHERHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="373">
        <xs:annotation>
          <xs:documentation>SHEFFIELD </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="380">
        <xs:annotation>
          <xs:documentation>BRADFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="381">
        <xs:annotation>
          <xs:documentation>CALDERDALE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="382">
        <xs:annotation>
          <xs:documentation>KIRKLEES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="383">
        <xs:annotation>
          <xs:documentation>LEEDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="384">
        <xs:annotation>
          <xs:documentation>WAKEFIELD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="390">
        <xs:annotation>
          <xs:documentation>GATESHEAD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="391">
        <xs:annotation>
          <xs:documentation>NEWCASTLE UPON TYNE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="392">
        <xs:annotation>
          <xs:documentation>NORTH TYNESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="393">
        <xs:annotation>
          <xs:documentation>SOUTH TYNESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="394">
        <xs:annotation>
          <xs:documentation>SUNDERLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="420">
        <xs:annotation>
          <xs:documentation>ISLES OF SCILLY </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="600">
        <xs:annotation>
          <xs:documentation>SCOTLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="601">
        <xs:annotation>
          <xs:documentation>ABERDEEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="602">
        <xs:annotation>
          <xs:documentation>ABERDEENSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="603">
        <xs:annotation>
          <xs:documentation>ANGUS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="604">
        <xs:annotation>
          <xs:documentation>ARGYLL &amp; BUTE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="605">
        <xs:annotation>
          <xs:documentation>CLACKMANNANSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="606">
        <xs:annotation>
          <xs:documentation>DUMFRIES &amp; GALLOWAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="607">
        <xs:annotation>
          <xs:documentation>DUNDEE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="608">
        <xs:annotation>
          <xs:documentation>EAST AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="609">
        <xs:annotation>
          <xs:documentation>EAST DUNBARTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="610">
        <xs:annotation>
          <xs:documentation>EAST LOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="611">
        <xs:annotation>
          <xs:documentation>EAST RENFREWSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="612">
        <xs:annotation>
          <xs:documentation>EDINBURGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="613">
        <xs:annotation>
          <xs:documentation>EILEAN SIAR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="614">
        <xs:annotation>
          <xs:documentation>FALKIRK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="615">
        <xs:annotation>
          <xs:documentation>FIFE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="616">
        <xs:annotation>
          <xs:documentation>GLASGOW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="617">
        <xs:annotation>
          <xs:documentation>HIGHLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="618">
        <xs:annotation>
          <xs:documentation>INVERCLYDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="619">
        <xs:annotation>
          <xs:documentation>MIDLOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="620">
        <xs:annotation>
          <xs:documentation>MORAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="621">
        <xs:annotation>
          <xs:documentation>NORTH AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="622">
        <xs:annotation>
          <xs:documentation>NORTH LANARKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="623">
        <xs:annotation>
          <xs:documentation>ORKNEY ISLANDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="624">
        <xs:annotation>
          <xs:documentation>PERTH &amp; KINROSS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="625">
        <xs:annotation>
          <xs:documentation>RENFREWSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="626">
        <xs:annotation>
          <xs:documentation>SCOTTISH BORDERS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="627">
        <xs:annotation>
          <xs:documentation>SHETLAND ISLANDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="628">
        <xs:annotation>
          <xs:documentation>SOUTH AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="629">
        <xs:annotation>
          <xs:documentation>SOUTH LANARKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="630">
        <xs:annotation>
          <xs:documentation>STIRLING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="631">
        <xs:annotation>
          <xs:documentation>WEST DUNBARTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="632">
        <xs:annotation>
          <xs:documentation>WEST LOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="633">
        <xs:annotation>
          <xs:documentation>WESTERN ISLES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="660">
        <xs:annotation>
          <xs:documentation>ISLE OF ANGLESEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="661">
        <xs:annotation>
          <xs:documentation>GWYNEDD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="662">
        <xs:annotation>
          <xs:documentation>CONWY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="663">
        <xs:annotation>
          <xs:documentation>DENBIGHSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="664">
        <xs:annotation>
          <xs:documentation>FLINTSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="665">
        <xs:annotation>
          <xs:documentation>WREXHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="666">
        <xs:annotation>
          <xs:documentation>POWYS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="667">
        <xs:annotation>
          <xs:documentation>CEREDIGION</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="668">
        <xs:annotation>
          <xs:documentation>PEMBROKESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="669">
        <xs:annotation>
          <xs:documentation>CARMARTHENSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="670">
        <xs:annotation>
          <xs:documentation>SWANSEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="671">
        <xs:annotation>
          <xs:documentation>NEATH PORT TALBOT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="672">
        <xs:annotation>
          <xs:documentation>BRIDGEND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="673">
        <xs:annotation>
          <xs:documentation>THE VALE OF GLAMORGAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="674">
        <xs:annotation>
          <xs:documentation>RHONDDA CYNON TAFF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="675">
        <xs:annotation>
          <xs:documentation>MERTHYR TYDFIL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="676">
        <xs:annotation>
          <xs:documentation>CAERPHILLY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="677">
        <xs:annotation>
          <xs:documentation>BLAENAU GWENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="678">
        <xs:annotation>
          <xs:documentation>TORFAEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="679">
        <xs:annotation>
          <xs:documentation>MONMOUTHSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="680">
        <xs:annotation>
          <xs:documentation>NEWPORT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="681">
        <xs:annotation>
          <xs:documentation>CARDIFF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="701">
        <xs:annotation>
          <xs:documentation>SCOTLAND OFFSHORE ESTABLISHMENTS **</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="702">
        <xs:annotation>
          <xs:documentation>SERVICE CHILDREN'S EDUCATION AUTHORITY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="703">
        <xs:annotation>
          <xs:documentation>OTHER OVERSEAS SCHOOLS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="704">
        <xs:annotation>
          <xs:documentation>SHELL SCHOOLS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="705">
        <xs:annotation>
          <xs:documentation>ISLE OF MAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="706">
        <xs:annotation>
          <xs:documentation>GUERNSEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="707">
        <xs:annotation>
          <xs:documentation>JERSEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="708">
        <xs:annotation>
          <xs:documentation>GIBRALTAR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="800">
        <xs:annotation>
          <xs:documentation>BATH &amp; NORTH EAST SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="801">
        <xs:annotation>
          <xs:documentation>BRISTOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="802">
        <xs:annotation>
          <xs:documentation>NORTH SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="803">
        <xs:annotation>
          <xs:documentation>SOUTH GLOUCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="805">
        <xs:annotation>
          <xs:documentation>HARTLEPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="806">
        <xs:annotation>
          <xs:documentation>MIDDLESBROUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="807">
        <xs:annotation>
          <xs:documentation>REDCAR &amp; CLEVELAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="808">
        <xs:annotation>
          <xs:documentation>STOCKTON-ON-TEES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="810">
        <xs:annotation>
          <xs:documentation>KINGSTON-UPON-HULL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="811">
        <xs:annotation>
          <xs:documentation>EAST RIDING OF YORKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="812">
        <xs:annotation>
          <xs:documentation>NORTH EAST LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="813">
        <xs:annotation>
          <xs:documentation>NORTH LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="815">
        <xs:annotation>
          <xs:documentation>NORTH YORKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="816">
        <xs:annotation>
          <xs:documentation>YORK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="820">
        <xs:annotation>
          <xs:documentation>BEDFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="821">
        <xs:annotation>
          <xs:documentation>LUTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="825">
        <xs:annotation>
          <xs:documentation>BUCKINGHAMSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="826">
        <xs:annotation>
          <xs:documentation>MILTON KEYNES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="830">
        <xs:annotation>
          <xs:documentation>DERBYSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="831">
        <xs:annotation>
          <xs:documentation>DERBY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="835">
        <xs:annotation>
          <xs:documentation>DORSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="836">
        <xs:annotation>
          <xs:documentation>POOLE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="837">
        <xs:annotation>
          <xs:documentation>BOURNEMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="840">
        <xs:annotation>
          <xs:documentation>DURHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="841">
        <xs:annotation>
          <xs:documentation>DARLINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="845">
        <xs:annotation>
          <xs:documentation>EAST SUSSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="846">
        <xs:annotation>
          <xs:documentation>BRIGHTON &amp; HOVE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="850">
        <xs:annotation>
          <xs:documentation>HAMPSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="851">
        <xs:annotation>
          <xs:documentation>PORTSMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="852">
        <xs:annotation>
          <xs:documentation>SOUTHAMPTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="855">
        <xs:annotation>
          <xs:documentation>LEICESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="856">
        <xs:annotation>
          <xs:documentation>LEICESTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="857">
        <xs:annotation>
          <xs:documentation>RUTLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="860">
        <xs:annotation>
          <xs:documentation>STAFFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="861">
        <xs:annotation>
          <xs:documentation>STOKE-ON-TRENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="865">
        <xs:annotation>
          <xs:documentation>WILTSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="866">
        <xs:annotation>
          <xs:documentation>SWINDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="867">
        <xs:annotation>
          <xs:documentation>BRACKNELL FOREST</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="868">
        <xs:annotation>
          <xs:documentation>WINDSOR &amp; MAIDENHEAD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="869">
        <xs:annotation>
          <xs:documentation>WEST BERKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="870">
        <xs:annotation>
          <xs:documentation>READING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="871">
        <xs:annotation>
          <xs:documentation>SLOUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="872">
        <xs:annotation>
          <xs:documentation>WOKINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="873">
        <xs:annotation>
          <xs:documentation>CAMBRIDGESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="874">
        <xs:annotation>
          <xs:documentation>PETERBOROUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="875">
        <xs:annotation>
          <xs:documentation>CHESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="876">
        <xs:annotation>
          <xs:documentation>HALTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="877">
        <xs:annotation>
          <xs:documentation>WARRINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="878">
        <xs:annotation>
          <xs:documentation>DEVON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="879">
        <xs:annotation>
          <xs:documentation>PLYMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="880">
        <xs:annotation>
          <xs:documentation>TORBAY </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="881">
        <xs:annotation>
          <xs:documentation>ESSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="882">
        <xs:annotation>
          <xs:documentation>SOUTHEND-ON-SEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="883">
        <xs:annotation>
          <xs:documentation>THURROCK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="884">
        <xs:annotation>
          <xs:documentation>HEREFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="885">
        <xs:annotation>
          <xs:documentation>WORCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="886">
        <xs:annotation>
          <xs:documentation>KENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="887">
        <xs:annotation>
          <xs:documentation>MEDWAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="888">
        <xs:annotation>
          <xs:documentation>LANCASHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="889">
        <xs:annotation>
          <xs:documentation>BLACKBURN WITH DARWEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="890">
        <xs:annotation>
          <xs:documentation>BLACKPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="891">
        <xs:annotation>
          <xs:documentation>NOTTINGHAMSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="892">
        <xs:annotation>
          <xs:documentation>NOTTINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="893">
        <xs:annotation>
          <xs:documentation>SHROPSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="894">
        <xs:annotation>
          <xs:documentation>TELFORD &amp; WREKIN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="901">
        <xs:annotation>
          <xs:documentation>AVON (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="902">
        <xs:annotation>
          <xs:documentation>BEDFORDSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="903">
        <xs:annotation>
          <xs:documentation>BERKSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="904">
        <xs:annotation>
          <xs:documentation>BUCKINGHAMSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="905">
        <xs:annotation>
          <xs:documentation>CAMBRIDGESHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="906">
        <xs:annotation>
          <xs:documentation>CHESHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="907">
        <xs:annotation>
          <xs:documentation>CLEVELAND (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="908">
        <xs:annotation>
          <xs:documentation>CORNWALL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="909">
        <xs:annotation>
          <xs:documentation>CUMBRIA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="910">
        <xs:annotation>
          <xs:documentation>DERBYSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="911">
        <xs:annotation>
          <xs:documentation>DEVON (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="912">
        <xs:annotation>
          <xs:documentation>DORSET (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="913">
        <xs:annotation>
          <xs:documentation>DURHAM (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="914">
        <xs:annotation>
          <xs:documentation>EAST SUSSEX (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="915">
        <xs:annotation>
          <xs:documentation>ESSEX (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="916">
        <xs:annotation>
          <xs:documentation>GLOUCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="917">
        <xs:annotation>
          <xs:documentation>HAMPSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="918">
        <xs:annotation>
          <xs:documentation>HEREFORD AND WORCESTER (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="919">
        <xs:annotation>
          <xs:documentation>HERTFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="920">
        <xs:annotation>
          <xs:documentation>HUMBERSIDE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="921">
        <xs:annotation>
          <xs:documentation>ISLE OF WIGHT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="922">
        <xs:annotation>
          <xs:documentation>KENT (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="923">
        <xs:annotation>
          <xs:documentation>LANCASHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="924">
        <xs:annotation>
          <xs:documentation>LEICESTERSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="925">
        <xs:annotation>
          <xs:documentation>LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="926">
        <xs:annotation>
          <xs:documentation>NORFOLK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="927">
        <xs:annotation>
          <xs:documentation>NORTH YORKSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="928">
        <xs:annotation>
          <xs:documentation>NORTHAMPTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="929">
        <xs:annotation>
          <xs:documentation>NORTHUMBERLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="930">
        <xs:annotation>
          <xs:documentation>NOTTINGHAMSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="931">
        <xs:annotation>
          <xs:documentation>OXFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="932">
        <xs:annotation>
          <xs:documentation>SHROPSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="933">
        <xs:annotation>
          <xs:documentation>SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="934">
        <xs:annotation>
          <xs:documentation>STAFFORDSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="935">
        <xs:annotation>
          <xs:documentation>SUFFOLK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="936">
        <xs:annotation>
          <xs:documentation>SURREY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="937">
        <xs:annotation>
          <xs:documentation>WARWICKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="938">
        <xs:annotation>
          <xs:documentation>WEST SUSSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="939">
        <xs:annotation>
          <xs:documentation>WILTSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XXX">
        <xs:annotation>
          <xs:documentation>For CTF purposes where the LA is not known</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMM">
        <xs:annotation>
          <xs:documentation>For CTF purposes where a school has left the maintained sector</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAA">
        <xs:annotation>
          <xs:documentation>For transfer of TA and P Scales data for NAA via CTF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLANameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BELFAST EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="WESTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="NORTH EASTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="SOUTH EASTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="SOUTHERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="CITY OF LONDON" />
      <xs:enumeration value="CAMDEN" />
      <xs:enumeration value="GREENWICH" />
      <xs:enumeration value="HACKNEY" />
      <xs:enumeration value="HAMMERSMITH &amp; FULHAM" />
      <xs:enumeration value="ISLINGTON" />
      <xs:enumeration value="KENSINGTON &amp; CHELSEA" />
      <xs:enumeration value="LAMBETH" />
      <xs:enumeration value="LEWISHAM" />
      <xs:enumeration value="SOUTHWARK" />
      <xs:enumeration value="TOWER HAMLETS" />
      <xs:enumeration value="WANDSWORTH" />
      <xs:enumeration value="WESTMINSTER" />
      <xs:enumeration value="BARKING &amp; DAGENHAM" />
      <xs:enumeration value="BARNET" />
      <xs:enumeration value="BEXLEY" />
      <xs:enumeration value="BRENT" />
      <xs:enumeration value="BROMLEY" />
      <xs:enumeration value="CROYDON" />
      <xs:enumeration value="EALING" />
      <xs:enumeration value="ENFIELD" />
      <xs:enumeration value="HARINGEY" />
      <xs:enumeration value="HARROW" />
      <xs:enumeration value="HAVERING" />
      <xs:enumeration value="HILLINGDON" />
      <xs:enumeration value="HOUNSLOW" />
      <xs:enumeration value="KINGSTON UPON THAMES" />
      <xs:enumeration value="MERTON" />
      <xs:enumeration value="NEWHAM" />
      <xs:enumeration value="REDBRIDGE" />
      <xs:enumeration value="RICHMOND UPON THAMES" />
      <xs:enumeration value="SUTTON" />
      <xs:enumeration value="WALTHAM FOREST" />
      <xs:enumeration value="BIRMINGHAM" />
      <xs:enumeration value="COVENTRY" />
      <xs:enumeration value="DUDLEY" />
      <xs:enumeration value="SANDWELL" />
      <xs:enumeration value="SOLIHULL" />
      <xs:enumeration value="WALSALL" />
      <xs:enumeration value="WOLVERHAMPTON" />
      <xs:enumeration value="KNOWSLEY" />
      <xs:enumeration value="LIVERPOOL" />
      <xs:enumeration value="ST HELENS" />
      <xs:enumeration value="SEFTON" />
      <xs:enumeration value="WIRRAL" />
      <xs:enumeration value="BOLTON" />
      <xs:enumeration value="BURY" />
      <xs:enumeration value="MANCHESTER" />
      <xs:enumeration value="OLDHAM" />
      <xs:enumeration value="ROCHDALE" />
      <xs:enumeration value="SALFORD" />
      <xs:enumeration value="STOCKPORT" />
      <xs:enumeration value="TAMESIDE" />
      <xs:enumeration value="TRAFFORD" />
      <xs:enumeration value="WIGAN" />
      <xs:enumeration value="BARNSLEY" />
      <xs:enumeration value="DONCASTER" />
      <xs:enumeration value="ROTHERHAM" />
      <xs:enumeration value="SHEFFIELD" />
      <xs:enumeration value="BRADFORD" />
      <xs:enumeration value="CALDERDALE" />
      <xs:enumeration value="KIRKLEES" />
      <xs:enumeration value="LEEDS" />
      <xs:enumeration value="WAKEFIELD" />
      <xs:enumeration value="GATESHEAD" />
      <xs:enumeration value="NEWCASTLE UPON TYNE" />
      <xs:enumeration value="NORTH TYNESIDE" />
      <xs:enumeration value="SOUTH TYNESIDE" />
      <xs:enumeration value="SUNDERLAND" />
      <xs:enumeration value="ISLES OF SCILLY" />
      <xs:enumeration value="SCOTLAND" />
      <xs:enumeration value="ABERDEEN" />
      <xs:enumeration value="ABERDEENSHIRE" />
      <xs:enumeration value="ANGUS" />
      <xs:enumeration value="ARGYLL &amp; BUTE" />
      <xs:enumeration value="CLACKMANNANSHIRE" />
      <xs:enumeration value="DUMFRIES &amp; GALLOWAY" />
      <xs:enumeration value="DUNDEE" />
      <xs:enumeration value="EAST AYRSHIRE" />
      <xs:enumeration value="EAST DUNBARTONSHIRE" />
      <xs:enumeration value="EAST LOTHIAN" />
      <xs:enumeration value="EAST RENFREWSHIRE" />
      <xs:enumeration value="EDINBURGH" />
      <xs:enumeration value="EILEAN SIAR" />
      <xs:enumeration value="FALKIRK" />
      <xs:enumeration value="FIFE" />
      <xs:enumeration value="GLASGOW" />
      <xs:enumeration value="HIGHLAND" />
      <xs:enumeration value="INVERCLYDE" />
      <xs:enumeration value="MIDLOTHIAN" />
      <xs:enumeration value="MORAY" />
      <xs:enumeration value="NORTH AYRSHIRE" />
      <xs:enumeration value="NORTH LANARKSHIRE" />
      <xs:enumeration value="ORKNEY ISLANDS" />
      <xs:enumeration value="PERTH &amp; KINROSS" />
      <xs:enumeration value="RENFREWSHIRE" />
      <xs:enumeration value="SCOTTISH BORDERS" />
      <xs:enumeration value="SHETLAND ISLANDS" />
      <xs:enumeration value="SOUTH AYRSHIRE" />
      <xs:enumeration value="SOUTH LANARKSHIRE" />
      <xs:enumeration value="STIRLING" />
      <xs:enumeration value="WEST DUNBARTONSHIRE" />
      <xs:enumeration value="WEST LOTHIAN" />
      <xs:enumeration value="WESTERN ISLES" />
      <xs:enumeration value="ISLE OF ANGLESEY" />
      <xs:enumeration value="GWYNEDD" />
      <xs:enumeration value="CONWY" />
      <xs:enumeration value="DENBIGHSHIRE" />
      <xs:enumeration value="FLINTSHIRE" />
      <xs:enumeration value="WREXHAM" />
      <xs:enumeration value="POWYS" />
      <xs:enumeration value="CEREDIGION" />
      <xs:enumeration value="PEMBROKESHIRE" />
      <xs:enumeration value="CARMARTHENSHIRE" />
      <xs:enumeration value="SWANSEA" />
      <xs:enumeration value="NEATH PORT TALBOT" />
      <xs:enumeration value="BRIDGEND" />
      <xs:enumeration value="THE VALE OF GLAMORGAN" />
      <xs:enumeration value="RHONDDA CYNON TAFF" />
      <xs:enumeration value="MERTHYR TYDFIL" />
      <xs:enumeration value="CAERPHILLY" />
      <xs:enumeration value="BLAENAU GWENT" />
      <xs:enumeration value="TORFAEN" />
      <xs:enumeration value="MONMOUTHSHIRE" />
      <xs:enumeration value="NEWPORT" />
      <xs:enumeration value="CARDIFF" />
      <xs:enumeration value="SCOTLAND OFFSHORE ESTABLISHMENTS **" />
      <xs:enumeration value="SERVICE CHILDREN'S EDUCATION AUTHORITY" />
      <xs:enumeration value="OTHER OVERSEAS SCHOOLS" />
      <xs:enumeration value="SHELL SCHOOLS" />
      <xs:enumeration value="ISLE OF MAN" />
      <xs:enumeration value="GUERNSEY" />
      <xs:enumeration value="JERSEY" />
      <xs:enumeration value="GIBRALTAR" />
      <xs:enumeration value="BATH &amp; NORTH EAST SOMERSET" />
      <xs:enumeration value="BRISTOL" />
      <xs:enumeration value="NORTH SOMERSET" />
      <xs:enumeration value="SOUTH GLOUCESTERSHIRE" />
      <xs:enumeration value="HARTLEPOOL" />
      <xs:enumeration value="MIDDLESBROUGH" />
      <xs:enumeration value="REDCAR &amp; CLEVELAND" />
      <xs:enumeration value="STOCKTON-ON-TEES" />
      <xs:enumeration value="KINGSTON-UPON-HULL" />
      <xs:enumeration value="EAST RIDING OF YORKSHIRE" />
      <xs:enumeration value="NORTH EAST LINCOLNSHIRE" />
      <xs:enumeration value="NORTH LINCOLNSHIRE" />
      <xs:enumeration value="NORTH YORKSHIRE" />
      <xs:enumeration value="YORK" />
      <xs:enumeration value="BEDFORDSHIRE" />
      <xs:enumeration value="LUTON" />
      <xs:enumeration value="BUCKINGHAMSHIRE" />
      <xs:enumeration value="MILTON KEYNES" />
      <xs:enumeration value="DERBYSHIRE" />
      <xs:enumeration value="DERBY" />
      <xs:enumeration value="DORSET" />
      <xs:enumeration value="POOLE" />
      <xs:enumeration value="BOURNEMOUTH" />
      <xs:enumeration value="DURHAM" />
      <xs:enumeration value="DARLINGTON" />
      <xs:enumeration value="EAST SUSSEX" />
      <xs:enumeration value="BRIGHTON &amp; HOVE" />
      <xs:enumeration value="HAMPSHIRE" />
      <xs:enumeration value="PORTSMOUTH" />
      <xs:enumeration value="SOUTHAMPTON" />
      <xs:enumeration value="LEICESTERSHIRE" />
      <xs:enumeration value="LEICESTER" />
      <xs:enumeration value="RUTLAND" />
      <xs:enumeration value="STAFFORDSHIRE" />
      <xs:enumeration value="STOKE-ON-TRENT" />
      <xs:enumeration value="WILTSHIRE" />
      <xs:enumeration value="SWINDON" />
      <xs:enumeration value="BRACKNELL FOREST" />
      <xs:enumeration value="WINDSOR &amp; MAIDENHEAD" />
      <xs:enumeration value="WEST BERKSHIRE" />
      <xs:enumeration value="READING" />
      <xs:enumeration value="SLOUGH" />
      <xs:enumeration value="WOKINGHAM" />
      <xs:enumeration value="CAMBRIDGESHIRE" />
      <xs:enumeration value="PETERBOROUGH" />
      <xs:enumeration value="CHESHIRE" />
      <xs:enumeration value="HALTON" />
      <xs:enumeration value="WARRINGTON" />
      <xs:enumeration value="DEVON" />
      <xs:enumeration value="PLYMOUTH" />
      <xs:enumeration value="TORBAY" />
      <xs:enumeration value="ESSEX" />
      <xs:enumeration value="SOUTHEND-ON-SEA" />
      <xs:enumeration value="THURROCK" />
      <xs:enumeration value="HEREFORDSHIRE" />
      <xs:enumeration value="WORCESTERSHIRE" />
      <xs:enumeration value="KENT" />
      <xs:enumeration value="MEDWAY" />
      <xs:enumeration value="LANCASHIRE" />
      <xs:enumeration value="BLACKBURN WITH DARWEN" />
      <xs:enumeration value="BLACKPOOL" />
      <xs:enumeration value="NOTTINGHAMSHIRE" />
      <xs:enumeration value="NOTTINGHAM" />
      <xs:enumeration value="SHROPSHIRE" />
      <xs:enumeration value="TELFORD &amp; WREKIN" />
      <xs:enumeration value="AVON (PRE LGR)" />
      <xs:enumeration value="BEDFORDSHIRE (PRE LGR)" />
      <xs:enumeration value="BERKSHIRE (PRE LGR)" />
      <xs:enumeration value="BUCKINGHAMSHIRE (PRE LGR)" />
      <xs:enumeration value="CAMBRIDGESHIRE (PRE LGR)" />
      <xs:enumeration value="CHESHIRE (PRE LGR)" />
      <xs:enumeration value="CLEVELAND (PRE LGR)" />
      <xs:enumeration value="CORNWALL" />
      <xs:enumeration value="CUMBRIA" />
      <xs:enumeration value="DERBYSHIRE (PRE LGR)" />
      <xs:enumeration value="DEVON (PRE LGR)" />
      <xs:enumeration value="DORSET (PRE LGR)" />
      <xs:enumeration value="DURHAM (PRE LGR)" />
      <xs:enumeration value="EAST SUSSEX (PRE LGR)" />
      <xs:enumeration value="ESSEX (PRE LGR)" />
      <xs:enumeration value="GLOUCESTERSHIRE" />
      <xs:enumeration value="HAMPSHIRE (PRE LGR)" />
      <xs:enumeration value="HEREFORD AND WORCESTER (PRE LGR)" />
      <xs:enumeration value="HERTFORDSHIRE" />
      <xs:enumeration value="HUMBERSIDE (PRE LGR)" />
      <xs:enumeration value="ISLE OF WIGHT" />
      <xs:enumeration value="KENT (PRE LGR)" />
      <xs:enumeration value="LANCASHIRE (PRE LGR)" />
      <xs:enumeration value="LEICESTERSHIRE (PRE LGR)" />
      <xs:enumeration value="LINCOLNSHIRE" />
      <xs:enumeration value="NORFOLK" />
      <xs:enumeration value="NORTH YORKSHIRE (PRE LGR)" />
      <xs:enumeration value="NORTHAMPTONSHIRE" />
      <xs:enumeration value="NORTHUMBERLAND" />
      <xs:enumeration value="NOTTINGHAMSHIRE (PRE LGR)" />
      <xs:enumeration value="OXFORDSHIRE" />
      <xs:enumeration value="SHROPSHIRE (PRE LGR)" />
      <xs:enumeration value="SOMERSET" />
      <xs:enumeration value="STAFFORDSHIRE (PRE LGR)" />
      <xs:enumeration value="SUFFOLK" />
      <xs:enumeration value="SURREY" />
      <xs:enumeration value="WARWICKSHIRE" />
      <xs:enumeration value="WEST SUSSEX" />
      <xs:enumeration value="WILTSHIRE (PRE LGR)" />
      <xs:enumeration value="For CTF purposes where the LA is not known" />
      <xs:enumeration value="For CTF purposes where a school has left the maintained sector" />
      <xs:enumeration value="For transfer of TA and P Scales data for NAA via CTF" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLanguagesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ACL">
        <xs:annotation>
          <xs:documentation>Acholi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADA">
        <xs:annotation>
          <xs:documentation>Adangme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFA">
        <xs:annotation>
          <xs:documentation>Afar-Saho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFK">
        <xs:annotation>
          <xs:documentation>Afrikaans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKA">
        <xs:annotation>
          <xs:documentation>Akan/Twi-Fante</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAF">
        <xs:annotation>
          <xs:documentation>Akan (Fante)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAT">
        <xs:annotation>
          <xs:documentation>Akan (Twi/Asante)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALB">
        <xs:annotation>
          <xs:documentation>Albanian/Shqip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALU">
        <xs:annotation>
          <xs:documentation>Alur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMR">
        <xs:annotation>
          <xs:documentation>Amharic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARA">
        <xs:annotation>
          <xs:documentation>Arabic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAA">
        <xs:annotation>
          <xs:documentation>Arabic (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAG">
        <xs:annotation>
          <xs:documentation>Arabic (Algeria)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAI">
        <xs:annotation>
          <xs:documentation>Arabic (Iraq)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAM">
        <xs:annotation>
          <xs:documentation>Arabic (Morocco)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAS">
        <xs:annotation>
          <xs:documentation>Arabic (Sudan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAY">
        <xs:annotation>
          <xs:documentation>Arabic (Yemen)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARM">
        <xs:annotation>
          <xs:documentation>Armenian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASM">
        <xs:annotation>
          <xs:documentation>Assamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASR">
        <xs:annotation>
          <xs:documentation>Assyrian/Aramaic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AYB">
        <xs:annotation>
          <xs:documentation>Anyi-Baule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AYM">
        <xs:annotation>
          <xs:documentation>Aymara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZE">
        <xs:annotation>
          <xs:documentation>Azeri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAI">
        <xs:annotation>
          <xs:documentation>Bamileke (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAL">
        <xs:annotation>
          <xs:documentation>Balochi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEJ">
        <xs:annotation>
          <xs:documentation>Beja/Bedawi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEL">
        <xs:annotation>
          <xs:documentation>Belarusian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEM">
        <xs:annotation>
          <xs:documentation>Bemba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHO">
        <xs:annotation>
          <xs:documentation>Bhojpuri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIK">
        <xs:annotation>
          <xs:documentation>Bikol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLT">
        <xs:annotation>
          <xs:documentation>Balti Tibetan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMA">
        <xs:annotation>
          <xs:documentation>Burmese/Myanma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNG">
        <xs:annotation>
          <xs:documentation>Bengali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGA">
        <xs:annotation>
          <xs:documentation>Bengali (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGC">
        <xs:annotation>
          <xs:documentation>Bengali (Chittagong/Noakhali)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGS">
        <xs:annotation>
          <xs:documentation>Bengali (Sylheti)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSL">
        <xs:annotation>
          <xs:documentation>British Sign Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSQ">
        <xs:annotation>
          <xs:documentation>Basque/Euskara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUL">
        <xs:annotation>
          <xs:documentation>Bulgarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAM">
        <xs:annotation>
          <xs:documentation>Cambodian/Khmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAT">
        <xs:annotation>
          <xs:documentation>Catalan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCE">
        <xs:annotation>
          <xs:documentation>Caribbean Creole English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCF">
        <xs:annotation>
          <xs:documentation>Caribbean Creole French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CGA">
        <xs:annotation>
          <xs:documentation>Chaga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CGR">
        <xs:annotation>
          <xs:documentation>Chattisgarhi/Khatahi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Chechen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIA">
        <xs:annotation>
          <xs:documentation>Chinese (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIC">
        <xs:annotation>
          <xs:documentation>Chinese (Cantonese)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIH">
        <xs:annotation>
          <xs:documentation>Chinese (Hokkien/Fujianese)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIK">
        <xs:annotation>
          <xs:documentation>Chinese (Hakka)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIM">
        <xs:annotation>
          <xs:documentation>Chinese (Mandarin/Putonghua)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CKW">
        <xs:annotation>
          <xs:documentation>Chokwe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRN">
        <xs:annotation>
          <xs:documentation>Cornish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTR">
        <xs:annotation>
          <xs:documentation>Chitrali/Khowar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CWA">
        <xs:annotation>
          <xs:documentation>Chichewa/Nyanja</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Welsh/Cymraeg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZE">
        <xs:annotation>
          <xs:documentation>Czech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAN">
        <xs:annotation>
          <xs:documentation>Danish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DGA">
        <xs:annotation>
          <xs:documentation>Dagaare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DGB">
        <xs:annotation>
          <xs:documentation>Dagbane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DIN">
        <xs:annotation>
          <xs:documentation>Dinka/Jieng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUT">
        <xs:annotation>
          <xs:documentation>Dutch/Flemish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZO">
        <xs:annotation>
          <xs:documentation>Dzongkha/Bhutanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EBI">
        <xs:annotation>
          <xs:documentation>Ebira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDO">
        <xs:annotation>
          <xs:documentation>Edo/Bini</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EFI">
        <xs:annotation>
          <xs:documentation>Efik-Ibibio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENB">
        <xs:annotation>
          <xs:documentation>Believed to be English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESA">
        <xs:annotation>
          <xs:documentation>Esan/Ishan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EST">
        <xs:annotation>
          <xs:documentation>Estonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EWE">
        <xs:annotation>
          <xs:documentation>Ewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EWO">
        <xs:annotation>
          <xs:documentation>Ewondo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAN">
        <xs:annotation>
          <xs:documentation>Fang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIJ">
        <xs:annotation>
          <xs:documentation>Fijian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finnish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FON">
        <xs:annotation>
          <xs:documentation>Fon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRN">
        <xs:annotation>
          <xs:documentation>French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FUL">
        <xs:annotation>
          <xs:documentation>Fula/Fulfulde-Pulaar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAA">
        <xs:annotation>
          <xs:documentation>Ga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAE">
        <xs:annotation>
          <xs:documentation>Gaelic/Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAL">
        <xs:annotation>
          <xs:documentation>Gaelic (Scotland)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Georgian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GER">
        <xs:annotation>
          <xs:documentation>German</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GGO">
        <xs:annotation>
          <xs:documentation>Gogo/Chigogo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GKY">
        <xs:annotation>
          <xs:documentation>Kikuyu/Gikuyu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLG">
        <xs:annotation>
          <xs:documentation>Galician/Galego</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRE">
        <xs:annotation>
          <xs:documentation>Greek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GREA">
        <xs:annotation>
          <xs:documentation>Greek (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GREC">
        <xs:annotation>
          <xs:documentation>Greek (Cyprus)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRN">
        <xs:annotation>
          <xs:documentation>Guarani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUJ">
        <xs:annotation>
          <xs:documentation>Gujarati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUN">
        <xs:annotation>
          <xs:documentation>Gurenne/Frafra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUR">
        <xs:annotation>
          <xs:documentation>Gurma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAU">
        <xs:annotation>
          <xs:documentation>Hausa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDK">
        <xs:annotation>
          <xs:documentation>Hindko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEB">
        <xs:annotation>
          <xs:documentation>Hebrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Herero</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HGR">
        <xs:annotation>
          <xs:documentation>Hungarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIN">
        <xs:annotation>
          <xs:documentation>Hindi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IBA">
        <xs:annotation>
          <xs:documentation>Iban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDM">
        <xs:annotation>
          <xs:documentation>Idoma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IGA">
        <xs:annotation>
          <xs:documentation>Igala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IGB">
        <xs:annotation>
          <xs:documentation>Igbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IJO">
        <xs:annotation>
          <xs:documentation>Ijo (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ILO">
        <xs:annotation>
          <xs:documentation>Ilokano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISK">
        <xs:annotation>
          <xs:documentation>Itsekiri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISL">
        <xs:annotation>
          <xs:documentation>Icelandic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAA">
        <xs:annotation>
          <xs:documentation>Italian (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAN">
        <xs:annotation>
          <xs:documentation>Italian (Napoletan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAS">
        <xs:annotation>
          <xs:documentation>Italian (Sicilian)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAV">
        <xs:annotation>
          <xs:documentation>Javanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JIN">
        <xs:annotation>
          <xs:documentation>Jinghpaw/Kachin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPN">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAM">
        <xs:annotation>
          <xs:documentation>Kikamba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAN">
        <xs:annotation>
          <xs:documentation>Kannada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAR">
        <xs:annotation>
          <xs:documentation>Karen (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAS">
        <xs:annotation>
          <xs:documentation>Kashmiri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAU">
        <xs:annotation>
          <xs:documentation>Kanuri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAZ">
        <xs:annotation>
          <xs:documentation>Kazakh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KCH">
        <xs:annotation>
          <xs:documentation>Katchi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGZ">
        <xs:annotation>
          <xs:documentation>Kirghiz/Kyrgyz</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHA">
        <xs:annotation>
          <xs:documentation>Khasi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHY">
        <xs:annotation>
          <xs:documentation>Kihaya/Luziba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIN">
        <xs:annotation>
          <xs:documentation>Kinyarwanda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIR">
        <xs:annotation>
          <xs:documentation>Kirundi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIS">
        <xs:annotation>
          <xs:documentation>Kisi (West Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KLN">
        <xs:annotation>
          <xs:documentation>Kalenjin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KMB">
        <xs:annotation>
          <xs:documentation>Kimbundu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KME">
        <xs:annotation>
          <xs:documentation>Kimeru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNK">
        <xs:annotation>
          <xs:documentation>Konkani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNY">
        <xs:annotation>
          <xs:documentation>Kinyakyusa-Ngonde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KON">
        <xs:annotation>
          <xs:documentation>Kikongo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KOR">
        <xs:annotation>
          <xs:documentation>Korean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KPE">
        <xs:annotation>
          <xs:documentation>Kpelle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRI">
        <xs:annotation>
          <xs:documentation>Krio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRU">
        <xs:annotation>
          <xs:documentation>Kru (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSI">
        <xs:annotation>
          <xs:documentation>Kisii/Ekegusii (Kenya)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSU">
        <xs:annotation>
          <xs:documentation>Kisukuma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KUR">
        <xs:annotation>
          <xs:documentation>Kurdish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURA">
        <xs:annotation>
          <xs:documentation>Kurdish (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURM">
        <xs:annotation>
          <xs:documentation>Kurdish (Kurmanji)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURS">
        <xs:annotation>
          <xs:documentation>Kurdish (Sorani)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAO">
        <xs:annotation>
          <xs:documentation>Lao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBA">
        <xs:annotation>
          <xs:documentation>Luba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBAC">
        <xs:annotation>
          <xs:documentation>Luba (Chiluba/Tshiluba)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBAK">
        <xs:annotation>
          <xs:documentation>Luba (Kiluba)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGA">
        <xs:annotation>
          <xs:documentation>Luganda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGB">
        <xs:annotation>
          <xs:documentation>Lugbara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGS">
        <xs:annotation>
          <xs:documentation>Lugisu/Lumasaba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Lingala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIT">
        <xs:annotation>
          <xs:documentation>Lithuanian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LNG">
        <xs:annotation>
          <xs:documentation>Lango (Uganda)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOZ">
        <xs:annotation>
          <xs:documentation>Lozi/Silozi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSO">
        <xs:annotation>
          <xs:documentation>Lusoga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTV">
        <xs:annotation>
          <xs:documentation>Latvian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTZ">
        <xs:annotation>
          <xs:documentation>Luxemburgish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUE">
        <xs:annotation>
          <xs:documentation>Luvale/Luena</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUN">
        <xs:annotation>
          <xs:documentation>Lunda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUO">
        <xs:annotation>
          <xs:documentation>Luo (Kenya/Tanzania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUY">
        <xs:annotation>
          <xs:documentation>Luhya (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAG">
        <xs:annotation>
          <xs:documentation>Magahi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAI">
        <xs:annotation>
          <xs:documentation>Maithili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAK">
        <xs:annotation>
          <xs:documentation>Makua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAN">
        <xs:annotation>
          <xs:documentation>Manding/Malinke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANA">
        <xs:annotation>
          <xs:documentation>Manding/Malinke (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANB">
        <xs:annotation>
          <xs:documentation>Bambara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANJ">
        <xs:annotation>
          <xs:documentation>Dyula/Jula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAO">
        <xs:annotation>
          <xs:documentation>Maori</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAR">
        <xs:annotation>
          <xs:documentation>Marathi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAS">
        <xs:annotation>
          <xs:documentation>Maasai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDV">
        <xs:annotation>
          <xs:documentation>Maldivian/Dhivehi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEN">
        <xs:annotation>
          <xs:documentation>Mende</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Macedonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLG">
        <xs:annotation>
          <xs:documentation>Malagasy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLM">
        <xs:annotation>
          <xs:documentation>Malayalam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLT">
        <xs:annotation>
          <xs:documentation>Maltese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLY">
        <xs:annotation>
          <xs:documentation>Malay/Indonesian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLYA">
        <xs:annotation>
          <xs:documentation>Malay (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLYI">
        <xs:annotation>
          <xs:documentation>Indonesian/Bahasa Indonesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNA">
        <xs:annotation>
          <xs:documentation>Magindanao-Maranao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNG">
        <xs:annotation>
          <xs:documentation>Mongolian (Khalkha)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNX">
        <xs:annotation>
          <xs:documentation>Manx Gaelic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOR">
        <xs:annotation>
          <xs:documentation>Moore/Mossi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSC">
        <xs:annotation>
          <xs:documentation>Mauritian/Seychelles Creole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUN">
        <xs:annotation>
          <xs:documentation>Munda (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYA">
        <xs:annotation>
          <xs:documentation>Maya (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAH">
        <xs:annotation>
          <xs:documentation>Nahuatl/Mexicano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAM">
        <xs:annotation>
          <xs:documentation>Nama/Damara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NBN">
        <xs:annotation>
          <xs:documentation>Nubian (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDB">
        <xs:annotation>
          <xs:documentation>Ndebele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDBS">
        <xs:annotation>
          <xs:documentation>Ndebele (South Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDBZ">
        <xs:annotation>
          <xs:documentation>Ndebele (Zimbabwe)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NEP">
        <xs:annotation>
          <xs:documentation>Nepali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norwegian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Information not obtained*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NUE">
        <xs:annotation>
          <xs:documentation>Nuer/Naadh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NUP">
        <xs:annotation>
          <xs:documentation>Nupe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NWA">
        <xs:annotation>
          <xs:documentation>Newari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZM">
        <xs:annotation>
          <xs:documentation>Nzema</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAM">
        <xs:annotation>
          <xs:documentation>Ambo/Oshiwambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAMK">
        <xs:annotation>
          <xs:documentation>Ambo (Kwanyama)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAMN">
        <xs:annotation>
          <xs:documentation>Ambo (Ndonga)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OGN">
        <xs:annotation>
          <xs:documentation>Ogoni (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ORI">
        <xs:annotation>
          <xs:documentation>Oriya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ORM">
        <xs:annotation>
          <xs:documentation>Oromo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTB">
        <xs:annotation>
          <xs:documentation>Believed to be Other than English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other than English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTL">
        <xs:annotation>
          <xs:documentation>Other Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAG">
        <xs:annotation>
          <xs:documentation>Pangasinan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAM">
        <xs:annotation>
          <xs:documentation>Pampangan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAT">
        <xs:annotation>
          <xs:documentation>Pashto/Pakhto</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHA">
        <xs:annotation>
          <xs:documentation>Pahari/Himachali (India)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHR">
        <xs:annotation>
          <xs:documentation>Pahari (Pakistan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJ">
        <xs:annotation>
          <xs:documentation>Panjabi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJA">
        <xs:annotation>
          <xs:documentation>Panjabi (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJG">
        <xs:annotation>
          <xs:documentation>Panjabi (Gurmukhi)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJM">
        <xs:annotation>
          <xs:documentation>Panjabi (Mirpuri)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJP">
        <xs:annotation>
          <xs:documentation>Panjabi (Pothwari)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POL">
        <xs:annotation>
          <xs:documentation>Polish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PORA">
        <xs:annotation>
          <xs:documentation>Portuguese (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PORB">
        <xs:annotation>
          <xs:documentation>Portuguese (Brazil)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRS">
        <xs:annotation>
          <xs:documentation>Persian/Farsi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRSA">
        <xs:annotation>
          <xs:documentation>Farsi/Persian (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRSD">
        <xs:annotation>
          <xs:documentation>Dari Persian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRST">
        <xs:annotation>
          <xs:documentation>Tajiki Persian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QUE">
        <xs:annotation>
          <xs:documentation>Quechua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RAJ">
        <xs:annotation>
          <xs:documentation>Rajasthani/Marwari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REF">
        <xs:annotation>
          <xs:documentation>Refused*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RME">
        <xs:annotation>
          <xs:documentation>Romany/English Romanes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMI">
        <xs:annotation>
          <xs:documentation>Romani (International)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMN">
        <xs:annotation>
          <xs:documentation>Romanian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMNM">
        <xs:annotation>
          <xs:documentation>Romanian (Moldova)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMNR">
        <xs:annotation>
          <xs:documentation>Romanian (Romania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMS">
        <xs:annotation>
          <xs:documentation>Romansch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNY">
        <xs:annotation>
          <xs:documentation>Runyakitara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNYN">
        <xs:annotation>
          <xs:documentation>Runyankore-Ruchiga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNYO">
        <xs:annotation>
          <xs:documentation>Runyoro-Rutooro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAM">
        <xs:annotation>
          <xs:documentation>Samoan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCB">
        <xs:annotation>
          <xs:documentation>Serbian/Croatian/Bosnian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBB">
        <xs:annotation>
          <xs:documentation>Bosnian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBC">
        <xs:annotation>
          <xs:documentation>Croatian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBS">
        <xs:annotation>
          <xs:documentation>Serbian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCO">
        <xs:annotation>
          <xs:documentation>Scots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHL">
        <xs:annotation>
          <xs:documentation>Shilluk/Cholo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHO">
        <xs:annotation>
          <xs:documentation>Shona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SID">
        <xs:annotation>
          <xs:documentation>Sidamo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIO">
        <xs:annotation>
          <xs:documentation>Sign Language (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLO">
        <xs:annotation>
          <xs:documentation>Slovak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLV">
        <xs:annotation>
          <xs:documentation>Slovenian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SND">
        <xs:annotation>
          <xs:documentation>Sindhi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNG">
        <xs:annotation>
          <xs:documentation>Sango</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNH">
        <xs:annotation>
          <xs:documentation>Sinhala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPA">
        <xs:annotation>
          <xs:documentation>Spanish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRD">
        <xs:annotation>
          <xs:documentation>Sardinian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRK">
        <xs:annotation>
          <xs:documentation>Siraiki</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSO">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSOO">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho (Southern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSOT">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho (Northern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSW">
        <xs:annotation>
          <xs:documentation>Swazi/Siswati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STS">
        <xs:annotation>
          <xs:documentation>Tswana/Setswana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUN">
        <xs:annotation>
          <xs:documentation>Sundanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWA">
        <xs:annotation>
          <xs:documentation>Swahili/Kiswahili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAA">
        <xs:annotation>
          <xs:documentation>Swahili (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAC">
        <xs:annotation>
          <xs:documentation>Comorian Swahili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAK">
        <xs:annotation>
          <xs:documentation>Swahili (Kingwana)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAM">
        <xs:annotation>
          <xs:documentation>Swahili (Brava/Mwiini)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAT">
        <xs:annotation>
          <xs:documentation>Swahili (Bajuni/Tikuu)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Swedish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TAM">
        <xs:annotation>
          <xs:documentation>Tamil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEL">
        <xs:annotation>
          <xs:documentation>Telugu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEM">
        <xs:annotation>
          <xs:documentation>Temne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TES">
        <xs:annotation>
          <xs:documentation>Teso/Ateso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGE">
        <xs:annotation>
          <xs:documentation>Tigre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGL">
        <xs:annotation>
          <xs:documentation>Tagalog/Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGLF">
        <xs:annotation>
          <xs:documentation>Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGLG">
        <xs:annotation>
          <xs:documentation>Tagalog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGR">
        <xs:annotation>
          <xs:documentation>Tigrinya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THA">
        <xs:annotation>
          <xs:documentation>Thai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TIB">
        <xs:annotation>
          <xs:documentation>Tibetan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TIV">
        <xs:annotation>
          <xs:documentation>Tiv</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZ">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZA">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZK">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight (Kabyle)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZT">
        <xs:annotation>
          <xs:documentation>Berber (Tamashek)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TNG">
        <xs:annotation>
          <xs:documentation>Tonga/Chitonga (Zambia)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TON">
        <xs:annotation>
          <xs:documentation>Tongan (Oceania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TPI">
        <xs:annotation>
          <xs:documentation>Tok Pisin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRI">
        <xs:annotation>
          <xs:documentation>Traveller Irish/Shelta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TSO">
        <xs:annotation>
          <xs:documentation>Tsonga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUK">
        <xs:annotation>
          <xs:documentation>Turkmen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUL">
        <xs:annotation>
          <xs:documentation>Tulu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUM">
        <xs:annotation>
          <xs:documentation>Tumbuka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukrainian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UMB">
        <xs:annotation>
          <xs:documentation>Umbundu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URD">
        <xs:annotation>
          <xs:documentation>Urdu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URH">
        <xs:annotation>
          <xs:documentation>Urhobo-Isoko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UYG">
        <xs:annotation>
          <xs:documentation>Uyghur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZB">
        <xs:annotation>
          <xs:documentation>Uzbek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEN">
        <xs:annotation>
          <xs:documentation>Venda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VIE">
        <xs:annotation>
          <xs:documentation>Vietnamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSY">
        <xs:annotation>
          <xs:documentation>Visayan/Bisaya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYA">
        <xs:annotation>
          <xs:documentation>Visayan/Bisaya (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYH">
        <xs:annotation>
          <xs:documentation>Hiligaynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYS">
        <xs:annotation>
          <xs:documentation>Cebuano/Sugbuanon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYW">
        <xs:annotation>
          <xs:documentation>Waray/Binisaya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAP">
        <xs:annotation>
          <xs:documentation>Wa-Paraok (South-East Asia)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WCP">
        <xs:annotation>
          <xs:documentation>West-African Creole Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOL">
        <xs:annotation>
          <xs:documentation>Wolof</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WPE">
        <xs:annotation>
          <xs:documentation>West-African Pidgin English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XHO">
        <xs:annotation>
          <xs:documentation>Xhosa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YAO">
        <xs:annotation>
          <xs:documentation>Yao/Chiyao (East Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YDI">
        <xs:annotation>
          <xs:documentation>Yiddish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YOR">
        <xs:annotation>
          <xs:documentation>Yoruba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZND">
        <xs:annotation>
          <xs:documentation>Zande</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZUL">
        <xs:annotation>
          <xs:documentation>Zulu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZZZ">
        <xs:annotation>
          <xs:documentation>Classification Pending</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLearningAndSkillsCouncilAreaCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BAL">
        <xs:annotation>
          <xs:documentation>Bedfordshire and Luton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BER">
        <xs:annotation>
          <xs:documentation>Berkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIS">
        <xs:annotation>
          <xs:documentation>Birmingham and Solihull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDP">
        <xs:annotation>
          <xs:documentation>Bournemouth, Dorset and Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAM">
        <xs:annotation>
          <xs:documentation>Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHW">
        <xs:annotation>
          <xs:documentation>Cheshire and Warrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDU">
        <xs:annotation>
          <xs:documentation>County Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COW">
        <xs:annotation>
          <xs:documentation>Coventry and Warwickshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUM">
        <xs:annotation>
          <xs:documentation>Cumbria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DER">
        <xs:annotation>
          <xs:documentation>Derbyshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEC">
        <xs:annotation>
          <xs:documentation>Devon and Cornwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESS">
        <xs:annotation>
          <xs:documentation>Essex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLO">
        <xs:annotation>
          <xs:documentation>Gloucestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMA">
        <xs:annotation>
          <xs:documentation>Greater Manchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GME">
        <xs:annotation>
          <xs:documentation>Greater Merseyside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIW">
        <xs:annotation>
          <xs:documentation>Hampshire and Isle of Wight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEW">
        <xs:annotation>
          <xs:documentation>Herefordshire and Worcestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Hertfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUM">
        <xs:annotation>
          <xs:documentation>Humberside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KEM">
        <xs:annotation>
          <xs:documentation>Kent and Medway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAN">
        <xs:annotation>
          <xs:documentation>Lancashire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEI">
        <xs:annotation>
          <xs:documentation>Leicestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIR">
        <xs:annotation>
          <xs:documentation>Lincolnshire and Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOC">
        <xs:annotation>
          <xs:documentation>London - Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOE">
        <xs:annotation>
          <xs:documentation>London - East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LON">
        <xs:annotation>
          <xs:documentation>London - North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOS">
        <xs:annotation>
          <xs:documentation>London - South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOW">
        <xs:annotation>
          <xs:documentation>London - West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSC">
        <xs:annotation>
          <xs:documentation>National LSC (NCS)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOB">
        <xs:annotation>
          <xs:documentation>Milton Keynes, Oxfordshire and Buckinghamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOY">
        <xs:annotation>
          <xs:documentation>North Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOA">
        <xs:annotation>
          <xs:documentation>Northamptonshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOU">
        <xs:annotation>
          <xs:documentation>Northumberland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Nottinghamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHR">
        <xs:annotation>
          <xs:documentation>Shropshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somerset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOY">
        <xs:annotation>
          <xs:documentation>South Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>Staffordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUF">
        <xs:annotation>
          <xs:documentation>Suffolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUR">
        <xs:annotation>
          <xs:documentation>Surrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUS">
        <xs:annotation>
          <xs:documentation>Sussex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEV">
        <xs:annotation>
          <xs:documentation>Tees Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TBC">
        <xs:annotation>
          <xs:documentation>The Black Country</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TYW">
        <xs:annotation>
          <xs:documentation>Tyne and Wear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEE">
        <xs:annotation>
          <xs:documentation>West of England</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEY">
        <xs:annotation>
          <xs:documentation>West Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIS">
        <xs:annotation>
          <xs:documentation>Wiltshire and Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetNationStatesAndCountriesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AFG">
        <xs:annotation>
          <xs:documentation>Afghanistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALA">
        <xs:annotation>
          <xs:documentation>Aland Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALB">
        <xs:annotation>
          <xs:documentation>Albania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZA">
        <xs:annotation>
          <xs:documentation>Algeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASM">
        <xs:annotation>
          <xs:documentation>American Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AND">
        <xs:annotation>
          <xs:documentation>Andorra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AGO">
        <xs:annotation>
          <xs:documentation>Angola</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIA">
        <xs:annotation>
          <xs:documentation>Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATA">
        <xs:annotation>
          <xs:documentation>Antarctica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATG">
        <xs:annotation>
          <xs:documentation>Antigua and Barbuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARG">
        <xs:annotation>
          <xs:documentation>Argentina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARM">
        <xs:annotation>
          <xs:documentation>Armenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABW">
        <xs:annotation>
          <xs:documentation>Aruba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUS">
        <xs:annotation>
          <xs:documentation>Australia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUT">
        <xs:annotation>
          <xs:documentation>Austria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZE">
        <xs:annotation>
          <xs:documentation>Azerbaijan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHS">
        <xs:annotation>
          <xs:documentation>Bahamas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHR">
        <xs:annotation>
          <xs:documentation>Bahrain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGD">
        <xs:annotation>
          <xs:documentation>Bangladesh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRB">
        <xs:annotation>
          <xs:documentation>Barbados</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLR">
        <xs:annotation>
          <xs:documentation>Belarus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEL">
        <xs:annotation>
          <xs:documentation>Belgium</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLZ">
        <xs:annotation>
          <xs:documentation>Belize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEN">
        <xs:annotation>
          <xs:documentation>Benin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMU">
        <xs:annotation>
          <xs:documentation>Bermuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BTN">
        <xs:annotation>
          <xs:documentation>Bhutan </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOL">
        <xs:annotation>
          <xs:documentation>Bolivia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIH">
        <xs:annotation>
          <xs:documentation>Bosnia and Herzegovina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BWA">
        <xs:annotation>
          <xs:documentation>Botswana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BVT">
        <xs:annotation>
          <xs:documentation>Bouvet Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRA">
        <xs:annotation>
          <xs:documentation>Brazil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATB">
        <xs:annotation>
          <xs:documentation>British Antarctic Territory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IOT">
        <xs:annotation>
          <xs:documentation>British Indian Ocean Territory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRN">
        <xs:annotation>
          <xs:documentation>Brunei</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGR">
        <xs:annotation>
          <xs:documentation>Bulgaria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BFA">
        <xs:annotation>
          <xs:documentation>Burkina Faso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUR">
        <xs:annotation>
          <xs:documentation>Burma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDI">
        <xs:annotation>
          <xs:documentation>Burundi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BYS">
        <xs:annotation>
          <xs:documentation>Byelorussian SSR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHM">
        <xs:annotation>
          <xs:documentation>Cambodia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CMR">
        <xs:annotation>
          <xs:documentation>Cameroon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAN">
        <xs:annotation>
          <xs:documentation>Canada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTE">
        <xs:annotation>
          <xs:documentation>Canton and Enderbury Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CPV">
        <xs:annotation>
          <xs:documentation>Cape Verde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Cayman Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAF">
        <xs:annotation>
          <xs:documentation>Central African Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCD">
        <xs:annotation>
          <xs:documentation>Chad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHL">
        <xs:annotation>
          <xs:documentation>Chile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHN">
        <xs:annotation>
          <xs:documentation>China</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CXR">
        <xs:annotation>
          <xs:documentation>Christmas Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCK">
        <xs:annotation>
          <xs:documentation>Cocos (Keeling) Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COL">
        <xs:annotation>
          <xs:documentation>Colombia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COM">
        <xs:annotation>
          <xs:documentation>Comoros</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COG">
        <xs:annotation>
          <xs:documentation>Congo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COD">
        <xs:annotation>
          <xs:documentation>Congo, Democratic Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COK">
        <xs:annotation>
          <xs:documentation>Cook Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRI">
        <xs:annotation>
          <xs:documentation>Costa Rica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HRV">
        <xs:annotation>
          <xs:documentation>Croatia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUB">
        <xs:annotation>
          <xs:documentation>Cuba </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYP">
        <xs:annotation>
          <xs:documentation>Cyprus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZE">
        <xs:annotation>
          <xs:documentation>Czech Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSK">
        <xs:annotation>
          <xs:documentation>Czechoslovakia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DHY">
        <xs:annotation>
          <xs:documentation>Dahomey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YMD">
        <xs:annotation>
          <xs:documentation>Democratic Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNK">
        <xs:annotation>
          <xs:documentation>Denmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DJI">
        <xs:annotation>
          <xs:documentation>Djibouti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DMA">
        <xs:annotation>
          <xs:documentation>Dominica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOM">
        <xs:annotation>
          <xs:documentation>Dominican Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATN">
        <xs:annotation>
          <xs:documentation>Dronning Maud Land</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMP">
        <xs:annotation>
          <xs:documentation>East Timor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ECU">
        <xs:annotation>
          <xs:documentation>Ecuador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EGY">
        <xs:annotation>
          <xs:documentation>Egypt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLV">
        <xs:annotation>
          <xs:documentation>El Salvador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNQ">
        <xs:annotation>
          <xs:documentation>Equatorial Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ERI">
        <xs:annotation>
          <xs:documentation>Eritrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EST">
        <xs:annotation>
          <xs:documentation>Estonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETH">
        <xs:annotation>
          <xs:documentation>Ethiopia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETH">
        <xs:annotation>
          <xs:documentation>Ethiopia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FLK">
        <xs:annotation>
          <xs:documentation>Falkland Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRO">
        <xs:annotation>
          <xs:documentation>Faroe Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEU">
        <xs:annotation>
          <xs:documentation>Federal Republic of Germany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FJI">
        <xs:annotation>
          <xs:documentation>Fiji</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRA">
        <xs:annotation>
          <xs:documentation>France</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUF">
        <xs:annotation>
          <xs:documentation>French Guiana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PYF">
        <xs:annotation>
          <xs:documentation>French Polynesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATF">
        <xs:annotation>
          <xs:documentation>French Southern Territories</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFI">
        <xs:annotation>
          <xs:documentation>French Territory of Afars and Issas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAB">
        <xs:annotation>
          <xs:documentation>Gabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMB">
        <xs:annotation>
          <xs:documentation>Gambia, The</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Georgia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DDR">
        <xs:annotation>
          <xs:documentation>German Democratic Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEU">
        <xs:annotation>
          <xs:documentation>Germany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GHA">
        <xs:annotation>
          <xs:documentation>Ghana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIB">
        <xs:annotation>
          <xs:documentation>Gibraltar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Gilbert and Ellice Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Gilbert Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRC">
        <xs:annotation>
          <xs:documentation>Greece</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRL">
        <xs:annotation>
          <xs:documentation>Greenland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRD">
        <xs:annotation>
          <xs:documentation>Grenada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLP">
        <xs:annotation>
          <xs:documentation>Guadeloupe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUM">
        <xs:annotation>
          <xs:documentation>Guam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTM">
        <xs:annotation>
          <xs:documentation>Guatemala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GGY">
        <xs:annotation>
          <xs:documentation>Guernsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIN">
        <xs:annotation>
          <xs:documentation>Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNB">
        <xs:annotation>
          <xs:documentation>Guinea-Bissau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUY">
        <xs:annotation>
          <xs:documentation>Guyana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTI">
        <xs:annotation>
          <xs:documentation>Haiti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HMD">
        <xs:annotation>
          <xs:documentation>Heard Island and McDonald Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VAT">
        <xs:annotation>
          <xs:documentation>Holy See</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HND">
        <xs:annotation>
          <xs:documentation>Honduras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HKG">
        <xs:annotation>
          <xs:documentation>Hong Kong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUN">
        <xs:annotation>
          <xs:documentation>Hungary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISL">
        <xs:annotation>
          <xs:documentation>Iceland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>India</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDN">
        <xs:annotation>
          <xs:documentation>Indonesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRN">
        <xs:annotation>
          <xs:documentation>Iran </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRQ">
        <xs:annotation>
          <xs:documentation>Iraq </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRL">
        <xs:annotation>
          <xs:documentation>Ireland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IMN">
        <xs:annotation>
          <xs:documentation>Isle of Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISR">
        <xs:annotation>
          <xs:documentation>Israel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CIV">
        <xs:annotation>
          <xs:documentation>Ivory Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAM">
        <xs:annotation>
          <xs:documentation>Jamaica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPN">
        <xs:annotation>
          <xs:documentation>Japan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JEY">
        <xs:annotation>
          <xs:documentation>Jersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JTN">
        <xs:annotation>
          <xs:documentation>Johnston Atoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JOR">
        <xs:annotation>
          <xs:documentation>Jordan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHM">
        <xs:annotation>
          <xs:documentation>Kampuchea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAZ">
        <xs:annotation>
          <xs:documentation>Kazakhstan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KEN">
        <xs:annotation>
          <xs:documentation>Kenya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIR">
        <xs:annotation>
          <xs:documentation>Kiribati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRK">
        <xs:annotation>
          <xs:documentation>Korea, North </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KOR">
        <xs:annotation>
          <xs:documentation>Korea, South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KWT">
        <xs:annotation>
          <xs:documentation>Kuwait</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGZ">
        <xs:annotation>
          <xs:documentation>Kyrgyzstan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAO">
        <xs:annotation>
          <xs:documentation>Laos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LVA">
        <xs:annotation>
          <xs:documentation>Latvia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBN">
        <xs:annotation>
          <xs:documentation>Lebanon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSO">
        <xs:annotation>
          <xs:documentation>Lesotho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBR">
        <xs:annotation>
          <xs:documentation>Liberia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBY">
        <xs:annotation>
          <xs:documentation>Libya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIE">
        <xs:annotation>
          <xs:documentation>Liechtenstein</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTU">
        <xs:annotation>
          <xs:documentation>Lithuania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUX">
        <xs:annotation>
          <xs:documentation>Luxembourg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAC">
        <xs:annotation>
          <xs:documentation>Macao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Macedonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDG">
        <xs:annotation>
          <xs:documentation>Madagascar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWI">
        <xs:annotation>
          <xs:documentation>Malawi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYS">
        <xs:annotation>
          <xs:documentation>Malaysia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDV">
        <xs:annotation>
          <xs:documentation>Maldives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLI">
        <xs:annotation>
          <xs:documentation>Mali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLT">
        <xs:annotation>
          <xs:documentation>Malta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MHL">
        <xs:annotation>
          <xs:documentation>Marshall Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MTQ">
        <xs:annotation>
          <xs:documentation>Martinique</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MRT">
        <xs:annotation>
          <xs:documentation>Mauritania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUS">
        <xs:annotation>
          <xs:documentation>Mauritius</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYT">
        <xs:annotation>
          <xs:documentation>Mayotte</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEX">
        <xs:annotation>
          <xs:documentation>Mexico</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FSM">
        <xs:annotation>
          <xs:documentation>Micronesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MID">
        <xs:annotation>
          <xs:documentation>Midway Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDA">
        <xs:annotation>
          <xs:documentation>Moldova</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MCO">
        <xs:annotation>
          <xs:documentation>Monaco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNG">
        <xs:annotation>
          <xs:documentation>Mongolia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNE">
        <xs:annotation>
          <xs:documentation>Montenegro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSR">
        <xs:annotation>
          <xs:documentation>Montserrat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAR">
        <xs:annotation>
          <xs:documentation>Morocco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOZ">
        <xs:annotation>
          <xs:documentation>Mozambique</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMR">
        <xs:annotation>
          <xs:documentation>Myanmar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAM">
        <xs:annotation>
          <xs:documentation>Namibia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NRU">
        <xs:annotation>
          <xs:documentation>Nauru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NPL">
        <xs:annotation>
          <xs:documentation>Nepal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NLD">
        <xs:annotation>
          <xs:documentation>Netherlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANT">
        <xs:annotation>
          <xs:documentation>Netherlands Antilles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANT">
        <xs:annotation>
          <xs:documentation>Netherlands Antilles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NCL">
        <xs:annotation>
          <xs:documentation>New Caledonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NHB">
        <xs:annotation>
          <xs:documentation>New Hebrides</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZL">
        <xs:annotation>
          <xs:documentation>New Zealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIC">
        <xs:annotation>
          <xs:documentation>Nicaragua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NER">
        <xs:annotation>
          <xs:documentation>Niger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NGA">
        <xs:annotation>
          <xs:documentation>Nigeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIU">
        <xs:annotation>
          <xs:documentation>Niue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NFK">
        <xs:annotation>
          <xs:documentation>Norfolk Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNP">
        <xs:annotation>
          <xs:documentation>Northern Mariana Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMN">
        <xs:annotation>
          <xs:documentation>Oman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAK">
        <xs:annotation>
          <xs:documentation>Pakistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLW">
        <xs:annotation>
          <xs:documentation>Palau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSE">
        <xs:annotation>
          <xs:documentation>Palestine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAN">
        <xs:annotation>
          <xs:documentation>Panama</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCZ">
        <xs:annotation>
          <xs:documentation>Panama Canal Zone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNG">
        <xs:annotation>
          <xs:documentation>Papua New Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRY">
        <xs:annotation>
          <xs:documentation>Paraguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PER">
        <xs:annotation>
          <xs:documentation>Peru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHL">
        <xs:annotation>
          <xs:documentation>Philippines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCN">
        <xs:annotation>
          <xs:documentation>Pitcairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POL">
        <xs:annotation>
          <xs:documentation>Poland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRT">
        <xs:annotation>
          <xs:documentation>Portugal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRI">
        <xs:annotation>
          <xs:documentation>Puerto Rico</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QAT">
        <xs:annotation>
          <xs:documentation>Qatar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REU">
        <xs:annotation>
          <xs:documentation>Reunion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROU">
        <xs:annotation>
          <xs:documentation>Romania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWA">
        <xs:annotation>
          <xs:documentation>Rwanda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHN">
        <xs:annotation>
          <xs:documentation>Saint Helena</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNA">
        <xs:annotation>
          <xs:documentation>Saint Kitts and Nevis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNA">
        <xs:annotation>
          <xs:documentation>Saint Kitts-Nevis-Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LCA">
        <xs:annotation>
          <xs:documentation>Saint Lucia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPM">
        <xs:annotation>
          <xs:documentation>Saint Pierre and Miquelon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VCT">
        <xs:annotation>
          <xs:documentation>Saint Vincent and the Grenadines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSM">
        <xs:annotation>
          <xs:documentation>Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SMR">
        <xs:annotation>
          <xs:documentation>San Marino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STP">
        <xs:annotation>
          <xs:documentation>Sao Tome and Principe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAU">
        <xs:annotation>
          <xs:documentation>Saudi Arabia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>Senegal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRB">
        <xs:annotation>
          <xs:documentation>Serbia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCG">
        <xs:annotation>
          <xs:documentation>Serbia and Montenegro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYC">
        <xs:annotation>
          <xs:documentation>Seychelles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLE">
        <xs:annotation>
          <xs:documentation>Sierra Leone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SKM">
        <xs:annotation>
          <xs:documentation>Sikkim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGP">
        <xs:annotation>
          <xs:documentation>Singapore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVK">
        <xs:annotation>
          <xs:documentation>Slovakia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVN">
        <xs:annotation>
          <xs:documentation>Slovenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLB">
        <xs:annotation>
          <xs:documentation>Solomon Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somalia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAF">
        <xs:annotation>
          <xs:documentation>South Africa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGS">
        <xs:annotation>
          <xs:documentation>South Georgia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VDR">
        <xs:annotation>
          <xs:documentation>South Vietnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RHO">
        <xs:annotation>
          <xs:documentation>Southern Rhodesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESP">
        <xs:annotation>
          <xs:documentation>Spain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESH">
        <xs:annotation>
          <xs:documentation>Spanish Sahara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LKA">
        <xs:annotation>
          <xs:documentation>Sri Lanka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SDN">
        <xs:annotation>
          <xs:documentation>Sudan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUR">
        <xs:annotation>
          <xs:documentation>Suriname</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SJM">
        <xs:annotation>
          <xs:documentation>Svalbard and Jan Mayen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWZ">
        <xs:annotation>
          <xs:documentation>Swaziland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Sweden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Switzerland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYR">
        <xs:annotation>
          <xs:documentation>Syria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TWN">
        <xs:annotation>
          <xs:documentation>Taiwan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TJK">
        <xs:annotation>
          <xs:documentation>Tajikistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TZA">
        <xs:annotation>
          <xs:documentation>Tanzania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THA">
        <xs:annotation>
          <xs:documentation>Thailand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TLS">
        <xs:annotation>
          <xs:documentation>Timor-Leste</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGO">
        <xs:annotation>
          <xs:documentation>Togo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TKL">
        <xs:annotation>
          <xs:documentation>Tokelau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TON">
        <xs:annotation>
          <xs:documentation>Tonga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTO">
        <xs:annotation>
          <xs:documentation>Trinidad and Tobago</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCI">
        <xs:annotation>
          <xs:documentation>Trust Territory of the Pacific Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUN">
        <xs:annotation>
          <xs:documentation>Tunisia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TKM">
        <xs:annotation>
          <xs:documentation>Turkmenistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCA">
        <xs:annotation>
          <xs:documentation>Turks and Caicos Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUV">
        <xs:annotation>
          <xs:documentation>Tuvalu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UGA">
        <xs:annotation>
          <xs:documentation>Uganda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukraine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukrainian SSR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUN">
        <xs:annotation>
          <xs:documentation>Union of Soviet Socialist Republics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARE">
        <xs:annotation>
          <xs:documentation>United Arab Emirates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GBR">
        <xs:annotation>
          <xs:documentation>United Kingdom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USA">
        <xs:annotation>
          <xs:documentation>United States </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UMI">
        <xs:annotation>
          <xs:documentation>United States Minor Outlying Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PUS">
        <xs:annotation>
          <xs:documentation>United States Miscellaneous Pacific Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HVO">
        <xs:annotation>
          <xs:documentation>Upper Volta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URY">
        <xs:annotation>
          <xs:documentation>Uruguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZB">
        <xs:annotation>
          <xs:documentation>Uzbekistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VUT">
        <xs:annotation>
          <xs:documentation>Vanuatu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VAT">
        <xs:annotation>
          <xs:documentation>Vatican City State</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEN">
        <xs:annotation>
          <xs:documentation>Venezuela</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VNM">
        <xs:annotation>
          <xs:documentation>Vietnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VGB">
        <xs:annotation>
          <xs:documentation>Virgin Islands,  British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VIR">
        <xs:annotation>
          <xs:documentation>Virgin Islands,  U.S.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAK">
        <xs:annotation>
          <xs:documentation>Wake Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WLF">
        <xs:annotation>
          <xs:documentation>Wallis and Futuna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESH">
        <xs:annotation>
          <xs:documentation>Western Sahara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YEM">
        <xs:annotation>
          <xs:documentation>Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YEM">
        <xs:annotation>
          <xs:documentation>Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YUG">
        <xs:annotation>
          <xs:documentation>Yugoslavia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAR">
        <xs:annotation>
          <xs:documentation>Zaire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZMB">
        <xs:annotation>
          <xs:documentation>Zambia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZWE">
        <xs:annotation>
          <xs:documentation>Zimbabwe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetRomanCatholicDioceseType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AAB">
        <xs:annotation>
          <xs:documentation>Arundel &amp; Brighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIR">
        <xs:annotation>
          <xs:documentation>Birmingham </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRE">
        <xs:annotation>
          <xs:documentation>Brentwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Cardiff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLI">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EAS">
        <xs:annotation>
          <xs:documentation>East Anglia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAL">
        <xs:annotation>
          <xs:documentation>Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAN">
        <xs:annotation>
          <xs:documentation>Hexham &amp; Newcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAN">
        <xs:annotation>
          <xs:documentation>Lancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEE">
        <xs:annotation>
          <xs:documentation>Leeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIV">
        <xs:annotation>
          <xs:documentation>Liverpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEN">
        <xs:annotation>
          <xs:documentation>Menevia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MID">
        <xs:annotation>
          <xs:documentation>Middlesbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Northampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Nottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLY">
        <xs:annotation>
          <xs:documentation>Plymouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portsmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAL">
        <xs:annotation>
          <xs:documentation>Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHR">
        <xs:annotation>
          <xs:documentation>Shrewsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOU">
        <xs:annotation>
          <xs:documentation>Southwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WES">
        <xs:annotation>
          <xs:documentation>Westminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WRE">
        <xs:annotation>
          <xs:documentation>Wrexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSParishCouncilNameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="00BL001">
        <xs:annotation>
          <xs:documentation>Blackrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BL002">
        <xs:annotation>
          <xs:documentation>Horwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BL003">
        <xs:annotation>
          <xs:documentation>Westhoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BN001">
        <xs:annotation>
          <xs:documentation>Ringway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BP001">
        <xs:annotation>
          <xs:documentation>Saddleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BP002">
        <xs:annotation>
          <xs:documentation>Shaw and Crompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BS001">
        <xs:annotation>
          <xs:documentation>Offerton Estate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BT001">
        <xs:annotation>
          <xs:documentation>Mossley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU001">
        <xs:annotation>
          <xs:documentation>Carrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU002">
        <xs:annotation>
          <xs:documentation>Dunham Massey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU003">
        <xs:annotation>
          <xs:documentation>Partington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU004">
        <xs:annotation>
          <xs:documentation>Warburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW001">
        <xs:annotation>
          <xs:documentation>Haigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW002">
        <xs:annotation>
          <xs:documentation>Shevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW003">
        <xs:annotation>
          <xs:documentation>Worthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX001">
        <xs:annotation>
          <xs:documentation>Cronton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX002">
        <xs:annotation>
          <xs:documentation>Halewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX003">
        <xs:annotation>
          <xs:documentation>Knowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX004">
        <xs:annotation>
          <xs:documentation>Prescot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX006">
        <xs:annotation>
          <xs:documentation>Tarbock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX007">
        <xs:annotation>
          <xs:documentation>Whiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ001">
        <xs:annotation>
          <xs:documentation>Billinge Chapel End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ002">
        <xs:annotation>
          <xs:documentation>Bold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ003">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ004">
        <xs:annotation>
          <xs:documentation>Rainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ005">
        <xs:annotation>
          <xs:documentation>Rainhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ006">
        <xs:annotation>
          <xs:documentation>Seneley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ007">
        <xs:annotation>
          <xs:documentation>Windle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA001">
        <xs:annotation>
          <xs:documentation>Aintree Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA002">
        <xs:annotation>
          <xs:documentation>Ince Blundell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA003">
        <xs:annotation>
          <xs:documentation>Little Altcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA004">
        <xs:annotation>
          <xs:documentation>Lydiate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA005">
        <xs:annotation>
          <xs:documentation>Maghull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA006">
        <xs:annotation>
          <xs:documentation>Melling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA007">
        <xs:annotation>
          <xs:documentation>Sefton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA008">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA009">
        <xs:annotation>
          <xs:documentation>Hightown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA010">
        <xs:annotation>
          <xs:documentation>Formby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC001">
        <xs:annotation>
          <xs:documentation>Billingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC002">
        <xs:annotation>
          <xs:documentation>Brierley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC003">
        <xs:annotation>
          <xs:documentation>Cawthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC004">
        <xs:annotation>
          <xs:documentation>Dunford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC005">
        <xs:annotation>
          <xs:documentation>Great Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC006">
        <xs:annotation>
          <xs:documentation>Gunthwaite and Ingbirchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC007">
        <xs:annotation>
          <xs:documentation>High Hoyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC008">
        <xs:annotation>
          <xs:documentation>Hunshelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC009">
        <xs:annotation>
          <xs:documentation>Langsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC010">
        <xs:annotation>
          <xs:documentation>Little Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC011">
        <xs:annotation>
          <xs:documentation>Oxspring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC012">
        <xs:annotation>
          <xs:documentation>Penistone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC013">
        <xs:annotation>
          <xs:documentation>Shafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC014">
        <xs:annotation>
          <xs:documentation>Silkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC015">
        <xs:annotation>
          <xs:documentation>Stainborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC016">
        <xs:annotation>
          <xs:documentation>Tankersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC017">
        <xs:annotation>
          <xs:documentation>Thurgoland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC018">
        <xs:annotation>
          <xs:documentation>Wortley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE001">
        <xs:annotation>
          <xs:documentation>Adwick upon Dearne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE002">
        <xs:annotation>
          <xs:documentation>Armthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE003">
        <xs:annotation>
          <xs:documentation>Askern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE004">
        <xs:annotation>
          <xs:documentation>Auckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE005">
        <xs:annotation>
          <xs:documentation>Austerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE006">
        <xs:annotation>
          <xs:documentation>Barnburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE007">
        <xs:annotation>
          <xs:documentation>Barnby Dun with Kirk Sandall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE008">
        <xs:annotation>
          <xs:documentation>Bawtry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE009">
        <xs:annotation>
          <xs:documentation>Blaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE010">
        <xs:annotation>
          <xs:documentation>Braithwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE011">
        <xs:annotation>
          <xs:documentation>Brodsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE012">
        <xs:annotation>
          <xs:documentation>Burghwallis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE013">
        <xs:annotation>
          <xs:documentation>Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE014">
        <xs:annotation>
          <xs:documentation>Cantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE015">
        <xs:annotation>
          <xs:documentation>Clayton with Frickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE016">
        <xs:annotation>
          <xs:documentation>Conisbrough Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE017">
        <xs:annotation>
          <xs:documentation>Denaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE018">
        <xs:annotation>
          <xs:documentation>Edenthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE019">
        <xs:annotation>
          <xs:documentation>Edlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE020">
        <xs:annotation>
          <xs:documentation>Fenwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE021">
        <xs:annotation>
          <xs:documentation>Finningley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE022">
        <xs:annotation>
          <xs:documentation>Fishlake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE023">
        <xs:annotation>
          <xs:documentation>Hampole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE024">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE025">
        <xs:annotation>
          <xs:documentation>Hickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE026">
        <xs:annotation>
          <xs:documentation>High Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE027">
        <xs:annotation>
          <xs:documentation>Hooton Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE028">
        <xs:annotation>
          <xs:documentation>Kirk Bramwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE029">
        <xs:annotation>
          <xs:documentation>Loversall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE030">
        <xs:annotation>
          <xs:documentation>Marr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE031">
        <xs:annotation>
          <xs:documentation>Moss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE032">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE033">
        <xs:annotation>
          <xs:documentation>Owston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE034">
        <xs:annotation>
          <xs:documentation>Rossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE035">
        <xs:annotation>
          <xs:documentation>Sprotbrough and Cusworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE036">
        <xs:annotation>
          <xs:documentation>Stainforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE037">
        <xs:annotation>
          <xs:documentation>Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE038">
        <xs:annotation>
          <xs:documentation>Sykehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE039">
        <xs:annotation>
          <xs:documentation>Thorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE040">
        <xs:annotation>
          <xs:documentation>Thorpe in Balne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE041">
        <xs:annotation>
          <xs:documentation>Tickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE042">
        <xs:annotation>
          <xs:documentation>Wadworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE043">
        <xs:annotation>
          <xs:documentation>Warmsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF001">
        <xs:annotation>
          <xs:documentation>Aston cum Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF002">
        <xs:annotation>
          <xs:documentation>Bramley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF003">
        <xs:annotation>
          <xs:documentation>Brampton Bierlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF004">
        <xs:annotation>
          <xs:documentation>Brinsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF005">
        <xs:annotation>
          <xs:documentation>Catcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF006">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF007">
        <xs:annotation>
          <xs:documentation>Dinnington St. John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF008">
        <xs:annotation>
          <xs:documentation>Firbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF009">
        <xs:annotation>
          <xs:documentation>Gildingwells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF010">
        <xs:annotation>
          <xs:documentation>Harthill with Woodall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF011">
        <xs:annotation>
          <xs:documentation>Hooton Levitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF012">
        <xs:annotation>
          <xs:documentation>Hooton Roberts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF013">
        <xs:annotation>
          <xs:documentation>Letwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF014">
        <xs:annotation>
          <xs:documentation>North and South Anston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF015">
        <xs:annotation>
          <xs:documentation>Orgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF016">
        <xs:annotation>
          <xs:documentation>Ravenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF017">
        <xs:annotation>
          <xs:documentation>Thorpe Salvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF018">
        <xs:annotation>
          <xs:documentation>Thrybergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF019">
        <xs:annotation>
          <xs:documentation>Thurcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF020">
        <xs:annotation>
          <xs:documentation>Todwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF021">
        <xs:annotation>
          <xs:documentation>Treeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF022">
        <xs:annotation>
          <xs:documentation>Ulley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF023">
        <xs:annotation>
          <xs:documentation>Wales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF024">
        <xs:annotation>
          <xs:documentation>Wentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF025">
        <xs:annotation>
          <xs:documentation>Whiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF026">
        <xs:annotation>
          <xs:documentation>Wickersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF027">
        <xs:annotation>
          <xs:documentation>Woodsetts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF028">
        <xs:annotation>
          <xs:documentation>Laughton-en-le-Morthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF029">
        <xs:annotation>
          <xs:documentation>Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG001">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG002">
        <xs:annotation>
          <xs:documentation>Ecclesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG003">
        <xs:annotation>
          <xs:documentation>Stocksbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CH001">
        <xs:annotation>
          <xs:documentation>Birtley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CH002">
        <xs:annotation>
          <xs:documentation>Lamesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ001">
        <xs:annotation>
          <xs:documentation>Brunswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ002">
        <xs:annotation>
          <xs:documentation>Dinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ003">
        <xs:annotation>
          <xs:documentation>Hazlerigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ004">
        <xs:annotation>
          <xs:documentation>North Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ005">
        <xs:annotation>
          <xs:documentation>Woolsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ006">
        <xs:annotation>
          <xs:documentation>Blakelaw and North Fenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM001">
        <xs:annotation>
          <xs:documentation>Burdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM002">
        <xs:annotation>
          <xs:documentation>Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM003">
        <xs:annotation>
          <xs:documentation>Warden Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CN001">
        <xs:annotation>
          <xs:documentation>New Frankley in Birmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQ001">
        <xs:annotation>
          <xs:documentation>Allesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQ002">
        <xs:annotation>
          <xs:documentation>Keresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT001">
        <xs:annotation>
          <xs:documentation>Balsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT002">
        <xs:annotation>
          <xs:documentation>Barston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT003">
        <xs:annotation>
          <xs:documentation>Berkswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT004">
        <xs:annotation>
          <xs:documentation>Bickenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT005">
        <xs:annotation>
          <xs:documentation>Castle Bromwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT006">
        <xs:annotation>
          <xs:documentation>Chelmsley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT007">
        <xs:annotation>
          <xs:documentation>Fordbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT008">
        <xs:annotation>
          <xs:documentation>Hampton in Arden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT009">
        <xs:annotation>
          <xs:documentation>Hockley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT010">
        <xs:annotation>
          <xs:documentation>Kingshurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT011">
        <xs:annotation>
          <xs:documentation>Meriden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT012">
        <xs:annotation>
          <xs:documentation>Smith's Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX001">
        <xs:annotation>
          <xs:documentation>Addingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX002">
        <xs:annotation>
          <xs:documentation>Cullingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX003">
        <xs:annotation>
          <xs:documentation>Denholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX004">
        <xs:annotation>
          <xs:documentation>Ilkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX005">
        <xs:annotation>
          <xs:documentation>Oxenhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX006">
        <xs:annotation>
          <xs:documentation>Silsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX007">
        <xs:annotation>
          <xs:documentation>Steeton with Eastburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX008">
        <xs:annotation>
          <xs:documentation>Haworth, Cross Roads and Stanbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX009">
        <xs:annotation>
          <xs:documentation>Keighley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX010">
        <xs:annotation>
          <xs:documentation>Clayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX011">
        <xs:annotation>
          <xs:documentation>Sandy Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX012">
        <xs:annotation>
          <xs:documentation>Wilsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX013">
        <xs:annotation>
          <xs:documentation>Wrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY001">
        <xs:annotation>
          <xs:documentation>Blackshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY002">
        <xs:annotation>
          <xs:documentation>Erringden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY003">
        <xs:annotation>
          <xs:documentation>Hebden Royd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY004">
        <xs:annotation>
          <xs:documentation>Heptonstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY005">
        <xs:annotation>
          <xs:documentation>Ripponden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY006">
        <xs:annotation>
          <xs:documentation>Todmorden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY007">
        <xs:annotation>
          <xs:documentation>Wadsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ001">
        <xs:annotation>
          <xs:documentation>Denby Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ002">
        <xs:annotation>
          <xs:documentation>Holme Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ003">
        <xs:annotation>
          <xs:documentation>Kirkburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ004">
        <xs:annotation>
          <xs:documentation>Meltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ005">
        <xs:annotation>
          <xs:documentation>Mirfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA001">
        <xs:annotation>
          <xs:documentation>Aberford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA002">
        <xs:annotation>
          <xs:documentation>Arthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA003">
        <xs:annotation>
          <xs:documentation>Austhorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA004">
        <xs:annotation>
          <xs:documentation>Bardsey cum Rigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA005">
        <xs:annotation>
          <xs:documentation>Barwick in Elmet and Scholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA006">
        <xs:annotation>
          <xs:documentation>Boston Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA007">
        <xs:annotation>
          <xs:documentation>Bramham cum Oglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA008">
        <xs:annotation>
          <xs:documentation>Bramhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA009">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA010">
        <xs:annotation>
          <xs:documentation>Clifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA011">
        <xs:annotation>
          <xs:documentation>Collingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA012">
        <xs:annotation>
          <xs:documentation>East Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA013">
        <xs:annotation>
          <xs:documentation>Great and Little Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA014">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA015">
        <xs:annotation>
          <xs:documentation>Ledsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA016">
        <xs:annotation>
          <xs:documentation>Ledston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA017">
        <xs:annotation>
          <xs:documentation>Lotherton cum Aberford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA018">
        <xs:annotation>
          <xs:documentation>Micklefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA019">
        <xs:annotation>
          <xs:documentation>Otley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA020">
        <xs:annotation>
          <xs:documentation>Parlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA021">
        <xs:annotation>
          <xs:documentation>Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA022">
        <xs:annotation>
          <xs:documentation>Scarcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA023">
        <xs:annotation>
          <xs:documentation>Sturton Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA024">
        <xs:annotation>
          <xs:documentation>Swillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA025">
        <xs:annotation>
          <xs:documentation>Thorner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA026">
        <xs:annotation>
          <xs:documentation>Thorp Arch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA027">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA028">
        <xs:annotation>
          <xs:documentation>Wetherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA029">
        <xs:annotation>
          <xs:documentation>Wothersome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA030">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA031">
        <xs:annotation>
          <xs:documentation>Allerton Bywater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA032">
        <xs:annotation>
          <xs:documentation>Horsforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA033">
        <xs:annotation>
          <xs:documentation>Shadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA034">
        <xs:annotation>
          <xs:documentation>Kippax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA035">
        <xs:annotation>
          <xs:documentation>Drighlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA036">
        <xs:annotation>
          <xs:documentation>Gildersome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB001">
        <xs:annotation>
          <xs:documentation>Ackworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB002">
        <xs:annotation>
          <xs:documentation>Badsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB003">
        <xs:annotation>
          <xs:documentation>Chevet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB004">
        <xs:annotation>
          <xs:documentation>Crigglestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB005">
        <xs:annotation>
          <xs:documentation>Crofton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB006">
        <xs:annotation>
          <xs:documentation>Darrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB007">
        <xs:annotation>
          <xs:documentation>East Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB008">
        <xs:annotation>
          <xs:documentation>Featherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB009">
        <xs:annotation>
          <xs:documentation>Havercroft with Cold Hiendley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB010">
        <xs:annotation>
          <xs:documentation>Hemsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB011">
        <xs:annotation>
          <xs:documentation>Hessle and Hill Top</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB012">
        <xs:annotation>
          <xs:documentation>Huntwick with Foulby and Nostell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB013">
        <xs:annotation>
          <xs:documentation>Newland with Woodhouse Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB014">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB015">
        <xs:annotation>
          <xs:documentation>North Elmsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB016">
        <xs:annotation>
          <xs:documentation>Notton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB017">
        <xs:annotation>
          <xs:documentation>Ryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB018">
        <xs:annotation>
          <xs:documentation>Sharlston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB019">
        <xs:annotation>
          <xs:documentation>Sitlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB020">
        <xs:annotation>
          <xs:documentation>South Elmsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB021">
        <xs:annotation>
          <xs:documentation>South Hiendley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB022">
        <xs:annotation>
          <xs:documentation>South Kirkby and Moorthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB023">
        <xs:annotation>
          <xs:documentation>Thorpe Audlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB024">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB025">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB026">
        <xs:annotation>
          <xs:documentation>Warmfield cum Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB027">
        <xs:annotation>
          <xs:documentation>West Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB028">
        <xs:annotation>
          <xs:documentation>West Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB029">
        <xs:annotation>
          <xs:documentation>Wintersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB030">
        <xs:annotation>
          <xs:documentation>Woolley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB001">
        <xs:annotation>
          <xs:documentation>Brierton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB002">
        <xs:annotation>
          <xs:documentation>Claxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB003">
        <xs:annotation>
          <xs:documentation>Dalton Piercy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB004">
        <xs:annotation>
          <xs:documentation>Elwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB005">
        <xs:annotation>
          <xs:documentation>Greatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB006">
        <xs:annotation>
          <xs:documentation>Hart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB007">
        <xs:annotation>
          <xs:documentation>Newton Bewley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB008">
        <xs:annotation>
          <xs:documentation>Headland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EC001">
        <xs:annotation>
          <xs:documentation>Nunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EC002">
        <xs:annotation>
          <xs:documentation>Stainton and Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE001">
        <xs:annotation>
          <xs:documentation>Guisborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE002">
        <xs:annotation>
          <xs:documentation>Lockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE003">
        <xs:annotation>
          <xs:documentation>Loftus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE004">
        <xs:annotation>
          <xs:documentation>Saltburn, Marske and New Marske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE005">
        <xs:annotation>
          <xs:documentation>Skelton and Brotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF001">
        <xs:annotation>
          <xs:documentation>Aislaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF002">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF003">
        <xs:annotation>
          <xs:documentation>Castlelevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF004">
        <xs:annotation>
          <xs:documentation>Egglescliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF005">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF006">
        <xs:annotation>
          <xs:documentation>Grindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF007">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF008">
        <xs:annotation>
          <xs:documentation>Ingleby Barwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF009">
        <xs:annotation>
          <xs:documentation>Kirklevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF010">
        <xs:annotation>
          <xs:documentation>Longnewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF011">
        <xs:annotation>
          <xs:documentation>Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF012">
        <xs:annotation>
          <xs:documentation>Newsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF013">
        <xs:annotation>
          <xs:documentation>Preston-on-Tees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF014">
        <xs:annotation>
          <xs:documentation>Redmarshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF015">
        <xs:annotation>
          <xs:documentation>Stillington and Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF016">
        <xs:annotation>
          <xs:documentation>Thornaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF017">
        <xs:annotation>
          <xs:documentation>Wolviston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF018">
        <xs:annotation>
          <xs:documentation>Yarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH001">
        <xs:annotation>
          <xs:documentation>Archdeacon Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH002">
        <xs:annotation>
          <xs:documentation>Barmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH003">
        <xs:annotation>
          <xs:documentation>Bishopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH004">
        <xs:annotation>
          <xs:documentation>Brafferton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH005">
        <xs:annotation>
          <xs:documentation>Coatham Mundeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH006">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH007">
        <xs:annotation>
          <xs:documentation>East and West Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH008">
        <xs:annotation>
          <xs:documentation>Great Burdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH009">
        <xs:annotation>
          <xs:documentation>Great Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH010">
        <xs:annotation>
          <xs:documentation>Heighington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH011">
        <xs:annotation>
          <xs:documentation>High Coniscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH012">
        <xs:annotation>
          <xs:documentation>Houghton le Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH013">
        <xs:annotation>
          <xs:documentation>Hurworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH014">
        <xs:annotation>
          <xs:documentation>Killerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH015">
        <xs:annotation>
          <xs:documentation>Little Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH016">
        <xs:annotation>
          <xs:documentation>Low Coniscliffe and Merrybent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH017">
        <xs:annotation>
          <xs:documentation>Low Dinsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH018">
        <xs:annotation>
          <xs:documentation>Middleton St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH019">
        <xs:annotation>
          <xs:documentation>Morton Palms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH020">
        <xs:annotation>
          <xs:documentation>Neasham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH021">
        <xs:annotation>
          <xs:documentation>Piercebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH022">
        <xs:annotation>
          <xs:documentation>Sadberge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH023">
        <xs:annotation>
          <xs:documentation>Sockburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH024">
        <xs:annotation>
          <xs:documentation>Summerhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH025">
        <xs:annotation>
          <xs:documentation>Walworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH026">
        <xs:annotation>
          <xs:documentation>Whessoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET001">
        <xs:annotation>
          <xs:documentation>Daresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET002">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET003">
        <xs:annotation>
          <xs:documentation>Moore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET004">
        <xs:annotation>
          <xs:documentation>Preston Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU001">
        <xs:annotation>
          <xs:documentation>Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU002">
        <xs:annotation>
          <xs:documentation>Birchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU003">
        <xs:annotation>
          <xs:documentation>Burtonwood and Westbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU004">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU005">
        <xs:annotation>
          <xs:documentation>Cuerdley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU006">
        <xs:annotation>
          <xs:documentation>Culcheth and Glazebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU007">
        <xs:annotation>
          <xs:documentation>Grappenhall and Thelwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU008">
        <xs:annotation>
          <xs:documentation>Great Sankey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU009">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU010">
        <xs:annotation>
          <xs:documentation>Lymm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU011">
        <xs:annotation>
          <xs:documentation>Penketh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU012">
        <xs:annotation>
          <xs:documentation>Poulton-with-Fearnhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU013">
        <xs:annotation>
          <xs:documentation>Rixton-with-Glazebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU014">
        <xs:annotation>
          <xs:documentation>Stockton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU015">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU016">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU017">
        <xs:annotation>
          <xs:documentation>Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU018">
        <xs:annotation>
          <xs:documentation>Woolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX001">
        <xs:annotation>
          <xs:documentation>Eccleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX002">
        <xs:annotation>
          <xs:documentation>Livesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX003">
        <xs:annotation>
          <xs:documentation>North Turton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX004">
        <xs:annotation>
          <xs:documentation>Pleasington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX005">
        <xs:annotation>
          <xs:documentation>Tockholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX006">
        <xs:annotation>
          <xs:documentation>Yate and Pickup Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB001">
        <xs:annotation>
          <xs:documentation>Airmyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB002">
        <xs:annotation>
          <xs:documentation>Aldbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB003">
        <xs:annotation>
          <xs:documentation>Allerthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB004">
        <xs:annotation>
          <xs:documentation>Asselby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB005">
        <xs:annotation>
          <xs:documentation>Atwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB006">
        <xs:annotation>
          <xs:documentation>Bainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB007">
        <xs:annotation>
          <xs:documentation>Barmby Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB008">
        <xs:annotation>
          <xs:documentation>Barmby on the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB009">
        <xs:annotation>
          <xs:documentation>Barmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB010">
        <xs:annotation>
          <xs:documentation>Beeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB011">
        <xs:annotation>
          <xs:documentation>Bielby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB012">
        <xs:annotation>
          <xs:documentation>Bempton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB013">
        <xs:annotation>
          <xs:documentation>Beswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB014">
        <xs:annotation>
          <xs:documentation>Bewholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB015">
        <xs:annotation>
          <xs:documentation>Bilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB016">
        <xs:annotation>
          <xs:documentation>Bishop Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB017">
        <xs:annotation>
          <xs:documentation>Bishop Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB018">
        <xs:annotation>
          <xs:documentation>Blacktoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB019">
        <xs:annotation>
          <xs:documentation>Boynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB020">
        <xs:annotation>
          <xs:documentation>Brandesburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB021">
        <xs:annotation>
          <xs:documentation>Brantingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB022">
        <xs:annotation>
          <xs:documentation>Broomfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB023">
        <xs:annotation>
          <xs:documentation>Bubwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB024">
        <xs:annotation>
          <xs:documentation>Bugthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB025">
        <xs:annotation>
          <xs:documentation>Burstwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB026">
        <xs:annotation>
          <xs:documentation>Burton Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB027">
        <xs:annotation>
          <xs:documentation>Burton Constable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB028">
        <xs:annotation>
          <xs:documentation>Burton Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB029">
        <xs:annotation>
          <xs:documentation>Burton Pidsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB030">
        <xs:annotation>
          <xs:documentation>Carnaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB031">
        <xs:annotation>
          <xs:documentation>Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB032">
        <xs:annotation>
          <xs:documentation>Catwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB033">
        <xs:annotation>
          <xs:documentation>Cherry Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB034">
        <xs:annotation>
          <xs:documentation>Coniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB035">
        <xs:annotation>
          <xs:documentation>Cottam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB036">
        <xs:annotation>
          <xs:documentation>Cottingwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB037">
        <xs:annotation>
          <xs:documentation>Dalton Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB038">
        <xs:annotation>
          <xs:documentation>Driffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB039">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB040">
        <xs:annotation>
          <xs:documentation>East Garton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB041">
        <xs:annotation>
          <xs:documentation>Eastrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB042">
        <xs:annotation>
          <xs:documentation>Ellerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB043">
        <xs:annotation>
          <xs:documentation>Ellerker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB044">
        <xs:annotation>
          <xs:documentation>Ellerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB045">
        <xs:annotation>
          <xs:documentation>Elloughton-cum-Brough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB046">
        <xs:annotation>
          <xs:documentation>Elstronwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB047">
        <xs:annotation>
          <xs:documentation>Etton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB048">
        <xs:annotation>
          <xs:documentation>Everingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB049">
        <xs:annotation>
          <xs:documentation>Fangfoss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB050">
        <xs:annotation>
          <xs:documentation>Fimber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB051">
        <xs:annotation>
          <xs:documentation>Flamborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB052">
        <xs:annotation>
          <xs:documentation>Foggathorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB053">
        <xs:annotation>
          <xs:documentation>Foston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB054">
        <xs:annotation>
          <xs:documentation>Fridaythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB055">
        <xs:annotation>
          <xs:documentation>Full Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB056">
        <xs:annotation>
          <xs:documentation>Garton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB057">
        <xs:annotation>
          <xs:documentation>Gilberdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB058">
        <xs:annotation>
          <xs:documentation>Goodmanham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB059">
        <xs:annotation>
          <xs:documentation>Goole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB060">
        <xs:annotation>
          <xs:documentation>Goole Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB061">
        <xs:annotation>
          <xs:documentation>Gowdall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB062">
        <xs:annotation>
          <xs:documentation>Grindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB063">
        <xs:annotation>
          <xs:documentation>Halsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB064">
        <xs:annotation>
          <xs:documentation>Harpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB065">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB066">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB067">
        <xs:annotation>
          <xs:documentation>Hedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB068">
        <xs:annotation>
          <xs:documentation>Hessle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB069">
        <xs:annotation>
          <xs:documentation>Hollym</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB070">
        <xs:annotation>
          <xs:documentation>Holme upon Spalding Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB071">
        <xs:annotation>
          <xs:documentation>Holmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB072">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB073">
        <xs:annotation>
          <xs:documentation>Hornsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB074">
        <xs:annotation>
          <xs:documentation>Hotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB075">
        <xs:annotation>
          <xs:documentation>Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB076">
        <xs:annotation>
          <xs:documentation>Huggate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB077">
        <xs:annotation>
          <xs:documentation>Humbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB078">
        <xs:annotation>
          <xs:documentation>Hutton Cranswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB079">
        <xs:annotation>
          <xs:documentation>Kelk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB080">
        <xs:annotation>
          <xs:documentation>Keyingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB081">
        <xs:annotation>
          <xs:documentation>Kilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB082">
        <xs:annotation>
          <xs:documentation>Kilpin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB083">
        <xs:annotation>
          <xs:documentation>Kirby Underdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB084">
        <xs:annotation>
          <xs:documentation>Kirkburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB085">
        <xs:annotation>
          <xs:documentation>Langtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB086">
        <xs:annotation>
          <xs:documentation>Laxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB087">
        <xs:annotation>
          <xs:documentation>Leconfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB088">
        <xs:annotation>
          <xs:documentation>Leven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB089">
        <xs:annotation>
          <xs:documentation>Lockington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB090">
        <xs:annotation>
          <xs:documentation>Londesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB091">
        <xs:annotation>
          <xs:documentation>Lund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB092">
        <xs:annotation>
          <xs:documentation>Mappleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB093">
        <xs:annotation>
          <xs:documentation>Market Weighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB094">
        <xs:annotation>
          <xs:documentation>Melbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB095">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB096">
        <xs:annotation>
          <xs:documentation>Millington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB097">
        <xs:annotation>
          <xs:documentation>Molescroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB098">
        <xs:annotation>
          <xs:documentation>Nafferton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB099">
        <xs:annotation>
          <xs:documentation>Newbald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB100">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB101">
        <xs:annotation>
          <xs:documentation>Newton on Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB102">
        <xs:annotation>
          <xs:documentation>North Cave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB103">
        <xs:annotation>
          <xs:documentation>North Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB104">
        <xs:annotation>
          <xs:documentation>North Ferriby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB105">
        <xs:annotation>
          <xs:documentation>North Frodingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB106">
        <xs:annotation>
          <xs:documentation>Nunburnholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB107">
        <xs:annotation>
          <xs:documentation>Ottringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB108">
        <xs:annotation>
          <xs:documentation>Patrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB109">
        <xs:annotation>
          <xs:documentation>Paull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB110">
        <xs:annotation>
          <xs:documentation>Pocklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB111">
        <xs:annotation>
          <xs:documentation>Pollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB112">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB113">
        <xs:annotation>
          <xs:documentation>Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB114">
        <xs:annotation>
          <xs:documentation>Reedness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB115">
        <xs:annotation>
          <xs:documentation>Rimswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB116">
        <xs:annotation>
          <xs:documentation>Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB117">
        <xs:annotation>
          <xs:documentation>Riston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB118">
        <xs:annotation>
          <xs:documentation>Roos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB119">
        <xs:annotation>
          <xs:documentation>Routh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB120">
        <xs:annotation>
          <xs:documentation>Rowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB121">
        <xs:annotation>
          <xs:documentation>Rudston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB122">
        <xs:annotation>
          <xs:documentation>Sancton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB123">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB124">
        <xs:annotation>
          <xs:documentation>Seaton Ross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB125">
        <xs:annotation>
          <xs:documentation>Shipton Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB126">
        <xs:annotation>
          <xs:documentation>Sigglesthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB127">
        <xs:annotation>
          <xs:documentation>Skeffling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB128">
        <xs:annotation>
          <xs:documentation>Skerne and Wansford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB129">
        <xs:annotation>
          <xs:documentation>Skidby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB130">
        <xs:annotation>
          <xs:documentation>Skipsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB131">
        <xs:annotation>
          <xs:documentation>Skirlaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB132">
        <xs:annotation>
          <xs:documentation>Skirpenbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB133">
        <xs:annotation>
          <xs:documentation>Sledmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB134">
        <xs:annotation>
          <xs:documentation>Snaith and Cowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB135">
        <xs:annotation>
          <xs:documentation>South Cave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB136">
        <xs:annotation>
          <xs:documentation>South Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB137">
        <xs:annotation>
          <xs:documentation>Spaldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB138">
        <xs:annotation>
          <xs:documentation>Sproatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB139">
        <xs:annotation>
          <xs:documentation>Stamford Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB140">
        <xs:annotation>
          <xs:documentation>Sunk Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB141">
        <xs:annotation>
          <xs:documentation>Sutton upon Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB142">
        <xs:annotation>
          <xs:documentation>Swanland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB143">
        <xs:annotation>
          <xs:documentation>Swine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB144">
        <xs:annotation>
          <xs:documentation>Swinefleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB145">
        <xs:annotation>
          <xs:documentation>Thorngumbald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB146">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB147">
        <xs:annotation>
          <xs:documentation>Thwing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB148">
        <xs:annotation>
          <xs:documentation>Tibthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB149">
        <xs:annotation>
          <xs:documentation>Tickton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB150">
        <xs:annotation>
          <xs:documentation>Twin Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB151">
        <xs:annotation>
          <xs:documentation>Ulrome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB152">
        <xs:annotation>
          <xs:documentation>Walkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB153">
        <xs:annotation>
          <xs:documentation>Warter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB154">
        <xs:annotation>
          <xs:documentation>Watton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB155">
        <xs:annotation>
          <xs:documentation>Wawne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB156">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB157">
        <xs:annotation>
          <xs:documentation>Welwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB158">
        <xs:annotation>
          <xs:documentation>Wetwang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB159">
        <xs:annotation>
          <xs:documentation>Wilberfoss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB160">
        <xs:annotation>
          <xs:documentation>Withernsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB161">
        <xs:annotation>
          <xs:documentation>Withernwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB162">
        <xs:annotation>
          <xs:documentation>Wold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB163">
        <xs:annotation>
          <xs:documentation>Woodmansey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB164">
        <xs:annotation>
          <xs:documentation>Wressle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB165">
        <xs:annotation>
          <xs:documentation>Yapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB166">
        <xs:annotation>
          <xs:documentation>Beverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB167">
        <xs:annotation>
          <xs:documentation>Cottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB168">
        <xs:annotation>
          <xs:documentation>Anlaby with Anlaby Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB169">
        <xs:annotation>
          <xs:documentation>Bridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB170">
        <xs:annotation>
          <xs:documentation>Kirk Ella</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB171">
        <xs:annotation>
          <xs:documentation>Willerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC001">
        <xs:annotation>
          <xs:documentation>Ashby cum Fenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC002">
        <xs:annotation>
          <xs:documentation>Aylesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC003">
        <xs:annotation>
          <xs:documentation>Barnoldby le Beck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC004">
        <xs:annotation>
          <xs:documentation>Beelsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC005">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC006">
        <xs:annotation>
          <xs:documentation>Brigsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC007">
        <xs:annotation>
          <xs:documentation>East Ravendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC008">
        <xs:annotation>
          <xs:documentation>Habrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC009">
        <xs:annotation>
          <xs:documentation>Hatcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC010">
        <xs:annotation>
          <xs:documentation>Hawerby cum Beesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC011">
        <xs:annotation>
          <xs:documentation>Healing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC012">
        <xs:annotation>
          <xs:documentation>Humberston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC013">
        <xs:annotation>
          <xs:documentation>Immingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC014">
        <xs:annotation>
          <xs:documentation>Irby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC015">
        <xs:annotation>
          <xs:documentation>Laceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC016">
        <xs:annotation>
          <xs:documentation>New Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC017">
        <xs:annotation>
          <xs:documentation>Stallingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC018">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC019">
        <xs:annotation>
          <xs:documentation>West Ravendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC020">
        <xs:annotation>
          <xs:documentation>Wold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC021">
        <xs:annotation>
          <xs:documentation>Great Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD001">
        <xs:annotation>
          <xs:documentation>Alkborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD002">
        <xs:annotation>
          <xs:documentation>Amcotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD003">
        <xs:annotation>
          <xs:documentation>Appleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD004">
        <xs:annotation>
          <xs:documentation>Barnetby le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD005">
        <xs:annotation>
          <xs:documentation>Barrow upon Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD006">
        <xs:annotation>
          <xs:documentation>Barton-upon-Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD007">
        <xs:annotation>
          <xs:documentation>Belton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD008">
        <xs:annotation>
          <xs:documentation>Bonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD009">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD010">
        <xs:annotation>
          <xs:documentation>Brigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD011">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD012">
        <xs:annotation>
          <xs:documentation>Burringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD013">
        <xs:annotation>
          <xs:documentation>Burton upon Stather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD014">
        <xs:annotation>
          <xs:documentation>Cadney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD015">
        <xs:annotation>
          <xs:documentation>Crowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD016">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD017">
        <xs:annotation>
          <xs:documentation>East Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD018">
        <xs:annotation>
          <xs:documentation>East Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD019">
        <xs:annotation>
          <xs:documentation>Eastoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD020">
        <xs:annotation>
          <xs:documentation>Elsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD021">
        <xs:annotation>
          <xs:documentation>Epworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD022">
        <xs:annotation>
          <xs:documentation>Flixborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD023">
        <xs:annotation>
          <xs:documentation>Garthorpe and Fockerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD024">
        <xs:annotation>
          <xs:documentation>Goxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD025">
        <xs:annotation>
          <xs:documentation>Gunness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD027">
        <xs:annotation>
          <xs:documentation>Haxey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD028">
        <xs:annotation>
          <xs:documentation>Hibaldstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD029">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD030">
        <xs:annotation>
          <xs:documentation>Horkstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD031">
        <xs:annotation>
          <xs:documentation>Keadby with Althorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD032">
        <xs:annotation>
          <xs:documentation>Kirmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD033">
        <xs:annotation>
          <xs:documentation>Kirton in Lindsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD034">
        <xs:annotation>
          <xs:documentation>Luddington and Haldenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD035">
        <xs:annotation>
          <xs:documentation>Manton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD036">
        <xs:annotation>
          <xs:documentation>Melton Ross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD037">
        <xs:annotation>
          <xs:documentation>Messingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD038">
        <xs:annotation>
          <xs:documentation>New Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD039">
        <xs:annotation>
          <xs:documentation>North Killingholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD040">
        <xs:annotation>
          <xs:documentation>Owston Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD041">
        <xs:annotation>
          <xs:documentation>Redbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD042">
        <xs:annotation>
          <xs:documentation>Roxby cum Risby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD043">
        <xs:annotation>
          <xs:documentation>Saxby All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD044">
        <xs:annotation>
          <xs:documentation>Scawby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD045">
        <xs:annotation>
          <xs:documentation>South Ferriby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD046">
        <xs:annotation>
          <xs:documentation>South Killingholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD047">
        <xs:annotation>
          <xs:documentation>Thornton Curtis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD048">
        <xs:annotation>
          <xs:documentation>Ulceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD049">
        <xs:annotation>
          <xs:documentation>West Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD050">
        <xs:annotation>
          <xs:documentation>West Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD051">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD052">
        <xs:annotation>
          <xs:documentation>Winteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD053">
        <xs:annotation>
          <xs:documentation>Winterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD054">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD055">
        <xs:annotation>
          <xs:documentation>Worlaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD056">
        <xs:annotation>
          <xs:documentation>Wrawby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD057">
        <xs:annotation>
          <xs:documentation>Wroot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD058">
        <xs:annotation>
          <xs:documentation>Ashby Parkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF001">
        <xs:annotation>
          <xs:documentation>Acaster Malbis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF002">
        <xs:annotation>
          <xs:documentation>Askham Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF003">
        <xs:annotation>
          <xs:documentation>Askham Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF004">
        <xs:annotation>
          <xs:documentation>Bishopthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF005">
        <xs:annotation>
          <xs:documentation>Clifton Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF006">
        <xs:annotation>
          <xs:documentation>Copmanthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF007">
        <xs:annotation>
          <xs:documentation>Deighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF008">
        <xs:annotation>
          <xs:documentation>Dunnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF009">
        <xs:annotation>
          <xs:documentation>Earswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF010">
        <xs:annotation>
          <xs:documentation>Elvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF011">
        <xs:annotation>
          <xs:documentation>Fulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF012">
        <xs:annotation>
          <xs:documentation>Haxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF013">
        <xs:annotation>
          <xs:documentation>Heslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF014">
        <xs:annotation>
          <xs:documentation>Hessay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF015">
        <xs:annotation>
          <xs:documentation>Heworth Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF016">
        <xs:annotation>
          <xs:documentation>Holtby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF017">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF018">
        <xs:annotation>
          <xs:documentation>Kexby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF019">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF020">
        <xs:annotation>
          <xs:documentation>Naburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF021">
        <xs:annotation>
          <xs:documentation>Nether Poppleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF022">
        <xs:annotation>
          <xs:documentation>New Earswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF023">
        <xs:annotation>
          <xs:documentation>Osbaldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF024">
        <xs:annotation>
          <xs:documentation>Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF025">
        <xs:annotation>
          <xs:documentation>Rufforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF026">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF027">
        <xs:annotation>
          <xs:documentation>Stockton-on-the-Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF028">
        <xs:annotation>
          <xs:documentation>Strensall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF029">
        <xs:annotation>
          <xs:documentation>Towthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF030">
        <xs:annotation>
          <xs:documentation>Upper Poppleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF031">
        <xs:annotation>
          <xs:documentation>Wheldrake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF032">
        <xs:annotation>
          <xs:documentation>Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP001">
        <xs:annotation>
          <xs:documentation>Ashwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP002">
        <xs:annotation>
          <xs:documentation>Ayston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP003">
        <xs:annotation>
          <xs:documentation>Barleythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP004">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP005">
        <xs:annotation>
          <xs:documentation>Barrowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP006">
        <xs:annotation>
          <xs:documentation>Beaumont Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP007">
        <xs:annotation>
          <xs:documentation>Belton-in-Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP008">
        <xs:annotation>
          <xs:documentation>Bisbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP009">
        <xs:annotation>
          <xs:documentation>Braunston-in-Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP010">
        <xs:annotation>
          <xs:documentation>Brooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP011">
        <xs:annotation>
          <xs:documentation>Burley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP012">
        <xs:annotation>
          <xs:documentation>Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP013">
        <xs:annotation>
          <xs:documentation>Clipsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP014">
        <xs:annotation>
          <xs:documentation>Cottesmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP015">
        <xs:annotation>
          <xs:documentation>Edith Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP016">
        <xs:annotation>
          <xs:documentation>Egleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP017">
        <xs:annotation>
          <xs:documentation>Empingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP018">
        <xs:annotation>
          <xs:documentation>Essendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP019">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP020">
        <xs:annotation>
          <xs:documentation>Glaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP021">
        <xs:annotation>
          <xs:documentation>Great Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP022">
        <xs:annotation>
          <xs:documentation>Greetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP023">
        <xs:annotation>
          <xs:documentation>Gunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP024">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP025">
        <xs:annotation>
          <xs:documentation>Horn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP026">
        <xs:annotation>
          <xs:documentation>Ketton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP027">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP028">
        <xs:annotation>
          <xs:documentation>Leighfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP029">
        <xs:annotation>
          <xs:documentation>Little Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP030">
        <xs:annotation>
          <xs:documentation>Lyddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP031">
        <xs:annotation>
          <xs:documentation>Lyndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP032">
        <xs:annotation>
          <xs:documentation>Manton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP033">
        <xs:annotation>
          <xs:documentation>Market Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP034">
        <xs:annotation>
          <xs:documentation>Martinsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP035">
        <xs:annotation>
          <xs:documentation>Morcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP036">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP037">
        <xs:annotation>
          <xs:documentation>North Luffenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP038">
        <xs:annotation>
          <xs:documentation>Oakham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP039">
        <xs:annotation>
          <xs:documentation>Pickworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP040">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP041">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP042">
        <xs:annotation>
          <xs:documentation>Ridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP043">
        <xs:annotation>
          <xs:documentation>Ryhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP044">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP045">
        <xs:annotation>
          <xs:documentation>South Luffenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP046">
        <xs:annotation>
          <xs:documentation>Stoke Dry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP047">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP048">
        <xs:annotation>
          <xs:documentation>Teigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP049">
        <xs:annotation>
          <xs:documentation>Thistleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP050">
        <xs:annotation>
          <xs:documentation>Thorpe by Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP051">
        <xs:annotation>
          <xs:documentation>Tickencote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP052">
        <xs:annotation>
          <xs:documentation>Tinwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP053">
        <xs:annotation>
          <xs:documentation>Tixover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP054">
        <xs:annotation>
          <xs:documentation>Uppingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP055">
        <xs:annotation>
          <xs:documentation>Wardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP056">
        <xs:annotation>
          <xs:documentation>Whissendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP057">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP058">
        <xs:annotation>
          <xs:documentation>Wing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA001">
        <xs:annotation>
          <xs:documentation>Abbey Dore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA002">
        <xs:annotation>
          <xs:documentation>Aconbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA003">
        <xs:annotation>
          <xs:documentation>Acton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA004">
        <xs:annotation>
          <xs:documentation>Adforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA005">
        <xs:annotation>
          <xs:documentation>Allensmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA006">
        <xs:annotation>
          <xs:documentation>Almeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA007">
        <xs:annotation>
          <xs:documentation>Ashperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA008">
        <xs:annotation>
          <xs:documentation>Aston Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA009">
        <xs:annotation>
          <xs:documentation>Avenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA010">
        <xs:annotation>
          <xs:documentation>Aylton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA011">
        <xs:annotation>
          <xs:documentation>Aymestrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA012">
        <xs:annotation>
          <xs:documentation>Bacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA013">
        <xs:annotation>
          <xs:documentation>Ballingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA014">
        <xs:annotation>
          <xs:documentation>Bartestree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA015">
        <xs:annotation>
          <xs:documentation>Birley with Upper Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA016">
        <xs:annotation>
          <xs:documentation>Bishop's Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA017">
        <xs:annotation>
          <xs:documentation>Bishopstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA018">
        <xs:annotation>
          <xs:documentation>Blakemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA019">
        <xs:annotation>
          <xs:documentation>Bodenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA020">
        <xs:annotation>
          <xs:documentation>Bolstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA021">
        <xs:annotation>
          <xs:documentation>Bosbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA022">
        <xs:annotation>
          <xs:documentation>Brampton Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA023">
        <xs:annotation>
          <xs:documentation>Brampton Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA024">
        <xs:annotation>
          <xs:documentation>Bredenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA025">
        <xs:annotation>
          <xs:documentation>Bredwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA026">
        <xs:annotation>
          <xs:documentation>Breinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA027">
        <xs:annotation>
          <xs:documentation>Bridge Sollers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA028">
        <xs:annotation>
          <xs:documentation>Bridstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA029">
        <xs:annotation>
          <xs:documentation>Brilley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA030">
        <xs:annotation>
          <xs:documentation>Brimfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA031">
        <xs:annotation>
          <xs:documentation>Brinsop and Wormsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA032">
        <xs:annotation>
          <xs:documentation>Brobury with Monnington on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA033">
        <xs:annotation>
          <xs:documentation>Brockhampton (Old Gore)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA034">
        <xs:annotation>
          <xs:documentation>Brockhampton (Bringsty)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA035">
        <xs:annotation>
          <xs:documentation>Bromyard and Winslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA036">
        <xs:annotation>
          <xs:documentation>Buckton and Coxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA037">
        <xs:annotation>
          <xs:documentation>Burghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA038">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA039">
        <xs:annotation>
          <xs:documentation>Byford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA040">
        <xs:annotation>
          <xs:documentation>Byton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA041">
        <xs:annotation>
          <xs:documentation>Callow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA042">
        <xs:annotation>
          <xs:documentation>Canon Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA043">
        <xs:annotation>
          <xs:documentation>Canon Pyon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA044">
        <xs:annotation>
          <xs:documentation>Castle Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA045">
        <xs:annotation>
          <xs:documentation>Clehonger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA046">
        <xs:annotation>
          <xs:documentation>Clifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA047">
        <xs:annotation>
          <xs:documentation>Coddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA048">
        <xs:annotation>
          <xs:documentation>Collington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA049">
        <xs:annotation>
          <xs:documentation>Colwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA050">
        <xs:annotation>
          <xs:documentation>Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA051">
        <xs:annotation>
          <xs:documentation>Cradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA052">
        <xs:annotation>
          <xs:documentation>Craswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA053">
        <xs:annotation>
          <xs:documentation>Credenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA054">
        <xs:annotation>
          <xs:documentation>Croft and Yarpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA055">
        <xs:annotation>
          <xs:documentation>Cusop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA056">
        <xs:annotation>
          <xs:documentation>Dewsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA057">
        <xs:annotation>
          <xs:documentation>Dilwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA058">
        <xs:annotation>
          <xs:documentation>Dinedor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA059">
        <xs:annotation>
          <xs:documentation>Dinmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA060">
        <xs:annotation>
          <xs:documentation>Docklow and Hampton Wafer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA061">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA062">
        <xs:annotation>
          <xs:documentation>Dormington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA063">
        <xs:annotation>
          <xs:documentation>Dorstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA064">
        <xs:annotation>
          <xs:documentation>Downton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA065">
        <xs:annotation>
          <xs:documentation>Dulas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA066">
        <xs:annotation>
          <xs:documentation>Eardisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA067">
        <xs:annotation>
          <xs:documentation>Eardisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA068">
        <xs:annotation>
          <xs:documentation>Eastnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA069">
        <xs:annotation>
          <xs:documentation>Eaton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA070">
        <xs:annotation>
          <xs:documentation>Edvin Loach and Saltmarshe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA071">
        <xs:annotation>
          <xs:documentation>Edwyn Ralph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA072">
        <xs:annotation>
          <xs:documentation>Eggleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA073">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA074">
        <xs:annotation>
          <xs:documentation>Evesbatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA075">
        <xs:annotation>
          <xs:documentation>Ewyas Harold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA076">
        <xs:annotation>
          <xs:documentation>Eye, Moreton and Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA077">
        <xs:annotation>
          <xs:documentation>Eyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA078">
        <xs:annotation>
          <xs:documentation>Felton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA079">
        <xs:annotation>
          <xs:documentation>Ford and Stoke Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA080">
        <xs:annotation>
          <xs:documentation>Fownhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA081">
        <xs:annotation>
          <xs:documentation>Foy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA082">
        <xs:annotation>
          <xs:documentation>Ganarew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA083">
        <xs:annotation>
          <xs:documentation>Garway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA084">
        <xs:annotation>
          <xs:documentation>Goodrich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA085">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA086">
        <xs:annotation>
          <xs:documentation>Grendon Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA087">
        <xs:annotation>
          <xs:documentation>Hampton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA088">
        <xs:annotation>
          <xs:documentation>Hampton Charles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA089">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA090">
        <xs:annotation>
          <xs:documentation>Hatfield and Newhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA091">
        <xs:annotation>
          <xs:documentation>Haywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA092">
        <xs:annotation>
          <xs:documentation>Hentland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA093">
        <xs:annotation>
          <xs:documentation>Holme Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA094">
        <xs:annotation>
          <xs:documentation>Holmer &amp; Shelwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA095">
        <xs:annotation>
          <xs:documentation>Hope Mansell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA096">
        <xs:annotation>
          <xs:documentation>Hope under Dinmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA097">
        <xs:annotation>
          <xs:documentation>How Caple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA098">
        <xs:annotation>
          <xs:documentation>Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA099">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA100">
        <xs:annotation>
          <xs:documentation>Kenchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA101">
        <xs:annotation>
          <xs:documentation>Kenderchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA102">
        <xs:annotation>
          <xs:documentation>Kentchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA103">
        <xs:annotation>
          <xs:documentation>Kilpeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA104">
        <xs:annotation>
          <xs:documentation>Kimbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA105">
        <xs:annotation>
          <xs:documentation>King's Pyon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA106">
        <xs:annotation>
          <xs:documentation>Kings Caple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA107">
        <xs:annotation>
          <xs:documentation>Kingsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA108">
        <xs:annotation>
          <xs:documentation>Kingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA109">
        <xs:annotation>
          <xs:documentation>Kington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA110">
        <xs:annotation>
          <xs:documentation>Kington Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA111">
        <xs:annotation>
          <xs:documentation>Kinnersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA112">
        <xs:annotation>
          <xs:documentation>Kinsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA113">
        <xs:annotation>
          <xs:documentation>Knill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA114">
        <xs:annotation>
          <xs:documentation>Laysters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA115">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA116">
        <xs:annotation>
          <xs:documentation>Ledbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA117">
        <xs:annotation>
          <xs:documentation>Leinthall Starkes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA118">
        <xs:annotation>
          <xs:documentation>Leintwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA119">
        <xs:annotation>
          <xs:documentation>Leominster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA120">
        <xs:annotation>
          <xs:documentation>Letton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA121">
        <xs:annotation>
          <xs:documentation>Lingen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA122">
        <xs:annotation>
          <xs:documentation>Linton (Bringsty)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA123">
        <xs:annotation>
          <xs:documentation>Linton (Penyard)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA124">
        <xs:annotation>
          <xs:documentation>Little Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA125">
        <xs:annotation>
          <xs:documentation>Little Cowarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA126">
        <xs:annotation>
          <xs:documentation>Little Dewchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA127">
        <xs:annotation>
          <xs:documentation>Little Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA128">
        <xs:annotation>
          <xs:documentation>Little Marcle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA129">
        <xs:annotation>
          <xs:documentation>Llancillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA130">
        <xs:annotation>
          <xs:documentation>Llandinabo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA131">
        <xs:annotation>
          <xs:documentation>Llangarron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA132">
        <xs:annotation>
          <xs:documentation>Llanrothal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA133">
        <xs:annotation>
          <xs:documentation>Llanveynoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA134">
        <xs:annotation>
          <xs:documentation>Llanwarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA135">
        <xs:annotation>
          <xs:documentation>Longtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA136">
        <xs:annotation>
          <xs:documentation>Lower Bullingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA137">
        <xs:annotation>
          <xs:documentation>Lower Harpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA138">
        <xs:annotation>
          <xs:documentation>Lucton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA139">
        <xs:annotation>
          <xs:documentation>Lugwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA140">
        <xs:annotation>
          <xs:documentation>Luston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA141">
        <xs:annotation>
          <xs:documentation>Lyonshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA142">
        <xs:annotation>
          <xs:documentation>Madley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA143">
        <xs:annotation>
          <xs:documentation>Mansell Gamage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA144">
        <xs:annotation>
          <xs:documentation>Mansell Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA145">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA146">
        <xs:annotation>
          <xs:documentation>Marstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA147">
        <xs:annotation>
          <xs:documentation>Mathon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA148">
        <xs:annotation>
          <xs:documentation>Michaelchurch Escley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA149">
        <xs:annotation>
          <xs:documentation>Middleton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA150">
        <xs:annotation>
          <xs:documentation>Moccas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA151">
        <xs:annotation>
          <xs:documentation>Monkland and Stretford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA152">
        <xs:annotation>
          <xs:documentation>Mordiford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA153">
        <xs:annotation>
          <xs:documentation>Moreton Jeffries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA154">
        <xs:annotation>
          <xs:documentation>Moreton on Lugg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA155">
        <xs:annotation>
          <xs:documentation>Much Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA156">
        <xs:annotation>
          <xs:documentation>Much Cowarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA157">
        <xs:annotation>
          <xs:documentation>Much Dewchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA158">
        <xs:annotation>
          <xs:documentation>Much Marcle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA159">
        <xs:annotation>
          <xs:documentation>Munsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA160">
        <xs:annotation>
          <xs:documentation>Newton (Hampton Court)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA161">
        <xs:annotation>
          <xs:documentation>Newton (Golden Valley South)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA162">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA163">
        <xs:annotation>
          <xs:documentation>Norton Canon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA164">
        <xs:annotation>
          <xs:documentation>Ocle Pychard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA165">
        <xs:annotation>
          <xs:documentation>Orcop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA166">
        <xs:annotation>
          <xs:documentation>Orleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA167">
        <xs:annotation>
          <xs:documentation>Pembridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA168">
        <xs:annotation>
          <xs:documentation>Pencombe with Grendon Warren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA169">
        <xs:annotation>
          <xs:documentation>Pencoyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA170">
        <xs:annotation>
          <xs:documentation>Peterchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA171">
        <xs:annotation>
          <xs:documentation>Peterstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA172">
        <xs:annotation>
          <xs:documentation>Pipe and Lyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA173">
        <xs:annotation>
          <xs:documentation>Pipe Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA174">
        <xs:annotation>
          <xs:documentation>Pixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA175">
        <xs:annotation>
          <xs:documentation>Preston on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA176">
        <xs:annotation>
          <xs:documentation>Preston Wynne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA177">
        <xs:annotation>
          <xs:documentation>Pudlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA178">
        <xs:annotation>
          <xs:documentation>Putley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA179">
        <xs:annotation>
          <xs:documentation>Richards Castle (Hereford)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA180">
        <xs:annotation>
          <xs:documentation>Rodd, Nash and Little Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA181">
        <xs:annotation>
          <xs:documentation>Ross-on-Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA182">
        <xs:annotation>
          <xs:documentation>Ross Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA183">
        <xs:annotation>
          <xs:documentation>Rowlstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA184">
        <xs:annotation>
          <xs:documentation>St. Devereux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA185">
        <xs:annotation>
          <xs:documentation>St. Margarets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA186">
        <xs:annotation>
          <xs:documentation>St. Weonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA187">
        <xs:annotation>
          <xs:documentation>Sarnesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA188">
        <xs:annotation>
          <xs:documentation>Sellack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA189">
        <xs:annotation>
          <xs:documentation>Shobdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA190">
        <xs:annotation>
          <xs:documentation>Sollers Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA191">
        <xs:annotation>
          <xs:documentation>Stanford Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA192">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA193">
        <xs:annotation>
          <xs:documentation>Staunton on Arrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA194">
        <xs:annotation>
          <xs:documentation>Staunton on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA195">
        <xs:annotation>
          <xs:documentation>Stoke Edith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA196">
        <xs:annotation>
          <xs:documentation>Stoke Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA197">
        <xs:annotation>
          <xs:documentation>Stretton Grandison</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA198">
        <xs:annotation>
          <xs:documentation>Stretton Sugwas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA199">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA200">
        <xs:annotation>
          <xs:documentation>Tarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA201">
        <xs:annotation>
          <xs:documentation>Tedstone Delamere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA202">
        <xs:annotation>
          <xs:documentation>Tedstone Wafer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA203">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA204">
        <xs:annotation>
          <xs:documentation>Thruxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA205">
        <xs:annotation>
          <xs:documentation>Titley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA206">
        <xs:annotation>
          <xs:documentation>Tretire with Michaelchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA207">
        <xs:annotation>
          <xs:documentation>Treville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA208">
        <xs:annotation>
          <xs:documentation>Turnastone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA209">
        <xs:annotation>
          <xs:documentation>Tyberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA210">
        <xs:annotation>
          <xs:documentation>Ullingswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA211">
        <xs:annotation>
          <xs:documentation>Upper Sapey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA212">
        <xs:annotation>
          <xs:documentation>Upton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA213">
        <xs:annotation>
          <xs:documentation>Vowchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA214">
        <xs:annotation>
          <xs:documentation>Wacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA215">
        <xs:annotation>
          <xs:documentation>Walford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA216">
        <xs:annotation>
          <xs:documentation>Walford, Letton and Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA217">
        <xs:annotation>
          <xs:documentation>Walterstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA218">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA219">
        <xs:annotation>
          <xs:documentation>Wellington Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA220">
        <xs:annotation>
          <xs:documentation>Welsh Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA221">
        <xs:annotation>
          <xs:documentation>Welsh Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA222">
        <xs:annotation>
          <xs:documentation>Weobley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA223">
        <xs:annotation>
          <xs:documentation>Westhide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA224">
        <xs:annotation>
          <xs:documentation>Weston Beggard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA225">
        <xs:annotation>
          <xs:documentation>Weston under Penyard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA226">
        <xs:annotation>
          <xs:documentation>Whitbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA227">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA228">
        <xs:annotation>
          <xs:documentation>Whitney-on-Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA229">
        <xs:annotation>
          <xs:documentation>Wigmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA230">
        <xs:annotation>
          <xs:documentation>Willersley and Winforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA231">
        <xs:annotation>
          <xs:documentation>Willey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA232">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA233">
        <xs:annotation>
          <xs:documentation>Wolferlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA234">
        <xs:annotation>
          <xs:documentation>Woolhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA235">
        <xs:annotation>
          <xs:documentation>Wormbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA236">
        <xs:annotation>
          <xs:documentation>Yarkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA237">
        <xs:annotation>
          <xs:documentation>Yatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA238">
        <xs:annotation>
          <xs:documentation>Yazor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA239">
        <xs:annotation>
          <xs:documentation>Belmont Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA240">
        <xs:annotation>
          <xs:documentation>Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF001">
        <xs:annotation>
          <xs:documentation>Chetwynd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF002">
        <xs:annotation>
          <xs:documentation>Chetwynd Aston and Woodcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF003">
        <xs:annotation>
          <xs:documentation>Church Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF004">
        <xs:annotation>
          <xs:documentation>Dawley Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF005">
        <xs:annotation>
          <xs:documentation>Edgmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF006">
        <xs:annotation>
          <xs:documentation>Ercall Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF007">
        <xs:annotation>
          <xs:documentation>Eyton Upon The Weald Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF008">
        <xs:annotation>
          <xs:documentation>Great Dawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF009">
        <xs:annotation>
          <xs:documentation>Hadley &amp; Leegomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF010">
        <xs:annotation>
          <xs:documentation>Hollinswood and Randlay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF011">
        <xs:annotation>
          <xs:documentation>Ketley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF012">
        <xs:annotation>
          <xs:documentation>Kynnersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF013">
        <xs:annotation>
          <xs:documentation>Lawley and Overdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF014">
        <xs:annotation>
          <xs:documentation>Lilleshall and Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF015">
        <xs:annotation>
          <xs:documentation>Little Wenlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF016">
        <xs:annotation>
          <xs:documentation>Madeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF017">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF018">
        <xs:annotation>
          <xs:documentation>Oakengates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF019">
        <xs:annotation>
          <xs:documentation>Preston Upon The Weald Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF020">
        <xs:annotation>
          <xs:documentation>Rodington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF021">
        <xs:annotation>
          <xs:documentation>St Georges and Priorslee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF022">
        <xs:annotation>
          <xs:documentation>Stirchley and Brookside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF023">
        <xs:annotation>
          <xs:documentation>The Gorge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF024">
        <xs:annotation>
          <xs:documentation>Tibberton and Cherrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF025">
        <xs:annotation>
          <xs:documentation>Waters Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF026">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF027">
        <xs:annotation>
          <xs:documentation>Wrockwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF028">
        <xs:annotation>
          <xs:documentation>Wrockwardine Wood and Trench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA001">
        <xs:annotation>
          <xs:documentation>Bathampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA002">
        <xs:annotation>
          <xs:documentation>Batheaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA003">
        <xs:annotation>
          <xs:documentation>Bathford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA004">
        <xs:annotation>
          <xs:documentation>Cameley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA005">
        <xs:annotation>
          <xs:documentation>Camerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA006">
        <xs:annotation>
          <xs:documentation>Charlcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA007">
        <xs:annotation>
          <xs:documentation>Chelwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA008">
        <xs:annotation>
          <xs:documentation>Chew Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA009">
        <xs:annotation>
          <xs:documentation>Chew Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA010">
        <xs:annotation>
          <xs:documentation>Claverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA011">
        <xs:annotation>
          <xs:documentation>Clutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA012">
        <xs:annotation>
          <xs:documentation>Combe Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA013">
        <xs:annotation>
          <xs:documentation>Compton Dando</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA014">
        <xs:annotation>
          <xs:documentation>Compton Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA015">
        <xs:annotation>
          <xs:documentation>Corston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA016">
        <xs:annotation>
          <xs:documentation>Dunkerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA017">
        <xs:annotation>
          <xs:documentation>East Harptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA018">
        <xs:annotation>
          <xs:documentation>Englishcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA019">
        <xs:annotation>
          <xs:documentation>Farmborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA020">
        <xs:annotation>
          <xs:documentation>Farrington Gurney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA021">
        <xs:annotation>
          <xs:documentation>Freshford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA022">
        <xs:annotation>
          <xs:documentation>High Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA023">
        <xs:annotation>
          <xs:documentation>Hinton Blewett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA024">
        <xs:annotation>
          <xs:documentation>Hinton Charterhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA025">
        <xs:annotation>
          <xs:documentation>Kelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA026">
        <xs:annotation>
          <xs:documentation>Keynsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA027">
        <xs:annotation>
          <xs:documentation>Marksbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA028">
        <xs:annotation>
          <xs:documentation>Monkton Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA029">
        <xs:annotation>
          <xs:documentation>Nempnett Thrubwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA030">
        <xs:annotation>
          <xs:documentation>Newton St. Loe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA031">
        <xs:annotation>
          <xs:documentation>North Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA032">
        <xs:annotation>
          <xs:documentation>Norton Malreward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA033">
        <xs:annotation>
          <xs:documentation>Norton-Radstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA034">
        <xs:annotation>
          <xs:documentation>Paulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA035">
        <xs:annotation>
          <xs:documentation>Peasedown St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA036">
        <xs:annotation>
          <xs:documentation>Priston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA037">
        <xs:annotation>
          <xs:documentation>Publow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA038">
        <xs:annotation>
          <xs:documentation>St. Catherine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA039">
        <xs:annotation>
          <xs:documentation>Saltford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA040">
        <xs:annotation>
          <xs:documentation>Shoscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA041">
        <xs:annotation>
          <xs:documentation>Southstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA042">
        <xs:annotation>
          <xs:documentation>Stanton Drew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA043">
        <xs:annotation>
          <xs:documentation>Stowey-Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA044">
        <xs:annotation>
          <xs:documentation>Swainswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA045">
        <xs:annotation>
          <xs:documentation>Timsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA046">
        <xs:annotation>
          <xs:documentation>Ubley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA047">
        <xs:annotation>
          <xs:documentation>Wellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA048">
        <xs:annotation>
          <xs:documentation>West Harptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA049">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC001">
        <xs:annotation>
          <xs:documentation>Abbots Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC002">
        <xs:annotation>
          <xs:documentation>Backwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC003">
        <xs:annotation>
          <xs:documentation>Banwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC004">
        <xs:annotation>
          <xs:documentation>Barrow Gurney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC005">
        <xs:annotation>
          <xs:documentation>Blagdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC006">
        <xs:annotation>
          <xs:documentation>Bleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC007">
        <xs:annotation>
          <xs:documentation>Brockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC008">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC009">
        <xs:annotation>
          <xs:documentation>Butcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC010">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC011">
        <xs:annotation>
          <xs:documentation>Clapton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC012">
        <xs:annotation>
          <xs:documentation>Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC013">
        <xs:annotation>
          <xs:documentation>Clevedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC014">
        <xs:annotation>
          <xs:documentation>Congresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC015">
        <xs:annotation>
          <xs:documentation>Dundry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC016">
        <xs:annotation>
          <xs:documentation>Easton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC017">
        <xs:annotation>
          <xs:documentation>Flax Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC018">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC019">
        <xs:annotation>
          <xs:documentation>Kenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC020">
        <xs:annotation>
          <xs:documentation>Kewstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC021">
        <xs:annotation>
          <xs:documentation>Kingston Seymour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC022">
        <xs:annotation>
          <xs:documentation>Locking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC023">
        <xs:annotation>
          <xs:documentation>Long Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC024">
        <xs:annotation>
          <xs:documentation>Loxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC025">
        <xs:annotation>
          <xs:documentation>Nailsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC026">
        <xs:annotation>
          <xs:documentation>Portbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC027">
        <xs:annotation>
          <xs:documentation>Portishead and North Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC028">
        <xs:annotation>
          <xs:documentation>Puxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC029">
        <xs:annotation>
          <xs:documentation>Tickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC030">
        <xs:annotation>
          <xs:documentation>Walton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC031">
        <xs:annotation>
          <xs:documentation>Weston-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC032">
        <xs:annotation>
          <xs:documentation>Wick St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC033">
        <xs:annotation>
          <xs:documentation>Winford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC034">
        <xs:annotation>
          <xs:documentation>Winscombe and Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC035">
        <xs:annotation>
          <xs:documentation>Wraxall and Failand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC036">
        <xs:annotation>
          <xs:documentation>Wrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC037">
        <xs:annotation>
          <xs:documentation>Yatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC038">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC039">
        <xs:annotation>
          <xs:documentation>St. Georges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD001">
        <xs:annotation>
          <xs:documentation>Acton Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD002">
        <xs:annotation>
          <xs:documentation>Almondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD003">
        <xs:annotation>
          <xs:documentation>Alveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD004">
        <xs:annotation>
          <xs:documentation>Aust</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD005">
        <xs:annotation>
          <xs:documentation>Badminton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD006">
        <xs:annotation>
          <xs:documentation>Bitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD007">
        <xs:annotation>
          <xs:documentation>Bradley Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD008">
        <xs:annotation>
          <xs:documentation>Charfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD009">
        <xs:annotation>
          <xs:documentation>Cold Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD010">
        <xs:annotation>
          <xs:documentation>Cromhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD011">
        <xs:annotation>
          <xs:documentation>Dodington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD012">
        <xs:annotation>
          <xs:documentation>Doynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD013">
        <xs:annotation>
          <xs:documentation>Dyrham and Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD014">
        <xs:annotation>
          <xs:documentation>Falfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD015">
        <xs:annotation>
          <xs:documentation>Filton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD016">
        <xs:annotation>
          <xs:documentation>Frampton Cotterell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD017">
        <xs:annotation>
          <xs:documentation>Hanham Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD018">
        <xs:annotation>
          <xs:documentation>Hawkesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD019">
        <xs:annotation>
          <xs:documentation>Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD020">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD021">
        <xs:annotation>
          <xs:documentation>Iron Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD022">
        <xs:annotation>
          <xs:documentation>Little Sodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD023">
        <xs:annotation>
          <xs:documentation>Mangotsfield Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD024">
        <xs:annotation>
          <xs:documentation>Marshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD025">
        <xs:annotation>
          <xs:documentation>Oldbury-upon-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD026">
        <xs:annotation>
          <xs:documentation>Oldland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD027">
        <xs:annotation>
          <xs:documentation>Olveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD028">
        <xs:annotation>
          <xs:documentation>Patchway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD029">
        <xs:annotation>
          <xs:documentation>Pilning and Severn Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD030">
        <xs:annotation>
          <xs:documentation>Pucklechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD031">
        <xs:annotation>
          <xs:documentation>Rangeworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD032">
        <xs:annotation>
          <xs:documentation>Rockhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD033">
        <xs:annotation>
          <xs:documentation>Siston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD034">
        <xs:annotation>
          <xs:documentation>Sodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD035">
        <xs:annotation>
          <xs:documentation>Stoke Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD036">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD037">
        <xs:annotation>
          <xs:documentation>Tormarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD038">
        <xs:annotation>
          <xs:documentation>Tortworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD039">
        <xs:annotation>
          <xs:documentation>Tytherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD040">
        <xs:annotation>
          <xs:documentation>Westerleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD041">
        <xs:annotation>
          <xs:documentation>Wick and Abson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD042">
        <xs:annotation>
          <xs:documentation>Wickwar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD043">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD044">
        <xs:annotation>
          <xs:documentation>Yate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD045">
        <xs:annotation>
          <xs:documentation>Downend and Bromley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD046">
        <xs:annotation>
          <xs:documentation>Hanham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX001">
        <xs:annotation>
          <xs:documentation>Bishopstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX002">
        <xs:annotation>
          <xs:documentation>Blunsdon St Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX003">
        <xs:annotation>
          <xs:documentation>Castle Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX004">
        <xs:annotation>
          <xs:documentation>Chiseldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX005">
        <xs:annotation>
          <xs:documentation>Covingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX006">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX007">
        <xs:annotation>
          <xs:documentation>Haydon Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX008">
        <xs:annotation>
          <xs:documentation>Highworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX009">
        <xs:annotation>
          <xs:documentation>Inglesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX010">
        <xs:annotation>
          <xs:documentation>Liddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX011">
        <xs:annotation>
          <xs:documentation>South Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX012">
        <xs:annotation>
          <xs:documentation>Stanton Fitzwarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX013">
        <xs:annotation>
          <xs:documentation>Stratton St Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX014">
        <xs:annotation>
          <xs:documentation>Wanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX015">
        <xs:annotation>
          <xs:documentation>Wroughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA001">
        <xs:annotation>
          <xs:documentation>Ailsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA002">
        <xs:annotation>
          <xs:documentation>Bainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA003">
        <xs:annotation>
          <xs:documentation>Barnack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA004">
        <xs:annotation>
          <xs:documentation>Borough Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA005">
        <xs:annotation>
          <xs:documentation>Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA006">
        <xs:annotation>
          <xs:documentation>Castor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA007">
        <xs:annotation>
          <xs:documentation>Deeping Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA008">
        <xs:annotation>
          <xs:documentation>Etton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA009">
        <xs:annotation>
          <xs:documentation>Eye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA010">
        <xs:annotation>
          <xs:documentation>Glinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA011">
        <xs:annotation>
          <xs:documentation>Helpston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA012">
        <xs:annotation>
          <xs:documentation>Marholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA013">
        <xs:annotation>
          <xs:documentation>Maxey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA014">
        <xs:annotation>
          <xs:documentation>Newborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA015">
        <xs:annotation>
          <xs:documentation>Northborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA016">
        <xs:annotation>
          <xs:documentation>Orton Longueville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA017">
        <xs:annotation>
          <xs:documentation>Orton Waterville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA018">
        <xs:annotation>
          <xs:documentation>Peakirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA019">
        <xs:annotation>
          <xs:documentation>St. Martin's Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA020">
        <xs:annotation>
          <xs:documentation>Southorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA022">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA023">
        <xs:annotation>
          <xs:documentation>Thorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA024">
        <xs:annotation>
          <xs:documentation>Thornhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA025">
        <xs:annotation>
          <xs:documentation>Ufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA026">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA027">
        <xs:annotation>
          <xs:documentation>Wansford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA028">
        <xs:annotation>
          <xs:documentation>Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA029">
        <xs:annotation>
          <xs:documentation>Wothorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KF001">
        <xs:annotation>
          <xs:documentation>Leigh-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC001">
        <xs:annotation>
          <xs:documentation>Allhallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC002">
        <xs:annotation>
          <xs:documentation>Cliffe and Cliffe Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC003">
        <xs:annotation>
          <xs:documentation>Cooling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC004">
        <xs:annotation>
          <xs:documentation>Cuxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC005">
        <xs:annotation>
          <xs:documentation>Frindsbury Extra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC006">
        <xs:annotation>
          <xs:documentation>Halling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC007">
        <xs:annotation>
          <xs:documentation>High Halstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC008">
        <xs:annotation>
          <xs:documentation>Hoo St. Werburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC009">
        <xs:annotation>
          <xs:documentation>Isle of Grain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC010">
        <xs:annotation>
          <xs:documentation>St. Mary Hoo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC011">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA001">
        <xs:annotation>
          <xs:documentation>Binfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA002">
        <xs:annotation>
          <xs:documentation>Bracknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA003">
        <xs:annotation>
          <xs:documentation>Crowthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA004">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA005">
        <xs:annotation>
          <xs:documentation>Warfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA006">
        <xs:annotation>
          <xs:documentation>Winkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB001">
        <xs:annotation>
          <xs:documentation>Aldermaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB002">
        <xs:annotation>
          <xs:documentation>Aldworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB003">
        <xs:annotation>
          <xs:documentation>Ashampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB004">
        <xs:annotation>
          <xs:documentation>Basildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB005">
        <xs:annotation>
          <xs:documentation>Beech Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB006">
        <xs:annotation>
          <xs:documentation>Beedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB007">
        <xs:annotation>
          <xs:documentation>Beenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB008">
        <xs:annotation>
          <xs:documentation>Boxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB009">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB010">
        <xs:annotation>
          <xs:documentation>Brightwalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB011">
        <xs:annotation>
          <xs:documentation>Brimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB012">
        <xs:annotation>
          <xs:documentation>Bucklebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB013">
        <xs:annotation>
          <xs:documentation>Burghfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB014">
        <xs:annotation>
          <xs:documentation>Catmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB015">
        <xs:annotation>
          <xs:documentation>Chaddleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB016">
        <xs:annotation>
          <xs:documentation>Chieveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB017">
        <xs:annotation>
          <xs:documentation>Cold Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB018">
        <xs:annotation>
          <xs:documentation>Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB019">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB020">
        <xs:annotation>
          <xs:documentation>East Garston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB021">
        <xs:annotation>
          <xs:documentation>East Ilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB022">
        <xs:annotation>
          <xs:documentation>Enborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB023">
        <xs:annotation>
          <xs:documentation>Englefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB024">
        <xs:annotation>
          <xs:documentation>Farnborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB025">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB026">
        <xs:annotation>
          <xs:documentation>Frilsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB027">
        <xs:annotation>
          <xs:documentation>Great Shefford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB028">
        <xs:annotation>
          <xs:documentation>Greenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB029">
        <xs:annotation>
          <xs:documentation>Hampstead Norreys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB030">
        <xs:annotation>
          <xs:documentation>Hampstead Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB031">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB032">
        <xs:annotation>
          <xs:documentation>Hungerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB033">
        <xs:annotation>
          <xs:documentation>Inkpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB034">
        <xs:annotation>
          <xs:documentation>Kintbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB035">
        <xs:annotation>
          <xs:documentation>Lambourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB036">
        <xs:annotation>
          <xs:documentation>Leckhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB037">
        <xs:annotation>
          <xs:documentation>Midgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB038">
        <xs:annotation>
          <xs:documentation>Padworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB039">
        <xs:annotation>
          <xs:documentation>Pangbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB040">
        <xs:annotation>
          <xs:documentation>Peasemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB041">
        <xs:annotation>
          <xs:documentation>Purley on Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB042">
        <xs:annotation>
          <xs:documentation>Shaw cum Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB043">
        <xs:annotation>
          <xs:documentation>Speen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB044">
        <xs:annotation>
          <xs:documentation>Stanford Dingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB045">
        <xs:annotation>
          <xs:documentation>Stratfield Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB046">
        <xs:annotation>
          <xs:documentation>Streatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB047">
        <xs:annotation>
          <xs:documentation>Sulham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB048">
        <xs:annotation>
          <xs:documentation>Sulhamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB049">
        <xs:annotation>
          <xs:documentation>Thatcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB050">
        <xs:annotation>
          <xs:documentation>Theale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB051">
        <xs:annotation>
          <xs:documentation>Tidmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB052">
        <xs:annotation>
          <xs:documentation>Tilehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB053">
        <xs:annotation>
          <xs:documentation>Ufton Nervet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB054">
        <xs:annotation>
          <xs:documentation>Wasing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB055">
        <xs:annotation>
          <xs:documentation>Welford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB056">
        <xs:annotation>
          <xs:documentation>West Ilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB057">
        <xs:annotation>
          <xs:documentation>West Woodhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB058">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB059">
        <xs:annotation>
          <xs:documentation>Wokefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB060">
        <xs:annotation>
          <xs:documentation>Woolhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB061">
        <xs:annotation>
          <xs:documentation>Yattendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB062">
        <xs:annotation>
          <xs:documentation>Newbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB063">
        <xs:annotation>
          <xs:documentation>Holybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD001">
        <xs:annotation>
          <xs:documentation>Britwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD002">
        <xs:annotation>
          <xs:documentation>Colnbrook with Poyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD003">
        <xs:annotation>
          <xs:documentation>Wexham Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME001">
        <xs:annotation>
          <xs:documentation>Bisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME002">
        <xs:annotation>
          <xs:documentation>Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME003">
        <xs:annotation>
          <xs:documentation>Cookham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME004">
        <xs:annotation>
          <xs:documentation>Cox Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME005">
        <xs:annotation>
          <xs:documentation>Datchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME006">
        <xs:annotation>
          <xs:documentation>Eton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME007">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME008">
        <xs:annotation>
          <xs:documentation>Hurley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME009">
        <xs:annotation>
          <xs:documentation>Old Windsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME010">
        <xs:annotation>
          <xs:documentation>Shottesbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME011">
        <xs:annotation>
          <xs:documentation>Sunningdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME012">
        <xs:annotation>
          <xs:documentation>Sunninghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME013">
        <xs:annotation>
          <xs:documentation>Waltham St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME014">
        <xs:annotation>
          <xs:documentation>White Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME015">
        <xs:annotation>
          <xs:documentation>Wraysbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF001">
        <xs:annotation>
          <xs:documentation>Arborfield and Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF002">
        <xs:annotation>
          <xs:documentation>Barkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF003">
        <xs:annotation>
          <xs:documentation>Charvil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF004">
        <xs:annotation>
          <xs:documentation>Earley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF005">
        <xs:annotation>
          <xs:documentation>Finchampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF006">
        <xs:annotation>
          <xs:documentation>Remenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF007">
        <xs:annotation>
          <xs:documentation>Ruscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF008">
        <xs:annotation>
          <xs:documentation>St. Nicholas, Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF009">
        <xs:annotation>
          <xs:documentation>Shinfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF010">
        <xs:annotation>
          <xs:documentation>Sonning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF011">
        <xs:annotation>
          <xs:documentation>Swallowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF012">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF013">
        <xs:annotation>
          <xs:documentation>Wargrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF014">
        <xs:annotation>
          <xs:documentation>Winnersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF015">
        <xs:annotation>
          <xs:documentation>Wokingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF016">
        <xs:annotation>
          <xs:documentation>Wokingham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF017">
        <xs:annotation>
          <xs:documentation>Woodley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG001">
        <xs:annotation>
          <xs:documentation>Astwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG002">
        <xs:annotation>
          <xs:documentation>Bow Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG003">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG004">
        <xs:annotation>
          <xs:documentation>Bradwell Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG005">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG006">
        <xs:annotation>
          <xs:documentation>Castlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG007">
        <xs:annotation>
          <xs:documentation>Chicheley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG008">
        <xs:annotation>
          <xs:documentation>Clifton Reynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG009">
        <xs:annotation>
          <xs:documentation>Cold Brayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG010">
        <xs:annotation>
          <xs:documentation>Emberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG011">
        <xs:annotation>
          <xs:documentation>Gayhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG012">
        <xs:annotation>
          <xs:documentation>Great Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG013">
        <xs:annotation>
          <xs:documentation>Hanslope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG014">
        <xs:annotation>
          <xs:documentation>Hardmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG015">
        <xs:annotation>
          <xs:documentation>Haversham-cum-Little Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG016">
        <xs:annotation>
          <xs:documentation>Lathbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG017">
        <xs:annotation>
          <xs:documentation>Lavendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG018">
        <xs:annotation>
          <xs:documentation>Little Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG019">
        <xs:annotation>
          <xs:documentation>Loughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG020">
        <xs:annotation>
          <xs:documentation>Milton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG021">
        <xs:annotation>
          <xs:documentation>Moulsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG022">
        <xs:annotation>
          <xs:documentation>Newport Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG023">
        <xs:annotation>
          <xs:documentation>Newton Blossomville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG024">
        <xs:annotation>
          <xs:documentation>North Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG025">
        <xs:annotation>
          <xs:documentation>Olney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG026">
        <xs:annotation>
          <xs:documentation>Ravenstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG027">
        <xs:annotation>
          <xs:documentation>Shenley Brook End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG028">
        <xs:annotation>
          <xs:documentation>Shenley Church End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG029">
        <xs:annotation>
          <xs:documentation>Sherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG030">
        <xs:annotation>
          <xs:documentation>Stantonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG031">
        <xs:annotation>
          <xs:documentation>Stoke Goldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG032">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG033">
        <xs:annotation>
          <xs:documentation>Warrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG034">
        <xs:annotation>
          <xs:documentation>Wavendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG035">
        <xs:annotation>
          <xs:documentation>Weston Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG036">
        <xs:annotation>
          <xs:documentation>Woburn Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG037">
        <xs:annotation>
          <xs:documentation>Campbell Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG038">
        <xs:annotation>
          <xs:documentation>Woughton on the Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG039">
        <xs:annotation>
          <xs:documentation>Bletchley and Fenny Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG040">
        <xs:annotation>
          <xs:documentation>Calverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG041">
        <xs:annotation>
          <xs:documentation>Central Milton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG042">
        <xs:annotation>
          <xs:documentation>Kents Hill, Monkston and Brinklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG043">
        <xs:annotation>
          <xs:documentation>New Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG044">
        <xs:annotation>
          <xs:documentation>Simpson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG045">
        <xs:annotation>
          <xs:documentation>Stony Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG046">
        <xs:annotation>
          <xs:documentation>Tyringham and Filgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG047">
        <xs:annotation>
          <xs:documentation>West Bletchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG048">
        <xs:annotation>
          <xs:documentation>Wolverton and Greenleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ML001">
        <xs:annotation>
          <xs:documentation>Rottingdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MR001">
        <xs:annotation>
          <xs:documentation>Southsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW001">
        <xs:annotation>
          <xs:documentation>Arreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW002">
        <xs:annotation>
          <xs:documentation>Bembridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW003">
        <xs:annotation>
          <xs:documentation>Brading</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW004">
        <xs:annotation>
          <xs:documentation>Brighstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW005">
        <xs:annotation>
          <xs:documentation>Calbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW006">
        <xs:annotation>
          <xs:documentation>Chale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW007">
        <xs:annotation>
          <xs:documentation>Cowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW008">
        <xs:annotation>
          <xs:documentation>Freshwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW009">
        <xs:annotation>
          <xs:documentation>Gatcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW010">
        <xs:annotation>
          <xs:documentation>Godshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW011">
        <xs:annotation>
          <xs:documentation>Gurnard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW012">
        <xs:annotation>
          <xs:documentation>Lake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW013">
        <xs:annotation>
          <xs:documentation>Nettlestone and Seaview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW014">
        <xs:annotation>
          <xs:documentation>Newchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW015">
        <xs:annotation>
          <xs:documentation>Niton and Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW016">
        <xs:annotation>
          <xs:documentation>Rookley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW017">
        <xs:annotation>
          <xs:documentation>St Helens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW018">
        <xs:annotation>
          <xs:documentation>Sandown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW019">
        <xs:annotation>
          <xs:documentation>Shalfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW020">
        <xs:annotation>
          <xs:documentation>Shanklin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW021">
        <xs:annotation>
          <xs:documentation>Shorwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW022">
        <xs:annotation>
          <xs:documentation>Totland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW023">
        <xs:annotation>
          <xs:documentation>Ventnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW024">
        <xs:annotation>
          <xs:documentation>Wootton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW025">
        <xs:annotation>
          <xs:documentation>Wroxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW026">
        <xs:annotation>
          <xs:documentation>Yarmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW027">
        <xs:annotation>
          <xs:documentation>East Cowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA001">
        <xs:annotation>
          <xs:documentation>Aberffraw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA002">
        <xs:annotation>
          <xs:documentation>Amlwch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA003">
        <xs:annotation>
          <xs:documentation>Beaumaris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA004">
        <xs:annotation>
          <xs:documentation>Bodedern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA005">
        <xs:annotation>
          <xs:documentation>Bodffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA006">
        <xs:annotation>
          <xs:documentation>Bodorgan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA007">
        <xs:annotation>
          <xs:documentation>Bryngwran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA008">
        <xs:annotation>
          <xs:documentation>Cwm Cadnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA009">
        <xs:annotation>
          <xs:documentation>Cylch-y-Garn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA010">
        <xs:annotation>
          <xs:documentation>Holyhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA011">
        <xs:annotation>
          <xs:documentation>Llanbadrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA012">
        <xs:annotation>
          <xs:documentation>Llanddaniel Fab</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA013">
        <xs:annotation>
          <xs:documentation>Llanddona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA014">
        <xs:annotation>
          <xs:documentation>Llanddyfnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA015">
        <xs:annotation>
          <xs:documentation>Llaneilian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA016">
        <xs:annotation>
          <xs:documentation>Llaneugrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA017">
        <xs:annotation>
          <xs:documentation>Llanfachraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA018">
        <xs:annotation>
          <xs:documentation>Llanfaelog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA019">
        <xs:annotation>
          <xs:documentation>Llanfaethlu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA020">
        <xs:annotation>
          <xs:documentation>Llanfair-Mathafarn-Eithaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA021">
        <xs:annotation>
          <xs:documentation>Llanfair Pwllgwyngyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA022">
        <xs:annotation>
          <xs:documentation>Llanfair-yn-Neubwll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA023">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ysgeifiog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA024">
        <xs:annotation>
          <xs:documentation>Llangefni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA025">
        <xs:annotation>
          <xs:documentation>Llangoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA026">
        <xs:annotation>
          <xs:documentation>Llangristiolus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA027">
        <xs:annotation>
          <xs:documentation>Llanidan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA028">
        <xs:annotation>
          <xs:documentation>Llannerch-y-medd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA029">
        <xs:annotation>
          <xs:documentation>Mechell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA030">
        <xs:annotation>
          <xs:documentation>Menai Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA031">
        <xs:annotation>
          <xs:documentation>Moelfre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA032">
        <xs:annotation>
          <xs:documentation>Penmynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA033">
        <xs:annotation>
          <xs:documentation>Pentraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA034">
        <xs:annotation>
          <xs:documentation>Rhoscolyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA035">
        <xs:annotation>
          <xs:documentation>Rhosybol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA036">
        <xs:annotation>
          <xs:documentation>Rhosyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA037">
        <xs:annotation>
          <xs:documentation>Trearddur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA038">
        <xs:annotation>
          <xs:documentation>Tref Alaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA039">
        <xs:annotation>
          <xs:documentation>Trewalchmai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA040">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC001">
        <xs:annotation>
          <xs:documentation>Aber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC002">
        <xs:annotation>
          <xs:documentation>Aberdaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC003">
        <xs:annotation>
          <xs:documentation>Aberdovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC004">
        <xs:annotation>
          <xs:documentation>Arthog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC005">
        <xs:annotation>
          <xs:documentation>Bala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC006">
        <xs:annotation>
          <xs:documentation>Bangor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC007">
        <xs:annotation>
          <xs:documentation>Barmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC008">
        <xs:annotation>
          <xs:documentation>Beddgelert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC009">
        <xs:annotation>
          <xs:documentation>Bethesda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC010">
        <xs:annotation>
          <xs:documentation>Betws Garmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC011">
        <xs:annotation>
          <xs:documentation>Bontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC012">
        <xs:annotation>
          <xs:documentation>Botwnnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC013">
        <xs:annotation>
          <xs:documentation>Brithdir and Llanfachreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC014">
        <xs:annotation>
          <xs:documentation>Bryn-crug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC015">
        <xs:annotation>
          <xs:documentation>Buan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC016">
        <xs:annotation>
          <xs:documentation>Caernarfon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC017">
        <xs:annotation>
          <xs:documentation>Clynnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC018">
        <xs:annotation>
          <xs:documentation>Corris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC019">
        <xs:annotation>
          <xs:documentation>Criccieth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC020">
        <xs:annotation>
          <xs:documentation>Dolbenmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC021">
        <xs:annotation>
          <xs:documentation>Dolgellau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC022">
        <xs:annotation>
          <xs:documentation>Dyffryn Ardudwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC023">
        <xs:annotation>
          <xs:documentation>Ffestiniog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC024">
        <xs:annotation>
          <xs:documentation>Ganllwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC025">
        <xs:annotation>
          <xs:documentation>Harlech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC026">
        <xs:annotation>
          <xs:documentation>Llanaelhaearn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC027">
        <xs:annotation>
          <xs:documentation>Llanbedr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC028">
        <xs:annotation>
          <xs:documentation>Llanbedrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC029">
        <xs:annotation>
          <xs:documentation>Llanberis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC030">
        <xs:annotation>
          <xs:documentation>Llanddeiniolen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC031">
        <xs:annotation>
          <xs:documentation>Llandderfel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC032">
        <xs:annotation>
          <xs:documentation>Llandwrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC033">
        <xs:annotation>
          <xs:documentation>Llandygai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC034">
        <xs:annotation>
          <xs:documentation>Llanegryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC035">
        <xs:annotation>
          <xs:documentation>Llanelltyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC036">
        <xs:annotation>
          <xs:documentation>Llanengan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC037">
        <xs:annotation>
          <xs:documentation>Llanfair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC038">
        <xs:annotation>
          <xs:documentation>Llanfihangel-y-Pennant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC039">
        <xs:annotation>
          <xs:documentation>Llanfrothen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC040">
        <xs:annotation>
          <xs:documentation>Llangelynin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC041">
        <xs:annotation>
          <xs:documentation>Llangywer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC042">
        <xs:annotation>
          <xs:documentation>Llanllechid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC043">
        <xs:annotation>
          <xs:documentation>Llanllyfni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC044">
        <xs:annotation>
          <xs:documentation>Llannor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC045">
        <xs:annotation>
          <xs:documentation>Llanuwchllyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC046">
        <xs:annotation>
          <xs:documentation>Llanrug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC047">
        <xs:annotation>
          <xs:documentation>Llanwnda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC048">
        <xs:annotation>
          <xs:documentation>Llanycil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC049">
        <xs:annotation>
          <xs:documentation>Llanystumdwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC050">
        <xs:annotation>
          <xs:documentation>Maentwrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC051">
        <xs:annotation>
          <xs:documentation>Mawddwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC052">
        <xs:annotation>
          <xs:documentation>Nefyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC053">
        <xs:annotation>
          <xs:documentation>Pennal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC054">
        <xs:annotation>
          <xs:documentation>Penrhyndeudraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC055">
        <xs:annotation>
          <xs:documentation>Pentir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC056">
        <xs:annotation>
          <xs:documentation>Pistyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC057">
        <xs:annotation>
          <xs:documentation>Porthmadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC058">
        <xs:annotation>
          <xs:documentation>Pwllheli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC059">
        <xs:annotation>
          <xs:documentation>Talsarnau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC060">
        <xs:annotation>
          <xs:documentation>Trawsfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC061">
        <xs:annotation>
          <xs:documentation>Tudweiliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC062">
        <xs:annotation>
          <xs:documentation>Tywyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC063">
        <xs:annotation>
          <xs:documentation>Waunfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC064">
        <xs:annotation>
          <xs:documentation>Y Felinheli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE001">
        <xs:annotation>
          <xs:documentation>Abergele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE002">
        <xs:annotation>
          <xs:documentation>Betws-y-Coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE003">
        <xs:annotation>
          <xs:documentation>Betws yn Rhos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE004">
        <xs:annotation>
          <xs:documentation>Bro Garmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE005">
        <xs:annotation>
          <xs:documentation>Bro Machno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE006">
        <xs:annotation>
          <xs:documentation>Caerhun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE007">
        <xs:annotation>
          <xs:documentation>Capel Curig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE008">
        <xs:annotation>
          <xs:documentation>Cerrigydrudion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE009">
        <xs:annotation>
          <xs:documentation>Colwyn Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE010">
        <xs:annotation>
          <xs:documentation>Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE011">
        <xs:annotation>
          <xs:documentation>Dolgarrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE012">
        <xs:annotation>
          <xs:documentation>Dolwyddelan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE013">
        <xs:annotation>
          <xs:documentation>Eglwysbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE014">
        <xs:annotation>
          <xs:documentation>Henryd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE015">
        <xs:annotation>
          <xs:documentation>Kinmel Bay and Towyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE016">
        <xs:annotation>
          <xs:documentation>Llanddoged and Maenan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE017">
        <xs:annotation>
          <xs:documentation>Llanddulas and Rhyd-y-Foel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE018">
        <xs:annotation>
          <xs:documentation>Llandudno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE019">
        <xs:annotation>
          <xs:documentation>Llanfairfechan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE020">
        <xs:annotation>
          <xs:documentation>Llanfair Talhaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE021">
        <xs:annotation>
          <xs:documentation>Llanfihangel Glyn Myfyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE022">
        <xs:annotation>
          <xs:documentation>Llangernyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE023">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE024">
        <xs:annotation>
          <xs:documentation>Llannefydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE025">
        <xs:annotation>
          <xs:documentation>Llanrwst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE026">
        <xs:annotation>
          <xs:documentation>Llansanffraid Glan Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE027">
        <xs:annotation>
          <xs:documentation>Llansannan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE028">
        <xs:annotation>
          <xs:documentation>Llysfaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE029">
        <xs:annotation>
          <xs:documentation>Mochdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE030">
        <xs:annotation>
          <xs:documentation>Old Colwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE031">
        <xs:annotation>
          <xs:documentation>Penmaenmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE032">
        <xs:annotation>
          <xs:documentation>Pentrefoelas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE033">
        <xs:annotation>
          <xs:documentation>Rhos-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE034">
        <xs:annotation>
          <xs:documentation>Trefriw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE035">
        <xs:annotation>
          <xs:documentation>Ysbyty Ifan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG001">
        <xs:annotation>
          <xs:documentation>Aberwheeler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG002">
        <xs:annotation>
          <xs:documentation>Betws Gwerfil Goch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG003">
        <xs:annotation>
          <xs:documentation>Bodelwyddan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG004">
        <xs:annotation>
          <xs:documentation>Bodfari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG005">
        <xs:annotation>
          <xs:documentation>Bryneglwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG006">
        <xs:annotation>
          <xs:documentation>Cefnmeiriadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG007">
        <xs:annotation>
          <xs:documentation>Clocaenog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG008">
        <xs:annotation>
          <xs:documentation>Corwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG009">
        <xs:annotation>
          <xs:documentation>Cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG010">
        <xs:annotation>
          <xs:documentation>Cyffylliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG011">
        <xs:annotation>
          <xs:documentation>Cynwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG012">
        <xs:annotation>
          <xs:documentation>Denbigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG013">
        <xs:annotation>
          <xs:documentation>Derwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG014">
        <xs:annotation>
          <xs:documentation>Dyserth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG015">
        <xs:annotation>
          <xs:documentation>Efenechtyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG016">
        <xs:annotation>
          <xs:documentation>Gwyddelwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG017">
        <xs:annotation>
          <xs:documentation>Henllan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG018">
        <xs:annotation>
          <xs:documentation>Llanarmon-yn-Ial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG019">
        <xs:annotation>
          <xs:documentation>Llanbedr Dyffryn Clwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG020">
        <xs:annotation>
          <xs:documentation>Llandegla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG021">
        <xs:annotation>
          <xs:documentation>Llandrillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG022">
        <xs:annotation>
          <xs:documentation>Llandyrnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG023">
        <xs:annotation>
          <xs:documentation>Llanelidan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG024">
        <xs:annotation>
          <xs:documentation>Llanfair Dyffryn Clwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG025">
        <xs:annotation>
          <xs:documentation>Llanferres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG026">
        <xs:annotation>
          <xs:documentation>Llangollen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG028">
        <xs:annotation>
          <xs:documentation>Llangynhafal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG029">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-yng-Nghinmeirch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG030">
        <xs:annotation>
          <xs:documentation>Llantysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG031">
        <xs:annotation>
          <xs:documentation>Llanynys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG032">
        <xs:annotation>
          <xs:documentation>Nantglyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG033">
        <xs:annotation>
          <xs:documentation>Prestatyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG034">
        <xs:annotation>
          <xs:documentation>Rhuddlan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG035">
        <xs:annotation>
          <xs:documentation>Rhyl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG036">
        <xs:annotation>
          <xs:documentation>Ruthin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG037">
        <xs:annotation>
          <xs:documentation>St. Asaph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG038">
        <xs:annotation>
          <xs:documentation>Trefnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG039">
        <xs:annotation>
          <xs:documentation>Tremeirchion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG040">
        <xs:annotation>
          <xs:documentation>Waen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ001">
        <xs:annotation>
          <xs:documentation>Bagillt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ002">
        <xs:annotation>
          <xs:documentation>Broughton and Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ003">
        <xs:annotation>
          <xs:documentation>Brynford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ004">
        <xs:annotation>
          <xs:documentation>Buckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ005">
        <xs:annotation>
          <xs:documentation>Caerwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ006">
        <xs:annotation>
          <xs:documentation>Cilcain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ007">
        <xs:annotation>
          <xs:documentation>Connah's Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ008">
        <xs:annotation>
          <xs:documentation>Flint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ009">
        <xs:annotation>
          <xs:documentation>Gwernaffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ010">
        <xs:annotation>
          <xs:documentation>Gwernymynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ011">
        <xs:annotation>
          <xs:documentation>Halkyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ012">
        <xs:annotation>
          <xs:documentation>Hawarden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ013">
        <xs:annotation>
          <xs:documentation>Higher Kinnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ014">
        <xs:annotation>
          <xs:documentation>Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ015">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ016">
        <xs:annotation>
          <xs:documentation>Leeswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ017">
        <xs:annotation>
          <xs:documentation>Llanasa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ018">
        <xs:annotation>
          <xs:documentation>Llanfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ019">
        <xs:annotation>
          <xs:documentation>Mold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ020">
        <xs:annotation>
          <xs:documentation>Mostyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ021">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ022">
        <xs:annotation>
          <xs:documentation>Nannerch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ023">
        <xs:annotation>
          <xs:documentation>Nercwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ024">
        <xs:annotation>
          <xs:documentation>Northop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ025">
        <xs:annotation>
          <xs:documentation>Northop Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ026">
        <xs:annotation>
          <xs:documentation>Penyffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ027">
        <xs:annotation>
          <xs:documentation>Queensferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ028">
        <xs:annotation>
          <xs:documentation>Saltney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ029">
        <xs:annotation>
          <xs:documentation>Sealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ030">
        <xs:annotation>
          <xs:documentation>Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ031">
        <xs:annotation>
          <xs:documentation>Trelawnyd and Gwaenysgor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ032">
        <xs:annotation>
          <xs:documentation>Treuddyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ033">
        <xs:annotation>
          <xs:documentation>Whitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ034">
        <xs:annotation>
          <xs:documentation>Ysceifiog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL001">
        <xs:annotation>
          <xs:documentation>Abenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL002">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL003">
        <xs:annotation>
          <xs:documentation>Bangor Is-y-coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL004">
        <xs:annotation>
          <xs:documentation>Bronington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL005">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL006">
        <xs:annotation>
          <xs:documentation>Brymbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL007">
        <xs:annotation>
          <xs:documentation>Caia Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL008">
        <xs:annotation>
          <xs:documentation>Cefn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL009">
        <xs:annotation>
          <xs:documentation>Ceiriog Ucha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL010">
        <xs:annotation>
          <xs:documentation>Chirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL011">
        <xs:annotation>
          <xs:documentation>Coedpoeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL012">
        <xs:annotation>
          <xs:documentation>Erbistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL013">
        <xs:annotation>
          <xs:documentation>Esclusham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL014">
        <xs:annotation>
          <xs:documentation>Glyntraian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL015">
        <xs:annotation>
          <xs:documentation>Gresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL016">
        <xs:annotation>
          <xs:documentation>Gwersyllt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL017">
        <xs:annotation>
          <xs:documentation>Hanmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL018">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL019">
        <xs:annotation>
          <xs:documentation>Isycoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL020">
        <xs:annotation>
          <xs:documentation>Llansantffraid Glyn Ceiriog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL021">
        <xs:annotation>
          <xs:documentation>Llay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL022">
        <xs:annotation>
          <xs:documentation>Maelor South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL023">
        <xs:annotation>
          <xs:documentation>Marchwiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL024">
        <xs:annotation>
          <xs:documentation>Minera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL025">
        <xs:annotation>
          <xs:documentation>Offa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL026">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL027">
        <xs:annotation>
          <xs:documentation>Penycae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL028">
        <xs:annotation>
          <xs:documentation>Rhosddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL029">
        <xs:annotation>
          <xs:documentation>Rhosllanerchrugog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL030">
        <xs:annotation>
          <xs:documentation>Rossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL031">
        <xs:annotation>
          <xs:documentation>Ruabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL032">
        <xs:annotation>
          <xs:documentation>Sesswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL033">
        <xs:annotation>
          <xs:documentation>Willington Worthenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL034">
        <xs:annotation>
          <xs:documentation>Llangollen Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN001">
        <xs:annotation>
          <xs:documentation>Abbey Cwmhir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN002">
        <xs:annotation>
          <xs:documentation>Aberedw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN003">
        <xs:annotation>
          <xs:documentation>Aberhafesp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN004">
        <xs:annotation>
          <xs:documentation>Banwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN005">
        <xs:annotation>
          <xs:documentation>Bausley with Criggion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN006">
        <xs:annotation>
          <xs:documentation>Beguildy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN007">
        <xs:annotation>
          <xs:documentation>Berriew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN008">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN009">
        <xs:annotation>
          <xs:documentation>Brecon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN010">
        <xs:annotation>
          <xs:documentation>Bronllys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN011">
        <xs:annotation>
          <xs:documentation>Builth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN012">
        <xs:annotation>
          <xs:documentation>Cadfarch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN013">
        <xs:annotation>
          <xs:documentation>Caersws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN014">
        <xs:annotation>
          <xs:documentation>Carno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN015">
        <xs:annotation>
          <xs:documentation>Carreghofa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN016">
        <xs:annotation>
          <xs:documentation>Castle Caereinion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN017">
        <xs:annotation>
          <xs:documentation>Churchstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN018">
        <xs:annotation>
          <xs:documentation>Cilmery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN019">
        <xs:annotation>
          <xs:documentation>Clyro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN020">
        <xs:annotation>
          <xs:documentation>Cray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN021">
        <xs:annotation>
          <xs:documentation>Crickhowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN022">
        <xs:annotation>
          <xs:documentation>Disserth and Trecoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN023">
        <xs:annotation>
          <xs:documentation>Duhonw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN024">
        <xs:annotation>
          <xs:documentation>Dwyriw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN025">
        <xs:annotation>
          <xs:documentation>Erwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN026">
        <xs:annotation>
          <xs:documentation>Felin-fach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN027">
        <xs:annotation>
          <xs:documentation>Forden with Leighton and Trelystan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN028">
        <xs:annotation>
          <xs:documentation>Gladestry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN029">
        <xs:annotation>
          <xs:documentation>Glantwymyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN030">
        <xs:annotation>
          <xs:documentation>Glasbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN031">
        <xs:annotation>
          <xs:documentation>Glascwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN032">
        <xs:annotation>
          <xs:documentation>Glyn Tarell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN033">
        <xs:annotation>
          <xs:documentation>Guilsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN034">
        <xs:annotation>
          <xs:documentation>Gwernyfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN035">
        <xs:annotation>
          <xs:documentation>Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN036">
        <xs:annotation>
          <xs:documentation>Honddu Isaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN037">
        <xs:annotation>
          <xs:documentation>Kerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN038">
        <xs:annotation>
          <xs:documentation>Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN039">
        <xs:annotation>
          <xs:documentation>Llanafanfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN040">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN041">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN042">
        <xs:annotation>
          <xs:documentation>Llanbister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN043">
        <xs:annotation>
          <xs:documentation>Llanbrynmair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN044">
        <xs:annotation>
          <xs:documentation>Llanddew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN045">
        <xs:annotation>
          <xs:documentation>Llanddewi Ystradenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN046">
        <xs:annotation>
          <xs:documentation>Llandinam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN047">
        <xs:annotation>
          <xs:documentation>Llandrindod Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN048">
        <xs:annotation>
          <xs:documentation>Llandrinio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN049">
        <xs:annotation>
          <xs:documentation>Llandysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN050">
        <xs:annotation>
          <xs:documentation>Llandyssil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN051">
        <xs:annotation>
          <xs:documentation>Llanelwedd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN052">
        <xs:annotation>
          <xs:documentation>Llanerfyl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN053">
        <xs:annotation>
          <xs:documentation>Llanfair Caereinion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN054">
        <xs:annotation>
          <xs:documentation>Llanfechain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN055">
        <xs:annotation>
          <xs:documentation>Llanfihangel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN056">
        <xs:annotation>
          <xs:documentation>Llanfihangel Cwmdu with Bwlch and Cathedine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN057">
        <xs:annotation>
          <xs:documentation>Llanfihangel Rhydithon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN058">
        <xs:annotation>
          <xs:documentation>Llanfrynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN059">
        <xs:annotation>
          <xs:documentation>Llanfyllin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN060">
        <xs:annotation>
          <xs:documentation>Llangamarch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN061">
        <xs:annotation>
          <xs:documentation>Llangattock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN062">
        <xs:annotation>
          <xs:documentation>Llangedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN063">
        <xs:annotation>
          <xs:documentation>Llangors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN064">
        <xs:annotation>
          <xs:documentation>Llangunllo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN065">
        <xs:annotation>
          <xs:documentation>Llangurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN066">
        <xs:annotation>
          <xs:documentation>Llangynidr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN067">
        <xs:annotation>
          <xs:documentation>Llangyniew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN068">
        <xs:annotation>
          <xs:documentation>Llangynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN069">
        <xs:annotation>
          <xs:documentation>Llanidloes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN070">
        <xs:annotation>
          <xs:documentation>Llanidloes Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN071">
        <xs:annotation>
          <xs:documentation>Llanigon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN072">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-ym-Mochnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN073">
        <xs:annotation>
          <xs:documentation>Llansantffraid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN074">
        <xs:annotation>
          <xs:documentation>Llansilin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN075">
        <xs:annotation>
          <xs:documentation>Llanwddyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN076">
        <xs:annotation>
          <xs:documentation>Llanwrthwl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN077">
        <xs:annotation>
          <xs:documentation>Llanwrtyd Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN078">
        <xs:annotation>
          <xs:documentation>Llanyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN079">
        <xs:annotation>
          <xs:documentation>Llywel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN080">
        <xs:annotation>
          <xs:documentation>Machynlleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN081">
        <xs:annotation>
          <xs:documentation>Maescar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN082">
        <xs:annotation>
          <xs:documentation>Manafon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN083">
        <xs:annotation>
          <xs:documentation>Meifod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN084">
        <xs:annotation>
          <xs:documentation>Merthyr Cynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN085">
        <xs:annotation>
          <xs:documentation>Mochdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN086">
        <xs:annotation>
          <xs:documentation>Montgomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN087">
        <xs:annotation>
          <xs:documentation>Nantmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN088">
        <xs:annotation>
          <xs:documentation>New Radnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN089">
        <xs:annotation>
          <xs:documentation>Newtown and Llanllwchaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN090">
        <xs:annotation>
          <xs:documentation>Old Radnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN091">
        <xs:annotation>
          <xs:documentation>Painscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN092">
        <xs:annotation>
          <xs:documentation>Penybont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN093">
        <xs:annotation>
          <xs:documentation>Pen-y-Bont-Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN094">
        <xs:annotation>
          <xs:documentation>Presteigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN095">
        <xs:annotation>
          <xs:documentation>Rhayader</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN096">
        <xs:annotation>
          <xs:documentation>St. Harmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN097">
        <xs:annotation>
          <xs:documentation>Talgarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN098">
        <xs:annotation>
          <xs:documentation>Talybont-on-Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN099">
        <xs:annotation>
          <xs:documentation>Tawe-Uchaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN100">
        <xs:annotation>
          <xs:documentation>The Vale of Grwyney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN101">
        <xs:annotation>
          <xs:documentation>Trallong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN102">
        <xs:annotation>
          <xs:documentation>Trefeglwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN103">
        <xs:annotation>
          <xs:documentation>Treflys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN104">
        <xs:annotation>
          <xs:documentation>Tregynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN105">
        <xs:annotation>
          <xs:documentation>Trewern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN106">
        <xs:annotation>
          <xs:documentation>Welshpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN107">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN108">
        <xs:annotation>
          <xs:documentation>Yscir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN109">
        <xs:annotation>
          <xs:documentation>Ystradfellte</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN110">
        <xs:annotation>
          <xs:documentation>Ystradgynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ001">
        <xs:annotation>
          <xs:documentation>Aberaeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ002">
        <xs:annotation>
          <xs:documentation>Aberporth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ003">
        <xs:annotation>
          <xs:documentation>Aberystwyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ004">
        <xs:annotation>
          <xs:documentation>Beulah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ005">
        <xs:annotation>
          <xs:documentation>Blaenrheidol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ006">
        <xs:annotation>
          <xs:documentation>Borth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ007">
        <xs:annotation>
          <xs:documentation>Cardigan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ008">
        <xs:annotation>
          <xs:documentation>Ceulanamaesmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ009">
        <xs:annotation>
          <xs:documentation>Ciliau Aeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ010">
        <xs:annotation>
          <xs:documentation>Dyffryn Arth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ011">
        <xs:annotation>
          <xs:documentation>Faenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ012">
        <xs:annotation>
          <xs:documentation>Geneu'r Glyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ013">
        <xs:annotation>
          <xs:documentation>Henfynyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ014">
        <xs:annotation>
          <xs:documentation>Lampeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ015">
        <xs:annotation>
          <xs:documentation>Llanarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ016">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ017">
        <xs:annotation>
          <xs:documentation>Llanddewi Brefi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ018">
        <xs:annotation>
          <xs:documentation>Llandyfriog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ019">
        <xs:annotation>
          <xs:documentation>Llandysiliogogo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ020">
        <xs:annotation>
          <xs:documentation>Llandysul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ021">
        <xs:annotation>
          <xs:documentation>Llanfair Clydogau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ022">
        <xs:annotation>
          <xs:documentation>Llanfarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ023">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ024">
        <xs:annotation>
          <xs:documentation>Llangeitho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ025">
        <xs:annotation>
          <xs:documentation>Llangoedmor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ026">
        <xs:annotation>
          <xs:documentation>Llangrannog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ027">
        <xs:annotation>
          <xs:documentation>Llangwyryfon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ028">
        <xs:annotation>
          <xs:documentation>Llangybi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ029">
        <xs:annotation>
          <xs:documentation>Llangynfelyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ030">
        <xs:annotation>
          <xs:documentation>Llanilar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ031">
        <xs:annotation>
          <xs:documentation>Llanllwchaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ032">
        <xs:annotation>
          <xs:documentation>Llanrhystyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ033">
        <xs:annotation>
          <xs:documentation>Llansantffraed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ034">
        <xs:annotation>
          <xs:documentation>Llanwenog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ035">
        <xs:annotation>
          <xs:documentation>Llanwnnen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ036">
        <xs:annotation>
          <xs:documentation>Lledrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ037">
        <xs:annotation>
          <xs:documentation>Melindwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ038">
        <xs:annotation>
          <xs:documentation>Nantcwnlle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ039">
        <xs:annotation>
          <xs:documentation>New Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ040">
        <xs:annotation>
          <xs:documentation>Penbryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ041">
        <xs:annotation>
          <xs:documentation>Pontarfynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ042">
        <xs:annotation>
          <xs:documentation>Tirymynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ043">
        <xs:annotation>
          <xs:documentation>Trawsgoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ044">
        <xs:annotation>
          <xs:documentation>Trefeurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ045">
        <xs:annotation>
          <xs:documentation>Tregaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ046">
        <xs:annotation>
          <xs:documentation>Troedyraur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ047">
        <xs:annotation>
          <xs:documentation>Y Ferwig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ048">
        <xs:annotation>
          <xs:documentation>Ysbyty Ystwyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ049">
        <xs:annotation>
          <xs:documentation>Ysgubor-y-coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ050">
        <xs:annotation>
          <xs:documentation>Ystrad Fflur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ051">
        <xs:annotation>
          <xs:documentation>Ystrad Meurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS001">
        <xs:annotation>
          <xs:documentation>Ambleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS002">
        <xs:annotation>
          <xs:documentation>Amroth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS003">
        <xs:annotation>
          <xs:documentation>Angle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS004">
        <xs:annotation>
          <xs:documentation>Boncath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS005">
        <xs:annotation>
          <xs:documentation>Brawdy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS006">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS007">
        <xs:annotation>
          <xs:documentation>Caldey Island and St. Margaret's Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS008">
        <xs:annotation>
          <xs:documentation>Camrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS009">
        <xs:annotation>
          <xs:documentation>Carew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS010">
        <xs:annotation>
          <xs:documentation>Castlemartin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS011">
        <xs:annotation>
          <xs:documentation>Cilgerran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS012">
        <xs:annotation>
          <xs:documentation>Clydau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS013">
        <xs:annotation>
          <xs:documentation>Cosheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS014">
        <xs:annotation>
          <xs:documentation>Crymych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS015">
        <xs:annotation>
          <xs:documentation>Cwm Gwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS016">
        <xs:annotation>
          <xs:documentation>Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS017">
        <xs:annotation>
          <xs:documentation>Dinas Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS018">
        <xs:annotation>
          <xs:documentation>East Williamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS019">
        <xs:annotation>
          <xs:documentation>Eglwyswrw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS020">
        <xs:annotation>
          <xs:documentation>Fishguard and Goodwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS021">
        <xs:annotation>
          <xs:documentation>Freystrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS022">
        <xs:annotation>
          <xs:documentation>Haverfordwest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS023">
        <xs:annotation>
          <xs:documentation>Hayscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS024">
        <xs:annotation>
          <xs:documentation>Herbrandston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS025">
        <xs:annotation>
          <xs:documentation>Hundleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS026">
        <xs:annotation>
          <xs:documentation>Jeffreyston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS027">
        <xs:annotation>
          <xs:documentation>Johnston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS028">
        <xs:annotation>
          <xs:documentation>Kilgetty/Begelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS029">
        <xs:annotation>
          <xs:documentation>Lampeter Velfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS030">
        <xs:annotation>
          <xs:documentation>Lamphey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS031">
        <xs:annotation>
          <xs:documentation>Letterston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS032">
        <xs:annotation>
          <xs:documentation>Llanddewi Velfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS033">
        <xs:annotation>
          <xs:documentation>Llandissilio West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS035">
        <xs:annotation>
          <xs:documentation>Llanrhian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS036">
        <xs:annotation>
          <xs:documentation>Llanstadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS037">
        <xs:annotation>
          <xs:documentation>Llawhaden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS038">
        <xs:annotation>
          <xs:documentation>Maenclochog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS039">
        <xs:annotation>
          <xs:documentation>Manorbier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS040">
        <xs:annotation>
          <xs:documentation>Manordeifi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS041">
        <xs:annotation>
          <xs:documentation>Marloes and St. Brides</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS042">
        <xs:annotation>
          <xs:documentation>Martletwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS043">
        <xs:annotation>
          <xs:documentation>Mathry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS044">
        <xs:annotation>
          <xs:documentation>Merlin's Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS045">
        <xs:annotation>
          <xs:documentation>Milford Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS046">
        <xs:annotation>
          <xs:documentation>Mynachlog-Ddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS047">
        <xs:annotation>
          <xs:documentation>Narberth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS048">
        <xs:annotation>
          <xs:documentation>Nevern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS049">
        <xs:annotation>
          <xs:documentation>New Moat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS050">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS051">
        <xs:annotation>
          <xs:documentation>Neyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS052">
        <xs:annotation>
          <xs:documentation>Nolton and Roch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS053">
        <xs:annotation>
          <xs:documentation>Pembroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS054">
        <xs:annotation>
          <xs:documentation>Pembroke Dock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS055">
        <xs:annotation>
          <xs:documentation>Penally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS056">
        <xs:annotation>
          <xs:documentation>Pencaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS057">
        <xs:annotation>
          <xs:documentation>Puncheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS058">
        <xs:annotation>
          <xs:documentation>Rosemarket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS059">
        <xs:annotation>
          <xs:documentation>Rudbaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS060">
        <xs:annotation>
          <xs:documentation>St. David's and the Cathedral Close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS061">
        <xs:annotation>
          <xs:documentation>St. Dogmaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS062">
        <xs:annotation>
          <xs:documentation>St. Florence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS063">
        <xs:annotation>
          <xs:documentation>St. Ishmael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS064">
        <xs:annotation>
          <xs:documentation>St. Mary Out Liberty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS065">
        <xs:annotation>
          <xs:documentation>Saundersfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS066">
        <xs:annotation>
          <xs:documentation>Scleddau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS067">
        <xs:annotation>
          <xs:documentation>Slebech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS068">
        <xs:annotation>
          <xs:documentation>Solva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS069">
        <xs:annotation>
          <xs:documentation>Spittal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS070">
        <xs:annotation>
          <xs:documentation>Stackpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS071">
        <xs:annotation>
          <xs:documentation>Templeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS072">
        <xs:annotation>
          <xs:documentation>Tenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS073">
        <xs:annotation>
          <xs:documentation>The Havens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS074">
        <xs:annotation>
          <xs:documentation>Tiers Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS075">
        <xs:annotation>
          <xs:documentation>Trecwn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS076">
        <xs:annotation>
          <xs:documentation>Uzmaston and Boulston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS077">
        <xs:annotation>
          <xs:documentation>Walwyn's Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS078">
        <xs:annotation>
          <xs:documentation>Wiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS079">
        <xs:annotation>
          <xs:documentation>Wolfscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS081">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS082">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS083">
        <xs:annotation>
          <xs:documentation>Clynderwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU001">
        <xs:annotation>
          <xs:documentation>Abergwili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU002">
        <xs:annotation>
          <xs:documentation>Abernant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU003">
        <xs:annotation>
          <xs:documentation>Ammanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU004">
        <xs:annotation>
          <xs:documentation>Betws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU005">
        <xs:annotation>
          <xs:documentation>Bronwydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU006">
        <xs:annotation>
          <xs:documentation>Carmarthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU007">
        <xs:annotation>
          <xs:documentation>Pembrey and Burry Port Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU008">
        <xs:annotation>
          <xs:documentation>Cenarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU009">
        <xs:annotation>
          <xs:documentation>Cilycwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU010">
        <xs:annotation>
          <xs:documentation>Cilymaenllwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU012">
        <xs:annotation>
          <xs:documentation>Cwmamman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU013">
        <xs:annotation>
          <xs:documentation>Cynwyl Elfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU014">
        <xs:annotation>
          <xs:documentation>Cynwyl Gaeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU015">
        <xs:annotation>
          <xs:documentation>Eglwyscummin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU016">
        <xs:annotation>
          <xs:documentation>Cyngor Bro Dyffryn Cennen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU017">
        <xs:annotation>
          <xs:documentation>Gorslas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU018">
        <xs:annotation>
          <xs:documentation>Henllanfallteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU019">
        <xs:annotation>
          <xs:documentation>Kidwelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU020">
        <xs:annotation>
          <xs:documentation>Laugharne Township</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU021">
        <xs:annotation>
          <xs:documentation>Llanarthney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU022">
        <xs:annotation>
          <xs:documentation>Llanboidy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU023">
        <xs:annotation>
          <xs:documentation>Llanddarog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU024">
        <xs:annotation>
          <xs:documentation>Llanddeusant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU025">
        <xs:annotation>
          <xs:documentation>Llanddowror</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU026">
        <xs:annotation>
          <xs:documentation>Llandeilo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU027">
        <xs:annotation>
          <xs:documentation>Llandovery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU028">
        <xs:annotation>
          <xs:documentation>Llandybie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU029">
        <xs:annotation>
          <xs:documentation>Llandyfaelog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU030">
        <xs:annotation>
          <xs:documentation>Llanedi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU031">
        <xs:annotation>
          <xs:documentation>Llanegwad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU032">
        <xs:annotation>
          <xs:documentation>Llanelli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU033">
        <xs:annotation>
          <xs:documentation>Llanelli Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU034">
        <xs:annotation>
          <xs:documentation>Llanfair-ar-y-bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU035">
        <xs:annotation>
          <xs:documentation>Llanfihangel Aberbythych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU036">
        <xs:annotation>
          <xs:documentation>Llanfihangel-ar-Arth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU037">
        <xs:annotation>
          <xs:documentation>Llanfihangel Rhos-y-Corn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU038">
        <xs:annotation>
          <xs:documentation>Llanfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU039">
        <xs:annotation>
          <xs:documentation>Llangadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU040">
        <xs:annotation>
          <xs:documentation>Llangain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU041">
        <xs:annotation>
          <xs:documentation>Llangathen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU042">
        <xs:annotation>
          <xs:documentation>Llangeler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU043">
        <xs:annotation>
          <xs:documentation>Llangennech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU044">
        <xs:annotation>
          <xs:documentation>Llangunnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU045">
        <xs:annotation>
          <xs:documentation>Llangyndeyrn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU046">
        <xs:annotation>
          <xs:documentation>Llangynin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU047">
        <xs:annotation>
          <xs:documentation>Llangynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU048">
        <xs:annotation>
          <xs:documentation>Llanllawddog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU049">
        <xs:annotation>
          <xs:documentation>Llanllwni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU050">
        <xs:annotation>
          <xs:documentation>Llannon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU051">
        <xs:annotation>
          <xs:documentation>Llanpumsaint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU052">
        <xs:annotation>
          <xs:documentation>Llansadwrn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU053">
        <xs:annotation>
          <xs:documentation>Llansawel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU054">
        <xs:annotation>
          <xs:documentation>Llansteffan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU055">
        <xs:annotation>
          <xs:documentation>Llanwinio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU056">
        <xs:annotation>
          <xs:documentation>Llanwrda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU057">
        <xs:annotation>
          <xs:documentation>Llanybydder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU058">
        <xs:annotation>
          <xs:documentation>Llanycrwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU059">
        <xs:annotation>
          <xs:documentation>Manordeilo and Salem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU060">
        <xs:annotation>
          <xs:documentation>Meidrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU061">
        <xs:annotation>
          <xs:documentation>Myddfai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU062">
        <xs:annotation>
          <xs:documentation>Newcastle Emlyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU063">
        <xs:annotation>
          <xs:documentation>Newchurch and Merthyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU064">
        <xs:annotation>
          <xs:documentation>Pencarreg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU065">
        <xs:annotation>
          <xs:documentation>Pendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU066">
        <xs:annotation>
          <xs:documentation>Pontyberem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU067">
        <xs:annotation>
          <xs:documentation>Quarter Bach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU068">
        <xs:annotation>
          <xs:documentation>St. Clears</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU069">
        <xs:annotation>
          <xs:documentation>St. Ishmael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU070">
        <xs:annotation>
          <xs:documentation>Talley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU071">
        <xs:annotation>
          <xs:documentation>Trelech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU072">
        <xs:annotation>
          <xs:documentation>Trimsaran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU073">
        <xs:annotation>
          <xs:documentation>Whitland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX001">
        <xs:annotation>
          <xs:documentation>Birchgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX002">
        <xs:annotation>
          <xs:documentation>Bishopston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX003">
        <xs:annotation>
          <xs:documentation>Bonymaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX004">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX005">
        <xs:annotation>
          <xs:documentation>Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX006">
        <xs:annotation>
          <xs:documentation>Cockett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX007">
        <xs:annotation>
          <xs:documentation>Cwmbwrla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX008">
        <xs:annotation>
          <xs:documentation>Dunvant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX009">
        <xs:annotation>
          <xs:documentation>Gorseinon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX010">
        <xs:annotation>
          <xs:documentation>Gowerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX011">
        <xs:annotation>
          <xs:documentation>Grovesend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX012">
        <xs:annotation>
          <xs:documentation>Ilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX013">
        <xs:annotation>
          <xs:documentation>Killay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX014">
        <xs:annotation>
          <xs:documentation>Landore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX015">
        <xs:annotation>
          <xs:documentation>Llangennith, Llanmadoc and Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX016">
        <xs:annotation>
          <xs:documentation>Llangyfelach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX017">
        <xs:annotation>
          <xs:documentation>Llanrhidian Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX018">
        <xs:annotation>
          <xs:documentation>Llanrhidian Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX019">
        <xs:annotation>
          <xs:documentation>Llansamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX020">
        <xs:annotation>
          <xs:documentation>Llwchwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX021">
        <xs:annotation>
          <xs:documentation>Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX022">
        <xs:annotation>
          <xs:documentation>Morriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX023">
        <xs:annotation>
          <xs:documentation>Mumbles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX024">
        <xs:annotation>
          <xs:documentation>Mynyddbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX025">
        <xs:annotation>
          <xs:documentation>Penderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX026">
        <xs:annotation>
          <xs:documentation>Penllergaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX027">
        <xs:annotation>
          <xs:documentation>Pennard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX028">
        <xs:annotation>
          <xs:documentation>Penrice</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX029">
        <xs:annotation>
          <xs:documentation>Pont-Lliw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX030">
        <xs:annotation>
          <xs:documentation>Pontardulais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX031">
        <xs:annotation>
          <xs:documentation>Port Eynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX032">
        <xs:annotation>
          <xs:documentation>Reynoldston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX033">
        <xs:annotation>
          <xs:documentation>Rhossili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX034">
        <xs:annotation>
          <xs:documentation>St. Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX035">
        <xs:annotation>
          <xs:documentation>Sketty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX036">
        <xs:annotation>
          <xs:documentation>Townhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX037">
        <xs:annotation>
          <xs:documentation>Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX038">
        <xs:annotation>
          <xs:documentation>Upper Killay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ001">
        <xs:annotation>
          <xs:documentation>Aberavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ002">
        <xs:annotation>
          <xs:documentation>Baglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ003">
        <xs:annotation>
          <xs:documentation>Baglan Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ004">
        <xs:annotation>
          <xs:documentation>Blaengwrach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ005">
        <xs:annotation>
          <xs:documentation>Blaenhonddan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ006">
        <xs:annotation>
          <xs:documentation>Briton Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ007">
        <xs:annotation>
          <xs:documentation>Bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ008">
        <xs:annotation>
          <xs:documentation>Cilybebyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ009">
        <xs:annotation>
          <xs:documentation>Clyne and Melincourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ010">
        <xs:annotation>
          <xs:documentation>Coedffranc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ011">
        <xs:annotation>
          <xs:documentation>Crynant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ012">
        <xs:annotation>
          <xs:documentation>Cwmavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ013">
        <xs:annotation>
          <xs:documentation>Cwmllynfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ014">
        <xs:annotation>
          <xs:documentation>Dyffryn Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ015">
        <xs:annotation>
          <xs:documentation>Glyncorrwg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ016">
        <xs:annotation>
          <xs:documentation>Glynneath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ017">
        <xs:annotation>
          <xs:documentation>Gwaun-Cae-Gurwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ018">
        <xs:annotation>
          <xs:documentation>Margam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ019">
        <xs:annotation>
          <xs:documentation>Margam Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ020">
        <xs:annotation>
          <xs:documentation>Neath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ021">
        <xs:annotation>
          <xs:documentation>Onllwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ022">
        <xs:annotation>
          <xs:documentation>Pelenna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ023">
        <xs:annotation>
          <xs:documentation>Pontardawe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ024">
        <xs:annotation>
          <xs:documentation>Port Talbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ025">
        <xs:annotation>
          <xs:documentation>Resolven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ026">
        <xs:annotation>
          <xs:documentation>Sandfields East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ027">
        <xs:annotation>
          <xs:documentation>Sandfields West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ028">
        <xs:annotation>
          <xs:documentation>Seven Sisters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ029">
        <xs:annotation>
          <xs:documentation>Taibach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ030">
        <xs:annotation>
          <xs:documentation>Tonna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ031">
        <xs:annotation>
          <xs:documentation>Ystalyfera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB001">
        <xs:annotation>
          <xs:documentation>Brackla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB002">
        <xs:annotation>
          <xs:documentation>Bridgend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB003">
        <xs:annotation>
          <xs:documentation>Cefn Cribwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB004">
        <xs:annotation>
          <xs:documentation>Coity Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB005">
        <xs:annotation>
          <xs:documentation>Coychurch Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB006">
        <xs:annotation>
          <xs:documentation>Coychurch Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB008">
        <xs:annotation>
          <xs:documentation>Garw Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB009">
        <xs:annotation>
          <xs:documentation>Laleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB010">
        <xs:annotation>
          <xs:documentation>Llangynwyd Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB011">
        <xs:annotation>
          <xs:documentation>Llangynwyd Middle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB012">
        <xs:annotation>
          <xs:documentation>Maesteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB013">
        <xs:annotation>
          <xs:documentation>Merthyr Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB014">
        <xs:annotation>
          <xs:documentation>Newcastle Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB015">
        <xs:annotation>
          <xs:documentation>Ogmore Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB016">
        <xs:annotation>
          <xs:documentation>Pencoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB017">
        <xs:annotation>
          <xs:documentation>Porthcawl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB018">
        <xs:annotation>
          <xs:documentation>St. Bride's Minor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB019">
        <xs:annotation>
          <xs:documentation>Ynysawdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB020">
        <xs:annotation>
          <xs:documentation>Cornelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB021">
        <xs:annotation>
          <xs:documentation>Pyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD001">
        <xs:annotation>
          <xs:documentation>Barry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD002">
        <xs:annotation>
          <xs:documentation>Colwinston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD003">
        <xs:annotation>
          <xs:documentation>Cowbridge with Llanblethian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD004">
        <xs:annotation>
          <xs:documentation>Dinas Powys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD005">
        <xs:annotation>
          <xs:documentation>Ewenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD006">
        <xs:annotation>
          <xs:documentation>Llancarfan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD007">
        <xs:annotation>
          <xs:documentation>Llandough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD008">
        <xs:annotation>
          <xs:documentation>Llandow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD009">
        <xs:annotation>
          <xs:documentation>Llanfair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD010">
        <xs:annotation>
          <xs:documentation>Llangan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD011">
        <xs:annotation>
          <xs:documentation>Llan-maes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD012">
        <xs:annotation>
          <xs:documentation>Llantwit Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD013">
        <xs:annotation>
          <xs:documentation>Michaelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD014">
        <xs:annotation>
          <xs:documentation>Penarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD015">
        <xs:annotation>
          <xs:documentation>Pendoylan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD016">
        <xs:annotation>
          <xs:documentation>Penllyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD017">
        <xs:annotation>
          <xs:documentation>Peterston-super-Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD018">
        <xs:annotation>
          <xs:documentation>Rhoose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD019">
        <xs:annotation>
          <xs:documentation>St. Athan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD020">
        <xs:annotation>
          <xs:documentation>St. Bride's Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD021">
        <xs:annotation>
          <xs:documentation>St. Donats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD022">
        <xs:annotation>
          <xs:documentation>St. Georges-super-Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD023">
        <xs:annotation>
          <xs:documentation>St. Nicholas and Bonvilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD024">
        <xs:annotation>
          <xs:documentation>Sully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD025">
        <xs:annotation>
          <xs:documentation>Welsh St. Donats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD026">
        <xs:annotation>
          <xs:documentation>Wenvoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD027">
        <xs:annotation>
          <xs:documentation>Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF001">
        <xs:annotation>
          <xs:documentation>Aberaman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF002">
        <xs:annotation>
          <xs:documentation>Abercynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF003">
        <xs:annotation>
          <xs:documentation>Aberdare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF004">
        <xs:annotation>
          <xs:documentation>Cwmbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF005">
        <xs:annotation>
          <xs:documentation>Cwm Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF006">
        <xs:annotation>
          <xs:documentation>Cymmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF007">
        <xs:annotation>
          <xs:documentation>Ferndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF008">
        <xs:annotation>
          <xs:documentation>Gilfach Goch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF009">
        <xs:annotation>
          <xs:documentation>Hirwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF010">
        <xs:annotation>
          <xs:documentation>Llanharan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF011">
        <xs:annotation>
          <xs:documentation>Llanharry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF012">
        <xs:annotation>
          <xs:documentation>Llantrisant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF013">
        <xs:annotation>
          <xs:documentation>Llantwit Fardre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF014">
        <xs:annotation>
          <xs:documentation>Llwydcoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF015">
        <xs:annotation>
          <xs:documentation>Llwyn-y-pia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF016">
        <xs:annotation>
          <xs:documentation>Maerdy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF017">
        <xs:annotation>
          <xs:documentation>Mountain Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF018">
        <xs:annotation>
          <xs:documentation>Penrhiwceiber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF019">
        <xs:annotation>
          <xs:documentation>Pentre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF020">
        <xs:annotation>
          <xs:documentation>Pen-y-graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF021">
        <xs:annotation>
          <xs:documentation>Pen-y-waun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF022">
        <xs:annotation>
          <xs:documentation>Pont-y-clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF023">
        <xs:annotation>
          <xs:documentation>Pontypridd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF024">
        <xs:annotation>
          <xs:documentation>Porth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF025">
        <xs:annotation>
          <xs:documentation>Rhigos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF026">
        <xs:annotation>
          <xs:documentation>Taffs Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF027">
        <xs:annotation>
          <xs:documentation>Tonypandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF028">
        <xs:annotation>
          <xs:documentation>Tonyrefail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF029">
        <xs:annotation>
          <xs:documentation>Trehafod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF030">
        <xs:annotation>
          <xs:documentation>Treherbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF031">
        <xs:annotation>
          <xs:documentation>Trealaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF032">
        <xs:annotation>
          <xs:documentation>Treorchy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF033">
        <xs:annotation>
          <xs:documentation>Tylorstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF034">
        <xs:annotation>
          <xs:documentation>Ynyshir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF035">
        <xs:annotation>
          <xs:documentation>Ynysybwl and Coed-y-cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF036">
        <xs:annotation>
          <xs:documentation>Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH001">
        <xs:annotation>
          <xs:documentation>Bedlinog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH002">
        <xs:annotation>
          <xs:documentation>Cyfarthfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH003">
        <xs:annotation>
          <xs:documentation>Dowlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH004">
        <xs:annotation>
          <xs:documentation>Gurnos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH005">
        <xs:annotation>
          <xs:documentation>Merthyr Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH006">
        <xs:annotation>
          <xs:documentation>Pant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH007">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH008">
        <xs:annotation>
          <xs:documentation>Penydarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH009">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH010">
        <xs:annotation>
          <xs:documentation>Treharris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH011">
        <xs:annotation>
          <xs:documentation>Troed-y-rhiw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH012">
        <xs:annotation>
          <xs:documentation>Vaynor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK001">
        <xs:annotation>
          <xs:documentation>Abercarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK002">
        <xs:annotation>
          <xs:documentation>Aber Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK003">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK004">
        <xs:annotation>
          <xs:documentation>Bargoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK005">
        <xs:annotation>
          <xs:documentation>Bedwas, Trethomas and Machen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK006">
        <xs:annotation>
          <xs:documentation>Blackwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK007">
        <xs:annotation>
          <xs:documentation>Caerphilly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK008">
        <xs:annotation>
          <xs:documentation>Cefn Fforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK009">
        <xs:annotation>
          <xs:documentation>Crosskeys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK010">
        <xs:annotation>
          <xs:documentation>Crumlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK011">
        <xs:annotation>
          <xs:documentation>Darran Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK012">
        <xs:annotation>
          <xs:documentation>Gelligaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK013">
        <xs:annotation>
          <xs:documentation>Llanbradach and Pwllypant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK014">
        <xs:annotation>
          <xs:documentation>Maesycwmmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK015">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK016">
        <xs:annotation>
          <xs:documentation>Newbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK017">
        <xs:annotation>
          <xs:documentation>New Tredegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK018">
        <xs:annotation>
          <xs:documentation>Pengam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK019">
        <xs:annotation>
          <xs:documentation>Penmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK020">
        <xs:annotation>
          <xs:documentation>Penyrheol, Trecenydd and Energlyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK021">
        <xs:annotation>
          <xs:documentation>Pontllanfraith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK022">
        <xs:annotation>
          <xs:documentation>Rhymney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK023">
        <xs:annotation>
          <xs:documentation>Risca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK024">
        <xs:annotation>
          <xs:documentation>Rudry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK025">
        <xs:annotation>
          <xs:documentation>Van</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK026">
        <xs:annotation>
          <xs:documentation>Ynysddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL001">
        <xs:annotation>
          <xs:documentation>Abertillery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL002">
        <xs:annotation>
          <xs:documentation>Beaufort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL003">
        <xs:annotation>
          <xs:documentation>Brynmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL004">
        <xs:annotation>
          <xs:documentation>Cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL005">
        <xs:annotation>
          <xs:documentation>Ebbw Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL006">
        <xs:annotation>
          <xs:documentation>Llanhilleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL007">
        <xs:annotation>
          <xs:documentation>Nantyglo and Blaina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL008">
        <xs:annotation>
          <xs:documentation>Tredegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM001">
        <xs:annotation>
          <xs:documentation>Abersychan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM002">
        <xs:annotation>
          <xs:documentation>Blaenavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM003">
        <xs:annotation>
          <xs:documentation>Croesyceiliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM004">
        <xs:annotation>
          <xs:documentation>Cwmbran Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM005">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM006">
        <xs:annotation>
          <xs:documentation>Henllys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM007">
        <xs:annotation>
          <xs:documentation>Llantarnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM008">
        <xs:annotation>
          <xs:documentation>Llanyrafon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM009">
        <xs:annotation>
          <xs:documentation>New Inn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM010">
        <xs:annotation>
          <xs:documentation>Panteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM011">
        <xs:annotation>
          <xs:documentation>Pen Tranch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM012">
        <xs:annotation>
          <xs:documentation>Ponthir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM013">
        <xs:annotation>
          <xs:documentation>Pontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM014">
        <xs:annotation>
          <xs:documentation>Pontymoile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM015">
        <xs:annotation>
          <xs:documentation>Trevethin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM016">
        <xs:annotation>
          <xs:documentation>Upper Cwmbran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP001">
        <xs:annotation>
          <xs:documentation>Abergavenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP002">
        <xs:annotation>
          <xs:documentation>Caerwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP003">
        <xs:annotation>
          <xs:documentation>Caldicot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP004">
        <xs:annotation>
          <xs:documentation>Chepstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP005">
        <xs:annotation>
          <xs:documentation>Crucorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP006">
        <xs:annotation>
          <xs:documentation>Devauden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP007">
        <xs:annotation>
          <xs:documentation>Goetre Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP008">
        <xs:annotation>
          <xs:documentation>Grosmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP009">
        <xs:annotation>
          <xs:documentation>Gwehelog Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP010">
        <xs:annotation>
          <xs:documentation>Llanarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP011">
        <xs:annotation>
          <xs:documentation>Llanbadoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP012">
        <xs:annotation>
          <xs:documentation>Llanelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP013">
        <xs:annotation>
          <xs:documentation>Llanfoist Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP014">
        <xs:annotation>
          <xs:documentation>Llangattock-Vibon-Avel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP015">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP016">
        <xs:annotation>
          <xs:documentation>Llangybi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP017">
        <xs:annotation>
          <xs:documentation>Llanhennock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP018">
        <xs:annotation>
          <xs:documentation>Llanover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP019">
        <xs:annotation>
          <xs:documentation>Llantilio Crossenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP020">
        <xs:annotation>
          <xs:documentation>Llantilio Pertholey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP021">
        <xs:annotation>
          <xs:documentation>Llantrisant Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP022">
        <xs:annotation>
          <xs:documentation>Magor with Undy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP023">
        <xs:annotation>
          <xs:documentation>Mathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP024">
        <xs:annotation>
          <xs:documentation>Mitchel Troy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP025">
        <xs:annotation>
          <xs:documentation>Monmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP026">
        <xs:annotation>
          <xs:documentation>Portskewett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP027">
        <xs:annotation>
          <xs:documentation>Raglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP028">
        <xs:annotation>
          <xs:documentation>Rogiet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP029">
        <xs:annotation>
          <xs:documentation>St. Arvans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP030">
        <xs:annotation>
          <xs:documentation>Shirenewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP031">
        <xs:annotation>
          <xs:documentation>Tintern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP032">
        <xs:annotation>
          <xs:documentation>Trellech United</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP033">
        <xs:annotation>
          <xs:documentation>Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR001">
        <xs:annotation>
          <xs:documentation>Allt-yr-yn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR002">
        <xs:annotation>
          <xs:documentation>Alway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR003">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR004">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR005">
        <xs:annotation>
          <xs:documentation>Bishton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR006">
        <xs:annotation>
          <xs:documentation>Caerleon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR007">
        <xs:annotation>
          <xs:documentation>Coedkernew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR008">
        <xs:annotation>
          <xs:documentation>Gaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR009">
        <xs:annotation>
          <xs:documentation>Goldcliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR010">
        <xs:annotation>
          <xs:documentation>Graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR011">
        <xs:annotation>
          <xs:documentation>Langstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR012">
        <xs:annotation>
          <xs:documentation>Liswerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR013">
        <xs:annotation>
          <xs:documentation>Llanvaches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR014">
        <xs:annotation>
          <xs:documentation>Llanwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR015">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR016">
        <xs:annotation>
          <xs:documentation>Marshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR017">
        <xs:annotation>
          <xs:documentation>Michaelstone-y-Fedw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR018">
        <xs:annotation>
          <xs:documentation>Nash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR019">
        <xs:annotation>
          <xs:documentation>Penhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR020">
        <xs:annotation>
          <xs:documentation>Pillgwenlly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR021">
        <xs:annotation>
          <xs:documentation>Redwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR022">
        <xs:annotation>
          <xs:documentation>Ringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR023">
        <xs:annotation>
          <xs:documentation>Rogerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR024">
        <xs:annotation>
          <xs:documentation>St. Julians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR025">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR026">
        <xs:annotation>
          <xs:documentation>Stow Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR027">
        <xs:annotation>
          <xs:documentation>Tredegar Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR028">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR029">
        <xs:annotation>
          <xs:documentation>Wentlooge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT001">
        <xs:annotation>
          <xs:documentation>Adamsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT002">
        <xs:annotation>
          <xs:documentation>Butetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT003">
        <xs:annotation>
          <xs:documentation>Caerau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT004">
        <xs:annotation>
          <xs:documentation>Canton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT005">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT006">
        <xs:annotation>
          <xs:documentation>Cathays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT007">
        <xs:annotation>
          <xs:documentation>Cyncoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT008">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT009">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT010">
        <xs:annotation>
          <xs:documentation>Gabalfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT011">
        <xs:annotation>
          <xs:documentation>Grangetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT012">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT013">
        <xs:annotation>
          <xs:documentation>Lisvane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT014">
        <xs:annotation>
          <xs:documentation>Llandaff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT015">
        <xs:annotation>
          <xs:documentation>Llandaff North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT016">
        <xs:annotation>
          <xs:documentation>Llanishen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT017">
        <xs:annotation>
          <xs:documentation>Llanrumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT018">
        <xs:annotation>
          <xs:documentation>Pentwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT019">
        <xs:annotation>
          <xs:documentation>Pentyrch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT020">
        <xs:annotation>
          <xs:documentation>Plasnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT021">
        <xs:annotation>
          <xs:documentation>Radyr and Morganstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT022">
        <xs:annotation>
          <xs:documentation>Rhiwbina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT023">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT024">
        <xs:annotation>
          <xs:documentation>Roath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT025">
        <xs:annotation>
          <xs:documentation>Rumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT026">
        <xs:annotation>
          <xs:documentation>St. Fagans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT028">
        <xs:annotation>
          <xs:documentation>Splott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT029">
        <xs:annotation>
          <xs:documentation>Tongwynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT030">
        <xs:annotation>
          <xs:documentation>Trowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT031">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT032">
        <xs:annotation>
          <xs:documentation>Old St. Mellons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT033">
        <xs:annotation>
          <xs:documentation>Pontprennau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC001">
        <xs:annotation>
          <xs:documentation>Ampthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC002">
        <xs:annotation>
          <xs:documentation>Arlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC003">
        <xs:annotation>
          <xs:documentation>Aspley Guise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC004">
        <xs:annotation>
          <xs:documentation>Aspley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC005">
        <xs:annotation>
          <xs:documentation>Astwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC006">
        <xs:annotation>
          <xs:documentation>Battlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC007">
        <xs:annotation>
          <xs:documentation>Biggleswade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC008">
        <xs:annotation>
          <xs:documentation>Blunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC009">
        <xs:annotation>
          <xs:documentation>Brogborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC010">
        <xs:annotation>
          <xs:documentation>Campton and Chicksands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC011">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC012">
        <xs:annotation>
          <xs:documentation>Clophill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC013">
        <xs:annotation>
          <xs:documentation>Cranfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC014">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC015">
        <xs:annotation>
          <xs:documentation>Edworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC016">
        <xs:annotation>
          <xs:documentation>Eversholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC017">
        <xs:annotation>
          <xs:documentation>Everton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC018">
        <xs:annotation>
          <xs:documentation>Eyeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC019">
        <xs:annotation>
          <xs:documentation>Flitton and Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC020">
        <xs:annotation>
          <xs:documentation>Flitwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC021">
        <xs:annotation>
          <xs:documentation>Gravenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC022">
        <xs:annotation>
          <xs:documentation>Harlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC023">
        <xs:annotation>
          <xs:documentation>Haynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC024">
        <xs:annotation>
          <xs:documentation>Henlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC025">
        <xs:annotation>
          <xs:documentation>Houghton Conquest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC026">
        <xs:annotation>
          <xs:documentation>Hulcote and Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC027">
        <xs:annotation>
          <xs:documentation>Husborne Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC028">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC029">
        <xs:annotation>
          <xs:documentation>Lidlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC030">
        <xs:annotation>
          <xs:documentation>Marston Moretaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC031">
        <xs:annotation>
          <xs:documentation>Maulden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC032">
        <xs:annotation>
          <xs:documentation>Meppershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC033">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC034">
        <xs:annotation>
          <xs:documentation>Milton Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC035">
        <xs:annotation>
          <xs:documentation>Mogerhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC036">
        <xs:annotation>
          <xs:documentation>Northill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC037">
        <xs:annotation>
          <xs:documentation>Old Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC038">
        <xs:annotation>
          <xs:documentation>Potsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC039">
        <xs:annotation>
          <xs:documentation>Potton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC040">
        <xs:annotation>
          <xs:documentation>Pulloxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC041">
        <xs:annotation>
          <xs:documentation>Ridgmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC042">
        <xs:annotation>
          <xs:documentation>Sandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC043">
        <xs:annotation>
          <xs:documentation>Shefford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC044">
        <xs:annotation>
          <xs:documentation>Shillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC045">
        <xs:annotation>
          <xs:documentation>Silsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC046">
        <xs:annotation>
          <xs:documentation>Southill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC047">
        <xs:annotation>
          <xs:documentation>Steppingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC048">
        <xs:annotation>
          <xs:documentation>Stondon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC049">
        <xs:annotation>
          <xs:documentation>Stotfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC050">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC051">
        <xs:annotation>
          <xs:documentation>Tempsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC052">
        <xs:annotation>
          <xs:documentation>Tingrith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC053">
        <xs:annotation>
          <xs:documentation>Westoning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC054">
        <xs:annotation>
          <xs:documentation>Woburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC055">
        <xs:annotation>
          <xs:documentation>Wrestlingworth and Cockayne Hatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD001">
        <xs:annotation>
          <xs:documentation>Biddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD002">
        <xs:annotation>
          <xs:documentation>Bletsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD003">
        <xs:annotation>
          <xs:documentation>Bolnhurst and Keysoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD004">
        <xs:annotation>
          <xs:documentation>Bromham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD005">
        <xs:annotation>
          <xs:documentation>Cardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD006">
        <xs:annotation>
          <xs:documentation>Carlton and Chellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD007">
        <xs:annotation>
          <xs:documentation>Clapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD008">
        <xs:annotation>
          <xs:documentation>Colmworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD009">
        <xs:annotation>
          <xs:documentation>Cople</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD010">
        <xs:annotation>
          <xs:documentation>Dean and Shelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD011">
        <xs:annotation>
          <xs:documentation>Eastcotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD012">
        <xs:annotation>
          <xs:documentation>Elstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD013">
        <xs:annotation>
          <xs:documentation>Felmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD014">
        <xs:annotation>
          <xs:documentation>Great Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD015">
        <xs:annotation>
          <xs:documentation>Harrold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD016">
        <xs:annotation>
          <xs:documentation>Kempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD017">
        <xs:annotation>
          <xs:documentation>Kempston Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD018">
        <xs:annotation>
          <xs:documentation>Knotting and Souldrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD019">
        <xs:annotation>
          <xs:documentation>Little Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD020">
        <xs:annotation>
          <xs:documentation>Little Staughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD021">
        <xs:annotation>
          <xs:documentation>Melchbourne and Yielden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD022">
        <xs:annotation>
          <xs:documentation>Milton Ernest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD023">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD024">
        <xs:annotation>
          <xs:documentation>Odell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD025">
        <xs:annotation>
          <xs:documentation>Pavenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD026">
        <xs:annotation>
          <xs:documentation>Pertenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD027">
        <xs:annotation>
          <xs:documentation>Podington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD028">
        <xs:annotation>
          <xs:documentation>Ravensden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD029">
        <xs:annotation>
          <xs:documentation>Renhold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD030">
        <xs:annotation>
          <xs:documentation>Riseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD031">
        <xs:annotation>
          <xs:documentation>Roxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD032">
        <xs:annotation>
          <xs:documentation>Sharnbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD033">
        <xs:annotation>
          <xs:documentation>Stagsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD034">
        <xs:annotation>
          <xs:documentation>Staploe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD035">
        <xs:annotation>
          <xs:documentation>Stevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD036">
        <xs:annotation>
          <xs:documentation>Stewartby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD037">
        <xs:annotation>
          <xs:documentation>Swineshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD038">
        <xs:annotation>
          <xs:documentation>Thurleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD039">
        <xs:annotation>
          <xs:documentation>Turvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD040">
        <xs:annotation>
          <xs:documentation>Wilden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD041">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD042">
        <xs:annotation>
          <xs:documentation>Wilshamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD043">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD044">
        <xs:annotation>
          <xs:documentation>Wymington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD045">
        <xs:annotation>
          <xs:documentation>Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE001">
        <xs:annotation>
          <xs:documentation>Barton-le-Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE002">
        <xs:annotation>
          <xs:documentation>Great Billington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE003">
        <xs:annotation>
          <xs:documentation>Caddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE004">
        <xs:annotation>
          <xs:documentation>Chalgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE005">
        <xs:annotation>
          <xs:documentation>Dunstable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE006">
        <xs:annotation>
          <xs:documentation>Eaton Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE007">
        <xs:annotation>
          <xs:documentation>Eggington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE008">
        <xs:annotation>
          <xs:documentation>Heath and Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE009">
        <xs:annotation>
          <xs:documentation>Hockliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE010">
        <xs:annotation>
          <xs:documentation>Houghton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE011">
        <xs:annotation>
          <xs:documentation>Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE012">
        <xs:annotation>
          <xs:documentation>Kensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE013">
        <xs:annotation>
          <xs:documentation>Leighton-Linslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE014">
        <xs:annotation>
          <xs:documentation>Stanbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE015">
        <xs:annotation>
          <xs:documentation>Streatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE016">
        <xs:annotation>
          <xs:documentation>Studham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE017">
        <xs:annotation>
          <xs:documentation>Sundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE018">
        <xs:annotation>
          <xs:documentation>Tilsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE019">
        <xs:annotation>
          <xs:documentation>Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE020">
        <xs:annotation>
          <xs:documentation>Totternhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE021">
        <xs:annotation>
          <xs:documentation>Whipsnade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE022">
        <xs:annotation>
          <xs:documentation>Chalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE023">
        <xs:annotation>
          <xs:documentation>Slip End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB001">
        <xs:annotation>
          <xs:documentation>Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB002">
        <xs:annotation>
          <xs:documentation>Adstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB003">
        <xs:annotation>
          <xs:documentation>Akeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB004">
        <xs:annotation>
          <xs:documentation>Ashendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB005">
        <xs:annotation>
          <xs:documentation>Aston Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB006">
        <xs:annotation>
          <xs:documentation>Aston Clinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB007">
        <xs:annotation>
          <xs:documentation>Aston Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB008">
        <xs:annotation>
          <xs:documentation>Barton Hartshorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB009">
        <xs:annotation>
          <xs:documentation>Beachampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB010">
        <xs:annotation>
          <xs:documentation>Biddlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB011">
        <xs:annotation>
          <xs:documentation>Bierton with Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB012">
        <xs:annotation>
          <xs:documentation>Boarstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB013">
        <xs:annotation>
          <xs:documentation>Brill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB014">
        <xs:annotation>
          <xs:documentation>Buckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB015">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB016">
        <xs:annotation>
          <xs:documentation>Charndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB017">
        <xs:annotation>
          <xs:documentation>Chearsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB018">
        <xs:annotation>
          <xs:documentation>Cheddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB019">
        <xs:annotation>
          <xs:documentation>Chetwode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB020">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB021">
        <xs:annotation>
          <xs:documentation>Creslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB022">
        <xs:annotation>
          <xs:documentation>Cublington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB023">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB024">
        <xs:annotation>
          <xs:documentation>Dinton-with-Ford and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB025">
        <xs:annotation>
          <xs:documentation>Dorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB026">
        <xs:annotation>
          <xs:documentation>Drayton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB027">
        <xs:annotation>
          <xs:documentation>Drayton Parslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB028">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB029">
        <xs:annotation>
          <xs:documentation>East Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB030">
        <xs:annotation>
          <xs:documentation>Edgcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB031">
        <xs:annotation>
          <xs:documentation>Edlesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB032">
        <xs:annotation>
          <xs:documentation>Fleet Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB033">
        <xs:annotation>
          <xs:documentation>Foscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB034">
        <xs:annotation>
          <xs:documentation>Gawcott with Lenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB035">
        <xs:annotation>
          <xs:documentation>Granborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB036">
        <xs:annotation>
          <xs:documentation>Great Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB037">
        <xs:annotation>
          <xs:documentation>Great Horwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB038">
        <xs:annotation>
          <xs:documentation>Grendon Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB039">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB040">
        <xs:annotation>
          <xs:documentation>Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB041">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB042">
        <xs:annotation>
          <xs:documentation>Hillesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB043">
        <xs:annotation>
          <xs:documentation>Hoggeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB044">
        <xs:annotation>
          <xs:documentation>Hogshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB045">
        <xs:annotation>
          <xs:documentation>Hulcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB046">
        <xs:annotation>
          <xs:documentation>Ickford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB047">
        <xs:annotation>
          <xs:documentation>Ivinghoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB048">
        <xs:annotation>
          <xs:documentation>Kingsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB049">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB050">
        <xs:annotation>
          <xs:documentation>Leckhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB051">
        <xs:annotation>
          <xs:documentation>Lillingstone Dayrell with Luffield Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB052">
        <xs:annotation>
          <xs:documentation>Lillingstone Lovell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB053">
        <xs:annotation>
          <xs:documentation>Little Horwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB054">
        <xs:annotation>
          <xs:documentation>Long Crendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB055">
        <xs:annotation>
          <xs:documentation>Lower Winchendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB056">
        <xs:annotation>
          <xs:documentation>Ludgershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB058">
        <xs:annotation>
          <xs:documentation>Maids Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB059">
        <xs:annotation>
          <xs:documentation>Marsh Gibbon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB060">
        <xs:annotation>
          <xs:documentation>Marsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB061">
        <xs:annotation>
          <xs:documentation>Mentmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB062">
        <xs:annotation>
          <xs:documentation>Middle Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB063">
        <xs:annotation>
          <xs:documentation>Mursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB064">
        <xs:annotation>
          <xs:documentation>Nash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB065">
        <xs:annotation>
          <xs:documentation>Newton Longville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB066">
        <xs:annotation>
          <xs:documentation>North Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB067">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB068">
        <xs:annotation>
          <xs:documentation>Oving</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB069">
        <xs:annotation>
          <xs:documentation>Padbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB070">
        <xs:annotation>
          <xs:documentation>Pitchcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB071">
        <xs:annotation>
          <xs:documentation>Pitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB072">
        <xs:annotation>
          <xs:documentation>Poundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB073">
        <xs:annotation>
          <xs:documentation>Preston Bissett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB074">
        <xs:annotation>
          <xs:documentation>Quainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB075">
        <xs:annotation>
          <xs:documentation>Quarrendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB076">
        <xs:annotation>
          <xs:documentation>Radclive-cum-Chackmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB077">
        <xs:annotation>
          <xs:documentation>Shabbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB078">
        <xs:annotation>
          <xs:documentation>Shalstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB079">
        <xs:annotation>
          <xs:documentation>Slapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB080">
        <xs:annotation>
          <xs:documentation>Soulbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB081">
        <xs:annotation>
          <xs:documentation>Steeple Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB082">
        <xs:annotation>
          <xs:documentation>Stewkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB083">
        <xs:annotation>
          <xs:documentation>Stoke Hammond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB084">
        <xs:annotation>
          <xs:documentation>Stoke Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB085">
        <xs:annotation>
          <xs:documentation>Stone with Bishopstone and Hartwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB086">
        <xs:annotation>
          <xs:documentation>Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB087">
        <xs:annotation>
          <xs:documentation>Swanbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB088">
        <xs:annotation>
          <xs:documentation>Thornborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB089">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB090">
        <xs:annotation>
          <xs:documentation>Tingewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB091">
        <xs:annotation>
          <xs:documentation>Turweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB092">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB093">
        <xs:annotation>
          <xs:documentation>Upper Winchendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB094">
        <xs:annotation>
          <xs:documentation>Waddesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB095">
        <xs:annotation>
          <xs:documentation>Water Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB096">
        <xs:annotation>
          <xs:documentation>Weedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB097">
        <xs:annotation>
          <xs:documentation>Wendover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB098">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB099">
        <xs:annotation>
          <xs:documentation>Westcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB100">
        <xs:annotation>
          <xs:documentation>Weston Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB101">
        <xs:annotation>
          <xs:documentation>Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB102">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB103">
        <xs:annotation>
          <xs:documentation>Wing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB104">
        <xs:annotation>
          <xs:documentation>Wingrave with Rowsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB105">
        <xs:annotation>
          <xs:documentation>Winslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB106">
        <xs:annotation>
          <xs:documentation>Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB107">
        <xs:annotation>
          <xs:documentation>Worminghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB108">
        <xs:annotation>
          <xs:documentation>Wotton Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB109">
        <xs:annotation>
          <xs:documentation>Aylesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB110">
        <xs:annotation>
          <xs:documentation>Coldharbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB111">
        <xs:annotation>
          <xs:documentation>Watermead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC001">
        <xs:annotation>
          <xs:documentation>Amersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC002">
        <xs:annotation>
          <xs:documentation>Ashley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC003">
        <xs:annotation>
          <xs:documentation>Chalfont St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC004">
        <xs:annotation>
          <xs:documentation>Chalfont St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC005">
        <xs:annotation>
          <xs:documentation>Chartridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC006">
        <xs:annotation>
          <xs:documentation>Chenies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC007">
        <xs:annotation>
          <xs:documentation>Chesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC008">
        <xs:annotation>
          <xs:documentation>Chesham Bois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC009">
        <xs:annotation>
          <xs:documentation>Cholesbury-cum-St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC010">
        <xs:annotation>
          <xs:documentation>Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC011">
        <xs:annotation>
          <xs:documentation>Great Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC012">
        <xs:annotation>
          <xs:documentation>Latimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC013">
        <xs:annotation>
          <xs:documentation>Little Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC014">
        <xs:annotation>
          <xs:documentation>Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC015">
        <xs:annotation>
          <xs:documentation>Seer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC016">
        <xs:annotation>
          <xs:documentation>The Lee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE001">
        <xs:annotation>
          <xs:documentation>Beaconsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE002">
        <xs:annotation>
          <xs:documentation>Burnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE003">
        <xs:annotation>
          <xs:documentation>Denham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE004">
        <xs:annotation>
          <xs:documentation>Dorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE005">
        <xs:annotation>
          <xs:documentation>Farnham Royal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE006">
        <xs:annotation>
          <xs:documentation>Fulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE007">
        <xs:annotation>
          <xs:documentation>Gerrards Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE008">
        <xs:annotation>
          <xs:documentation>Hedgerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE009">
        <xs:annotation>
          <xs:documentation>Iver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE010">
        <xs:annotation>
          <xs:documentation>Stoke Poges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE011">
        <xs:annotation>
          <xs:documentation>Taplow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE012">
        <xs:annotation>
          <xs:documentation>Wexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF001">
        <xs:annotation>
          <xs:documentation>Bledlow-cum-Saunderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF002">
        <xs:annotation>
          <xs:documentation>Bradenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF003">
        <xs:annotation>
          <xs:documentation>Chepping Wycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF004">
        <xs:annotation>
          <xs:documentation>Downley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF005">
        <xs:annotation>
          <xs:documentation>Ellesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF006">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF007">
        <xs:annotation>
          <xs:documentation>Great and Little Hampden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF008">
        <xs:annotation>
          <xs:documentation>Great and Little Kimble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF009">
        <xs:annotation>
          <xs:documentation>Great Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF010">
        <xs:annotation>
          <xs:documentation>Hambleden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF011">
        <xs:annotation>
          <xs:documentation>Hazlemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF012">
        <xs:annotation>
          <xs:documentation>Hedsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF013">
        <xs:annotation>
          <xs:documentation>Hughenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF014">
        <xs:annotation>
          <xs:documentation>Ibstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF015">
        <xs:annotation>
          <xs:documentation>Lacey Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF016">
        <xs:annotation>
          <xs:documentation>Lane End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF017">
        <xs:annotation>
          <xs:documentation>Little Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF018">
        <xs:annotation>
          <xs:documentation>Longwick-cum-Ilmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF019">
        <xs:annotation>
          <xs:documentation>Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF020">
        <xs:annotation>
          <xs:documentation>Medmenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF021">
        <xs:annotation>
          <xs:documentation>Piddington and Wheeler End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF022">
        <xs:annotation>
          <xs:documentation>Princes Risborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF023">
        <xs:annotation>
          <xs:documentation>Radnage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF024">
        <xs:annotation>
          <xs:documentation>Stokenchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF025">
        <xs:annotation>
          <xs:documentation>Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF026">
        <xs:annotation>
          <xs:documentation>West Wycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF027">
        <xs:annotation>
          <xs:documentation>Wooburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC001">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC002">
        <xs:annotation>
          <xs:documentation>Bottisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC003">
        <xs:annotation>
          <xs:documentation>Brinkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC004">
        <xs:annotation>
          <xs:documentation>Burrough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC005">
        <xs:annotation>
          <xs:documentation>Burwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC006">
        <xs:annotation>
          <xs:documentation>Cheveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC007">
        <xs:annotation>
          <xs:documentation>Chippenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC008">
        <xs:annotation>
          <xs:documentation>Coveney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC009">
        <xs:annotation>
          <xs:documentation>Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC010">
        <xs:annotation>
          <xs:documentation>Dullingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC011">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC012">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC013">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC014">
        <xs:annotation>
          <xs:documentation>Isleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC015">
        <xs:annotation>
          <xs:documentation>Kennett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC016">
        <xs:annotation>
          <xs:documentation>Kirtling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC017">
        <xs:annotation>
          <xs:documentation>Littleport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC018">
        <xs:annotation>
          <xs:documentation>Lode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC019">
        <xs:annotation>
          <xs:documentation>Mepal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC020">
        <xs:annotation>
          <xs:documentation>Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC021">
        <xs:annotation>
          <xs:documentation>Snailwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC022">
        <xs:annotation>
          <xs:documentation>Soham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC023">
        <xs:annotation>
          <xs:documentation>Stetchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC024">
        <xs:annotation>
          <xs:documentation>Stretham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC025">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC026">
        <xs:annotation>
          <xs:documentation>Swaffham Bulbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC027">
        <xs:annotation>
          <xs:documentation>Swaffham Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC028">
        <xs:annotation>
          <xs:documentation>Thetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC029">
        <xs:annotation>
          <xs:documentation>Wentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC030">
        <xs:annotation>
          <xs:documentation>Westley Waterless</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC031">
        <xs:annotation>
          <xs:documentation>Wicken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC032">
        <xs:annotation>
          <xs:documentation>Wilburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC033">
        <xs:annotation>
          <xs:documentation>Witcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC034">
        <xs:annotation>
          <xs:documentation>Witchford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC035">
        <xs:annotation>
          <xs:documentation>Woodditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD001">
        <xs:annotation>
          <xs:documentation>Benwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD002">
        <xs:annotation>
          <xs:documentation>Chatteris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD003">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD004">
        <xs:annotation>
          <xs:documentation>Elm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD005">
        <xs:annotation>
          <xs:documentation>Leverington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD006">
        <xs:annotation>
          <xs:documentation>Manea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD007">
        <xs:annotation>
          <xs:documentation>March</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD008">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD009">
        <xs:annotation>
          <xs:documentation>Parson Drove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD010">
        <xs:annotation>
          <xs:documentation>Tydd St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD011">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD012">
        <xs:annotation>
          <xs:documentation>Whittlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD013">
        <xs:annotation>
          <xs:documentation>Wimblington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD014">
        <xs:annotation>
          <xs:documentation>Wisbech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD015">
        <xs:annotation>
          <xs:documentation>Wisbech St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD016">
        <xs:annotation>
          <xs:documentation>Gorefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE001">
        <xs:annotation>
          <xs:documentation>Abbotsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE002">
        <xs:annotation>
          <xs:documentation>Abbots Ripton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE003">
        <xs:annotation>
          <xs:documentation>Alconbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE004">
        <xs:annotation>
          <xs:documentation>Alconbury Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE005">
        <xs:annotation>
          <xs:documentation>Alwalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE006">
        <xs:annotation>
          <xs:documentation>Barham and Woolley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE007">
        <xs:annotation>
          <xs:documentation>Bluntisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE008">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE009">
        <xs:annotation>
          <xs:documentation>Brington and Molesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE010">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE011">
        <xs:annotation>
          <xs:documentation>Buckden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE012">
        <xs:annotation>
          <xs:documentation>Buckworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE013">
        <xs:annotation>
          <xs:documentation>Bury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE014">
        <xs:annotation>
          <xs:documentation>Bythorn and Keyston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE015">
        <xs:annotation>
          <xs:documentation>Catworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE016">
        <xs:annotation>
          <xs:documentation>Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE017">
        <xs:annotation>
          <xs:documentation>Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE018">
        <xs:annotation>
          <xs:documentation>Conington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE019">
        <xs:annotation>
          <xs:documentation>Covington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE020">
        <xs:annotation>
          <xs:documentation>Denton and Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE021">
        <xs:annotation>
          <xs:documentation>Diddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE022">
        <xs:annotation>
          <xs:documentation>Earith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE023">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE024">
        <xs:annotation>
          <xs:documentation>Ellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE025">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE026">
        <xs:annotation>
          <xs:documentation>Eynesbury Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE027">
        <xs:annotation>
          <xs:documentation>Farcet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE028">
        <xs:annotation>
          <xs:documentation>Fenstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE029">
        <xs:annotation>
          <xs:documentation>Folksworth and Washingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE030">
        <xs:annotation>
          <xs:documentation>Glatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE031">
        <xs:annotation>
          <xs:documentation>Godmanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE032">
        <xs:annotation>
          <xs:documentation>Grafham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE033">
        <xs:annotation>
          <xs:documentation>Great Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE034">
        <xs:annotation>
          <xs:documentation>Great Gransden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE035">
        <xs:annotation>
          <xs:documentation>Great Paxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE036">
        <xs:annotation>
          <xs:documentation>Great Staughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE037">
        <xs:annotation>
          <xs:documentation>Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE038">
        <xs:annotation>
          <xs:documentation>Hail Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE039">
        <xs:annotation>
          <xs:documentation>Hamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE040">
        <xs:annotation>
          <xs:documentation>Hemingford Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE041">
        <xs:annotation>
          <xs:documentation>Hemingford Grey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE042">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE043">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE044">
        <xs:annotation>
          <xs:documentation>Holywell-cum-Needingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE045">
        <xs:annotation>
          <xs:documentation>Houghton and Wyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE046">
        <xs:annotation>
          <xs:documentation>Huntingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE047">
        <xs:annotation>
          <xs:documentation>Kimbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE048">
        <xs:annotation>
          <xs:documentation>Kings Ripton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE049">
        <xs:annotation>
          <xs:documentation>Leighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE050">
        <xs:annotation>
          <xs:documentation>Little Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE051">
        <xs:annotation>
          <xs:documentation>Little Paxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE052">
        <xs:annotation>
          <xs:documentation>Morborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE053">
        <xs:annotation>
          <xs:documentation>Offord Cluny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE054">
        <xs:annotation>
          <xs:documentation>Offord Darcy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE055">
        <xs:annotation>
          <xs:documentation>Old Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE056">
        <xs:annotation>
          <xs:documentation>Old Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE057">
        <xs:annotation>
          <xs:documentation>Perry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE058">
        <xs:annotation>
          <xs:documentation>Pidley cum Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE059">
        <xs:annotation>
          <xs:documentation>Ramsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE060">
        <xs:annotation>
          <xs:documentation>Saint Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE061">
        <xs:annotation>
          <xs:documentation>St. Neots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE062">
        <xs:annotation>
          <xs:documentation>St. Neots Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE063">
        <xs:annotation>
          <xs:documentation>Sawtry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE064">
        <xs:annotation>
          <xs:documentation>Sibson-cum-Stibbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE065">
        <xs:annotation>
          <xs:documentation>Somersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE066">
        <xs:annotation>
          <xs:documentation>Southoe and Midloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE067">
        <xs:annotation>
          <xs:documentation>Spaldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE068">
        <xs:annotation>
          <xs:documentation>Steeple Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE069">
        <xs:annotation>
          <xs:documentation>Stilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE070">
        <xs:annotation>
          <xs:documentation>Stow Longa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE071">
        <xs:annotation>
          <xs:documentation>Tetworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE072">
        <xs:annotation>
          <xs:documentation>The Stukeleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE073">
        <xs:annotation>
          <xs:documentation>Tilbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE074">
        <xs:annotation>
          <xs:documentation>Toseland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE075">
        <xs:annotation>
          <xs:documentation>Upton and Coppingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE076">
        <xs:annotation>
          <xs:documentation>Upwood and the Raveleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE077">
        <xs:annotation>
          <xs:documentation>Warboys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE078">
        <xs:annotation>
          <xs:documentation>Waresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE079">
        <xs:annotation>
          <xs:documentation>Water Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE080">
        <xs:annotation>
          <xs:documentation>Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE081">
        <xs:annotation>
          <xs:documentation>Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE082">
        <xs:annotation>
          <xs:documentation>Woodhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE083">
        <xs:annotation>
          <xs:documentation>Wood Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE084">
        <xs:annotation>
          <xs:documentation>Yaxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE085">
        <xs:annotation>
          <xs:documentation>Yelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG001">
        <xs:annotation>
          <xs:documentation>Abington Pigotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG002">
        <xs:annotation>
          <xs:documentation>Arrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG003">
        <xs:annotation>
          <xs:documentation>Babraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG004">
        <xs:annotation>
          <xs:documentation>Balsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG005">
        <xs:annotation>
          <xs:documentation>Bar Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG006">
        <xs:annotation>
          <xs:documentation>Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG007">
        <xs:annotation>
          <xs:documentation>Bartlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG008">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG009">
        <xs:annotation>
          <xs:documentation>Bassingbourn cum Kneesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG010">
        <xs:annotation>
          <xs:documentation>Bourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG011">
        <xs:annotation>
          <xs:documentation>Boxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG012">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG013">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG014">
        <xs:annotation>
          <xs:documentation>Castle Camps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG015">
        <xs:annotation>
          <xs:documentation>Caxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG016">
        <xs:annotation>
          <xs:documentation>Childerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG017">
        <xs:annotation>
          <xs:documentation>Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG018">
        <xs:annotation>
          <xs:documentation>Conington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG019">
        <xs:annotation>
          <xs:documentation>Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG020">
        <xs:annotation>
          <xs:documentation>Cottenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG021">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG022">
        <xs:annotation>
          <xs:documentation>Croydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG023">
        <xs:annotation>
          <xs:documentation>Dry Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG024">
        <xs:annotation>
          <xs:documentation>Duxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG025">
        <xs:annotation>
          <xs:documentation>Elsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG026">
        <xs:annotation>
          <xs:documentation>Eltisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG027">
        <xs:annotation>
          <xs:documentation>Fen Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG028">
        <xs:annotation>
          <xs:documentation>Fen Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG029">
        <xs:annotation>
          <xs:documentation>Fowlmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG030">
        <xs:annotation>
          <xs:documentation>Foxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG031">
        <xs:annotation>
          <xs:documentation>Fulbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG032">
        <xs:annotation>
          <xs:documentation>Gamlingay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG033">
        <xs:annotation>
          <xs:documentation>Girton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG034">
        <xs:annotation>
          <xs:documentation>Grantchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG035">
        <xs:annotation>
          <xs:documentation>Graveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG036">
        <xs:annotation>
          <xs:documentation>Great Abington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG037">
        <xs:annotation>
          <xs:documentation>Great and Little Chishill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG038">
        <xs:annotation>
          <xs:documentation>Great Eversden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG039">
        <xs:annotation>
          <xs:documentation>Great Shelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG040">
        <xs:annotation>
          <xs:documentation>Great Wilbraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG041">
        <xs:annotation>
          <xs:documentation>Guilden Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG042">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG043">
        <xs:annotation>
          <xs:documentation>Harlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG044">
        <xs:annotation>
          <xs:documentation>Harston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG045">
        <xs:annotation>
          <xs:documentation>Haslingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG046">
        <xs:annotation>
          <xs:documentation>Hatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG047">
        <xs:annotation>
          <xs:documentation>Hauxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG048">
        <xs:annotation>
          <xs:documentation>Heydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG049">
        <xs:annotation>
          <xs:documentation>Hildersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG050">
        <xs:annotation>
          <xs:documentation>Hinxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG051">
        <xs:annotation>
          <xs:documentation>Histon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG052">
        <xs:annotation>
          <xs:documentation>Horningsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG053">
        <xs:annotation>
          <xs:documentation>Horseheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG054">
        <xs:annotation>
          <xs:documentation>Ickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG055">
        <xs:annotation>
          <xs:documentation>Impington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG056">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG057">
        <xs:annotation>
          <xs:documentation>Knapwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG058">
        <xs:annotation>
          <xs:documentation>Landbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG059">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG060">
        <xs:annotation>
          <xs:documentation>Litlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG061">
        <xs:annotation>
          <xs:documentation>Little Abington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG062">
        <xs:annotation>
          <xs:documentation>Little Eversden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG063">
        <xs:annotation>
          <xs:documentation>Little Gransden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG064">
        <xs:annotation>
          <xs:documentation>Little Shelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG065">
        <xs:annotation>
          <xs:documentation>Little Wilbraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG066">
        <xs:annotation>
          <xs:documentation>Lolworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG067">
        <xs:annotation>
          <xs:documentation>Longstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG068">
        <xs:annotation>
          <xs:documentation>Longstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG069">
        <xs:annotation>
          <xs:documentation>Madingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG070">
        <xs:annotation>
          <xs:documentation>Melbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG071">
        <xs:annotation>
          <xs:documentation>Meldreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG072">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG073">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG074">
        <xs:annotation>
          <xs:documentation>Oakington and Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG075">
        <xs:annotation>
          <xs:documentation>Orwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG076">
        <xs:annotation>
          <xs:documentation>Over</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG077">
        <xs:annotation>
          <xs:documentation>Pampisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG078">
        <xs:annotation>
          <xs:documentation>Papworth Everard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG079">
        <xs:annotation>
          <xs:documentation>Papworth St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG080">
        <xs:annotation>
          <xs:documentation>Rampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG081">
        <xs:annotation>
          <xs:documentation>Sawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG082">
        <xs:annotation>
          <xs:documentation>Shepreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG083">
        <xs:annotation>
          <xs:documentation>Shingay cum Wendy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG084">
        <xs:annotation>
          <xs:documentation>Shudy Camps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG085">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG086">
        <xs:annotation>
          <xs:documentation>Steeple Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG087">
        <xs:annotation>
          <xs:documentation>Stow cum Quy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG088">
        <xs:annotation>
          <xs:documentation>Swavesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG089">
        <xs:annotation>
          <xs:documentation>Tadlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG090">
        <xs:annotation>
          <xs:documentation>Teversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG091">
        <xs:annotation>
          <xs:documentation>Thriplow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG092">
        <xs:annotation>
          <xs:documentation>Toft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG093">
        <xs:annotation>
          <xs:documentation>Waterbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG094">
        <xs:annotation>
          <xs:documentation>Weston Colville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG095">
        <xs:annotation>
          <xs:documentation>West Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG096">
        <xs:annotation>
          <xs:documentation>West Wratting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG097">
        <xs:annotation>
          <xs:documentation>Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG098">
        <xs:annotation>
          <xs:documentation>Whittlesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG099">
        <xs:annotation>
          <xs:documentation>Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG100">
        <xs:annotation>
          <xs:documentation>Wimpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG101">
        <xs:annotation>
          <xs:documentation>Cambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB001">
        <xs:annotation>
          <xs:documentation>Agden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB002">
        <xs:annotation>
          <xs:documentation>Aldersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB003">
        <xs:annotation>
          <xs:documentation>Aldford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB004">
        <xs:annotation>
          <xs:documentation>Ashton Hayes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB005">
        <xs:annotation>
          <xs:documentation>Bache</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB006">
        <xs:annotation>
          <xs:documentation>Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB007">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB008">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB009">
        <xs:annotation>
          <xs:documentation>Beeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB010">
        <xs:annotation>
          <xs:documentation>Bickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB011">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB012">
        <xs:annotation>
          <xs:documentation>Bridge Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB013">
        <xs:annotation>
          <xs:documentation>Broxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB014">
        <xs:annotation>
          <xs:documentation>Bruen Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB015">
        <xs:annotation>
          <xs:documentation>Buerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB016">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB017">
        <xs:annotation>
          <xs:documentation>Burwardsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB018">
        <xs:annotation>
          <xs:documentation>Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB019">
        <xs:annotation>
          <xs:documentation>Capenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB020">
        <xs:annotation>
          <xs:documentation>Carden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB021">
        <xs:annotation>
          <xs:documentation>Caughall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB022">
        <xs:annotation>
          <xs:documentation>Chester Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB023">
        <xs:annotation>
          <xs:documentation>Chidlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB024">
        <xs:annotation>
          <xs:documentation>Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB025">
        <xs:annotation>
          <xs:documentation>Chorlton-by-Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB026">
        <xs:annotation>
          <xs:documentation>Chowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB027">
        <xs:annotation>
          <xs:documentation>Christleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB028">
        <xs:annotation>
          <xs:documentation>Church Shocklach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB029">
        <xs:annotation>
          <xs:documentation>Churton by Aldford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB030">
        <xs:annotation>
          <xs:documentation>Churton by Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB031">
        <xs:annotation>
          <xs:documentation>Churton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB032">
        <xs:annotation>
          <xs:documentation>Claverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB033">
        <xs:annotation>
          <xs:documentation>Clotton Hoofield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB034">
        <xs:annotation>
          <xs:documentation>Clutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB035">
        <xs:annotation>
          <xs:documentation>Coddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB036">
        <xs:annotation>
          <xs:documentation>Cotton Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB037">
        <xs:annotation>
          <xs:documentation>Cotton Edmunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB038">
        <xs:annotation>
          <xs:documentation>Crewe by Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB039">
        <xs:annotation>
          <xs:documentation>Croughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB040">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB041">
        <xs:annotation>
          <xs:documentation>Dodleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB042">
        <xs:annotation>
          <xs:documentation>Duckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB043">
        <xs:annotation>
          <xs:documentation>Duddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB044">
        <xs:annotation>
          <xs:documentation>Dunham-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB045">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB046">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB047">
        <xs:annotation>
          <xs:documentation>Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB048">
        <xs:annotation>
          <xs:documentation>Edgerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB049">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB050">
        <xs:annotation>
          <xs:documentation>Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB051">
        <xs:annotation>
          <xs:documentation>Foulk Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB052">
        <xs:annotation>
          <xs:documentation>Golborne Bellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB053">
        <xs:annotation>
          <xs:documentation>Golborne David</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB054">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB055">
        <xs:annotation>
          <xs:documentation>Great Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB056">
        <xs:annotation>
          <xs:documentation>Guilden Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB057">
        <xs:annotation>
          <xs:documentation>Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB058">
        <xs:annotation>
          <xs:documentation>Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB059">
        <xs:annotation>
          <xs:documentation>Hapsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB060">
        <xs:annotation>
          <xs:documentation>Harthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB061">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB062">
        <xs:annotation>
          <xs:documentation>Hockenhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB063">
        <xs:annotation>
          <xs:documentation>Hoole Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB064">
        <xs:annotation>
          <xs:documentation>Horton-by-Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB065">
        <xs:annotation>
          <xs:documentation>Horton-cum-Peel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB066">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB067">
        <xs:annotation>
          <xs:documentation>Huxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB068">
        <xs:annotation>
          <xs:documentation>Iddinshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB069">
        <xs:annotation>
          <xs:documentation>Kelsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB070">
        <xs:annotation>
          <xs:documentation>Kings Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB071">
        <xs:annotation>
          <xs:documentation>Larkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB072">
        <xs:annotation>
          <xs:documentation>Lea-by-Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB073">
        <xs:annotation>
          <xs:documentation>Lea Newbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB074">
        <xs:annotation>
          <xs:documentation>Ledsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB075">
        <xs:annotation>
          <xs:documentation>Little Stanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB076">
        <xs:annotation>
          <xs:documentation>Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB077">
        <xs:annotation>
          <xs:documentation>Lower Kinnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB078">
        <xs:annotation>
          <xs:documentation>Macefen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB079">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB080">
        <xs:annotation>
          <xs:documentation>Marlston-cum-Lache</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB081">
        <xs:annotation>
          <xs:documentation>Mickle Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB082">
        <xs:annotation>
          <xs:documentation>Mollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB083">
        <xs:annotation>
          <xs:documentation>Moston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB084">
        <xs:annotation>
          <xs:documentation>Mouldsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB085">
        <xs:annotation>
          <xs:documentation>Newton by Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB086">
        <xs:annotation>
          <xs:documentation>Newton-by-Tattenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB087">
        <xs:annotation>
          <xs:documentation>Oldcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB088">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB089">
        <xs:annotation>
          <xs:documentation>Picton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB090">
        <xs:annotation>
          <xs:documentation>Poulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB091">
        <xs:annotation>
          <xs:documentation>Prior's Heys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB092">
        <xs:annotation>
          <xs:documentation>Puddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB093">
        <xs:annotation>
          <xs:documentation>Pulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB094">
        <xs:annotation>
          <xs:documentation>Rowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB095">
        <xs:annotation>
          <xs:documentation>Saighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB096">
        <xs:annotation>
          <xs:documentation>Saughall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB097">
        <xs:annotation>
          <xs:documentation>Shocklach Oviatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB098">
        <xs:annotation>
          <xs:documentation>Shotwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB099">
        <xs:annotation>
          <xs:documentation>Shotwick Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB100">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB101">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB102">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB103">
        <xs:annotation>
          <xs:documentation>Tarvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB104">
        <xs:annotation>
          <xs:documentation>Tattenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB105">
        <xs:annotation>
          <xs:documentation>Threapwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB106">
        <xs:annotation>
          <xs:documentation>Thornton-le-Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB107">
        <xs:annotation>
          <xs:documentation>Tilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB108">
        <xs:annotation>
          <xs:documentation>Tilstone Fearnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB109">
        <xs:annotation>
          <xs:documentation>Tiverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB110">
        <xs:annotation>
          <xs:documentation>Tushingham cum Grindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB111">
        <xs:annotation>
          <xs:documentation>Upton-by-Chester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB112">
        <xs:annotation>
          <xs:documentation>Waverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB113">
        <xs:annotation>
          <xs:documentation>Wervin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB114">
        <xs:annotation>
          <xs:documentation>Wigland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB115">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB116">
        <xs:annotation>
          <xs:documentation>Wimbolds Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB117">
        <xs:annotation>
          <xs:documentation>Woodbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB118">
        <xs:annotation>
          <xs:documentation>Wychough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC001">
        <xs:annotation>
          <xs:documentation>Alsager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC002">
        <xs:annotation>
          <xs:documentation>Arclid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC003">
        <xs:annotation>
          <xs:documentation>Betchton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC004">
        <xs:annotation>
          <xs:documentation>Bradwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC005">
        <xs:annotation>
          <xs:documentation>Brereton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC006">
        <xs:annotation>
          <xs:documentation>Church Lawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC007">
        <xs:annotation>
          <xs:documentation>Congleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC008">
        <xs:annotation>
          <xs:documentation>Cranage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC009">
        <xs:annotation>
          <xs:documentation>Goostrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC010">
        <xs:annotation>
          <xs:documentation>Hassall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC011">
        <xs:annotation>
          <xs:documentation>Holmes Chapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC012">
        <xs:annotation>
          <xs:documentation>Hulme Walfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC013">
        <xs:annotation>
          <xs:documentation>Middlewich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC014">
        <xs:annotation>
          <xs:documentation>Moreton cum Alcumlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC015">
        <xs:annotation>
          <xs:documentation>Moston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC016">
        <xs:annotation>
          <xs:documentation>Newbold Astbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC017">
        <xs:annotation>
          <xs:documentation>Odd Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC018">
        <xs:annotation>
          <xs:documentation>Sandbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC019">
        <xs:annotation>
          <xs:documentation>Smallwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC020">
        <xs:annotation>
          <xs:documentation>Somerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC021">
        <xs:annotation>
          <xs:documentation>Somerford Booths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC022">
        <xs:annotation>
          <xs:documentation>Swettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC023">
        <xs:annotation>
          <xs:documentation>Twemlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD001">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD002">
        <xs:annotation>
          <xs:documentation>Alpraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD003">
        <xs:annotation>
          <xs:documentation>Aston juxta Mondrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD004">
        <xs:annotation>
          <xs:documentation>Audlem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD005">
        <xs:annotation>
          <xs:documentation>Austerson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD006">
        <xs:annotation>
          <xs:documentation>Baddiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD007">
        <xs:annotation>
          <xs:documentation>Baddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD008">
        <xs:annotation>
          <xs:documentation>Barthomley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD009">
        <xs:annotation>
          <xs:documentation>Basford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD010">
        <xs:annotation>
          <xs:documentation>Batherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD011">
        <xs:annotation>
          <xs:documentation>Bickerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD012">
        <xs:annotation>
          <xs:documentation>Blakenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD013">
        <xs:annotation>
          <xs:documentation>Bridgemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD014">
        <xs:annotation>
          <xs:documentation>Brindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD015">
        <xs:annotation>
          <xs:documentation>Broomhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD016">
        <xs:annotation>
          <xs:documentation>Buerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD017">
        <xs:annotation>
          <xs:documentation>Bulkeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD018">
        <xs:annotation>
          <xs:documentation>Bunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD019">
        <xs:annotation>
          <xs:documentation>Burland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD020">
        <xs:annotation>
          <xs:documentation>Calveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD021">
        <xs:annotation>
          <xs:documentation>Checkley cum Wrinehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD022">
        <xs:annotation>
          <xs:documentation>Cholmondeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD023">
        <xs:annotation>
          <xs:documentation>Cholmondeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD024">
        <xs:annotation>
          <xs:documentation>Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD025">
        <xs:annotation>
          <xs:documentation>Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD026">
        <xs:annotation>
          <xs:documentation>Church Minshull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD027">
        <xs:annotation>
          <xs:documentation>Coole Pilate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD028">
        <xs:annotation>
          <xs:documentation>Crewe Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD029">
        <xs:annotation>
          <xs:documentation>Dodcott cum Wilkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD030">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD031">
        <xs:annotation>
          <xs:documentation>Edleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD032">
        <xs:annotation>
          <xs:documentation>Egerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD033">
        <xs:annotation>
          <xs:documentation>Faddiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD034">
        <xs:annotation>
          <xs:documentation>Hankelow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD035">
        <xs:annotation>
          <xs:documentation>Haslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD036">
        <xs:annotation>
          <xs:documentation>Hatherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD037">
        <xs:annotation>
          <xs:documentation>Haughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD038">
        <xs:annotation>
          <xs:documentation>Henhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD039">
        <xs:annotation>
          <xs:documentation>Hough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD040">
        <xs:annotation>
          <xs:documentation>Hunsterson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD041">
        <xs:annotation>
          <xs:documentation>Hurleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD042">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD043">
        <xs:annotation>
          <xs:documentation>Leighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD044">
        <xs:annotation>
          <xs:documentation>Marbury cum Quoisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD045">
        <xs:annotation>
          <xs:documentation>Minshull Vernon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD046">
        <xs:annotation>
          <xs:documentation>Nantwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD047">
        <xs:annotation>
          <xs:documentation>Newhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD048">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD049">
        <xs:annotation>
          <xs:documentation>Peckforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD050">
        <xs:annotation>
          <xs:documentation>Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD051">
        <xs:annotation>
          <xs:documentation>Ridley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD052">
        <xs:annotation>
          <xs:documentation>Rope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD053">
        <xs:annotation>
          <xs:documentation>Shavington cum Gresty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD054">
        <xs:annotation>
          <xs:documentation>Sound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD055">
        <xs:annotation>
          <xs:documentation>Spurstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD056">
        <xs:annotation>
          <xs:documentation>Stapeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD057">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD058">
        <xs:annotation>
          <xs:documentation>Walgherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD059">
        <xs:annotation>
          <xs:documentation>Wardle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD060">
        <xs:annotation>
          <xs:documentation>Warmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD061">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD062">
        <xs:annotation>
          <xs:documentation>Wettenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD063">
        <xs:annotation>
          <xs:documentation>Willaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD064">
        <xs:annotation>
          <xs:documentation>Wirswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD065">
        <xs:annotation>
          <xs:documentation>Wistaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD066">
        <xs:annotation>
          <xs:documentation>Woolstanwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD067">
        <xs:annotation>
          <xs:documentation>Worleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD068">
        <xs:annotation>
          <xs:documentation>Wrenbury cum Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD069">
        <xs:annotation>
          <xs:documentation>Wybunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UE001">
        <xs:annotation>
          <xs:documentation>Ince</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG001">
        <xs:annotation>
          <xs:documentation>Adlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG002">
        <xs:annotation>
          <xs:documentation>Agden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG003">
        <xs:annotation>
          <xs:documentation>Alderley Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG004">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG005">
        <xs:annotation>
          <xs:documentation>Aston by Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG006">
        <xs:annotation>
          <xs:documentation>Bexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG007">
        <xs:annotation>
          <xs:documentation>Bollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG008">
        <xs:annotation>
          <xs:documentation>Bosley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG009">
        <xs:annotation>
          <xs:documentation>Chelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG010">
        <xs:annotation>
          <xs:documentation>Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG011">
        <xs:annotation>
          <xs:documentation>Disley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG012">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG013">
        <xs:annotation>
          <xs:documentation>Gawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG014">
        <xs:annotation>
          <xs:documentation>Great Warford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG015">
        <xs:annotation>
          <xs:documentation>Henbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG016">
        <xs:annotation>
          <xs:documentation>High Legh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG017">
        <xs:annotation>
          <xs:documentation>Higher Hurdsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG018">
        <xs:annotation>
          <xs:documentation>Kettleshulme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG019">
        <xs:annotation>
          <xs:documentation>Knutsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG020">
        <xs:annotation>
          <xs:documentation>Little Bollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG021">
        <xs:annotation>
          <xs:documentation>Little Warford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG022">
        <xs:annotation>
          <xs:documentation>Lower Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG023">
        <xs:annotation>
          <xs:documentation>Lyme Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG024">
        <xs:annotation>
          <xs:documentation>Macclesfield Forest and Wildboarclough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG025">
        <xs:annotation>
          <xs:documentation>Marthall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG026">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG027">
        <xs:annotation>
          <xs:documentation>Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG028">
        <xs:annotation>
          <xs:documentation>Millington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG029">
        <xs:annotation>
          <xs:documentation>Mobberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG030">
        <xs:annotation>
          <xs:documentation>Mottram St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG031">
        <xs:annotation>
          <xs:documentation>Nether Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG032">
        <xs:annotation>
          <xs:documentation>North Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG033">
        <xs:annotation>
          <xs:documentation>Ollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG034">
        <xs:annotation>
          <xs:documentation>Over Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG035">
        <xs:annotation>
          <xs:documentation>Peover Inferior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG036">
        <xs:annotation>
          <xs:documentation>Peover Superior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG037">
        <xs:annotation>
          <xs:documentation>Pickmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG038">
        <xs:annotation>
          <xs:documentation>Plumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG039">
        <xs:annotation>
          <xs:documentation>Pott Shrigley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG040">
        <xs:annotation>
          <xs:documentation>Poynton-with-Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG041">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG042">
        <xs:annotation>
          <xs:documentation>Rainow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG043">
        <xs:annotation>
          <xs:documentation>Rostherne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG044">
        <xs:annotation>
          <xs:documentation>Siddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG045">
        <xs:annotation>
          <xs:documentation>Snelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG046">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG047">
        <xs:annotation>
          <xs:documentation>Tabley Inferior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG048">
        <xs:annotation>
          <xs:documentation>Tabley Superior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG049">
        <xs:annotation>
          <xs:documentation>Tatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG050">
        <xs:annotation>
          <xs:documentation>Toft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG051">
        <xs:annotation>
          <xs:documentation>Wincle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH001">
        <xs:annotation>
          <xs:documentation>Acton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH002">
        <xs:annotation>
          <xs:documentation>Allostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH003">
        <xs:annotation>
          <xs:documentation>Alvanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH004">
        <xs:annotation>
          <xs:documentation>Anderton with Marbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH005">
        <xs:annotation>
          <xs:documentation>Antrobus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH006">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH007">
        <xs:annotation>
          <xs:documentation>Barnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH008">
        <xs:annotation>
          <xs:documentation>Bostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH009">
        <xs:annotation>
          <xs:documentation>Byley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH010">
        <xs:annotation>
          <xs:documentation>Comberbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH011">
        <xs:annotation>
          <xs:documentation>Crowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH012">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH013">
        <xs:annotation>
          <xs:documentation>Darnhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH014">
        <xs:annotation>
          <xs:documentation>Davenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH015">
        <xs:annotation>
          <xs:documentation>Delamere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH016">
        <xs:annotation>
          <xs:documentation>Dutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH017">
        <xs:annotation>
          <xs:documentation>Frodsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH018">
        <xs:annotation>
          <xs:documentation>Great Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH019">
        <xs:annotation>
          <xs:documentation>Hartford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH020">
        <xs:annotation>
          <xs:documentation>Helsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH021">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH022">
        <xs:annotation>
          <xs:documentation>Lach Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH023">
        <xs:annotation>
          <xs:documentation>Little Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH024">
        <xs:annotation>
          <xs:documentation>Little Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH025">
        <xs:annotation>
          <xs:documentation>Lostock Gralam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH026">
        <xs:annotation>
          <xs:documentation>Manley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH027">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH028">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH029">
        <xs:annotation>
          <xs:documentation>Nether Peover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH030">
        <xs:annotation>
          <xs:documentation>Norley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH031">
        <xs:annotation>
          <xs:documentation>Northwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH032">
        <xs:annotation>
          <xs:documentation>Oakmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH033">
        <xs:annotation>
          <xs:documentation>Rudheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH034">
        <xs:annotation>
          <xs:documentation>Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH035">
        <xs:annotation>
          <xs:documentation>Sproston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH036">
        <xs:annotation>
          <xs:documentation>Stanthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH037">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH038">
        <xs:annotation>
          <xs:documentation>Tarporley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH039">
        <xs:annotation>
          <xs:documentation>Utkinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH040">
        <xs:annotation>
          <xs:documentation>Weaverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH041">
        <xs:annotation>
          <xs:documentation>Whitegate and Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH042">
        <xs:annotation>
          <xs:documentation>Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH043">
        <xs:annotation>
          <xs:documentation>Wimboldsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH044">
        <xs:annotation>
          <xs:documentation>Wincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH045">
        <xs:annotation>
          <xs:documentation>Winsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB001">
        <xs:annotation>
          <xs:documentation>Antony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB002">
        <xs:annotation>
          <xs:documentation>Boconnoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB003">
        <xs:annotation>
          <xs:documentation>Botusfleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB004">
        <xs:annotation>
          <xs:documentation>Broadoak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB005">
        <xs:annotation>
          <xs:documentation>Callington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB006">
        <xs:annotation>
          <xs:documentation>Calstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB007">
        <xs:annotation>
          <xs:documentation>Dobwalls and Trewidland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB008">
        <xs:annotation>
          <xs:documentation>Duloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB009">
        <xs:annotation>
          <xs:documentation>Landrake with St. Erney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB010">
        <xs:annotation>
          <xs:documentation>Landulph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB011">
        <xs:annotation>
          <xs:documentation>Lanreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB012">
        <xs:annotation>
          <xs:documentation>Lansallos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB013">
        <xs:annotation>
          <xs:documentation>Lanteglos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB014">
        <xs:annotation>
          <xs:documentation>Linkinhorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB015">
        <xs:annotation>
          <xs:documentation>Liskeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB016">
        <xs:annotation>
          <xs:documentation>Looe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB017">
        <xs:annotation>
          <xs:documentation>Maker-with-Rame</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB018">
        <xs:annotation>
          <xs:documentation>Menheniot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB019">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB020">
        <xs:annotation>
          <xs:documentation>Morval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB021">
        <xs:annotation>
          <xs:documentation>Pelynt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB022">
        <xs:annotation>
          <xs:documentation>Pillaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB023">
        <xs:annotation>
          <xs:documentation>Quethiock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB024">
        <xs:annotation>
          <xs:documentation>St. Cleer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB025">
        <xs:annotation>
          <xs:documentation>St. Dominick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB027">
        <xs:annotation>
          <xs:documentation>St. Ive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB028">
        <xs:annotation>
          <xs:documentation>St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB029">
        <xs:annotation>
          <xs:documentation>St. Keyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB030">
        <xs:annotation>
          <xs:documentation>St. Martin-by-Looe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB031">
        <xs:annotation>
          <xs:documentation>St. Mellion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB032">
        <xs:annotation>
          <xs:documentation>St. Neot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB033">
        <xs:annotation>
          <xs:documentation>St. Pinnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB034">
        <xs:annotation>
          <xs:documentation>St. Veep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB035">
        <xs:annotation>
          <xs:documentation>St. Winnow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB036">
        <xs:annotation>
          <xs:documentation>Saltash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB037">
        <xs:annotation>
          <xs:documentation>Sheviock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB038">
        <xs:annotation>
          <xs:documentation>South Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB039">
        <xs:annotation>
          <xs:documentation>Torpoint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB040">
        <xs:annotation>
          <xs:documentation>Warleggan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB041">
        <xs:annotation>
          <xs:documentation>St. Germans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB042">
        <xs:annotation>
          <xs:documentation>Deviock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC001">
        <xs:annotation>
          <xs:documentation>Chacewater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC002">
        <xs:annotation>
          <xs:documentation>Cubert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC003">
        <xs:annotation>
          <xs:documentation>Cuby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC004">
        <xs:annotation>
          <xs:documentation>Falmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC005">
        <xs:annotation>
          <xs:documentation>Feock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC006">
        <xs:annotation>
          <xs:documentation>Gerrans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC007">
        <xs:annotation>
          <xs:documentation>Gwennap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC008">
        <xs:annotation>
          <xs:documentation>Kea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC009">
        <xs:annotation>
          <xs:documentation>Kenwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC010">
        <xs:annotation>
          <xs:documentation>Ladock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC011">
        <xs:annotation>
          <xs:documentation>Mylor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC012">
        <xs:annotation>
          <xs:documentation>Penryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC013">
        <xs:annotation>
          <xs:documentation>Perranarworthal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC014">
        <xs:annotation>
          <xs:documentation>Perranzabuloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC015">
        <xs:annotation>
          <xs:documentation>Philleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC016">
        <xs:annotation>
          <xs:documentation>Probus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC017">
        <xs:annotation>
          <xs:documentation>Ruanlanihorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC018">
        <xs:annotation>
          <xs:documentation>St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC019">
        <xs:annotation>
          <xs:documentation>St. Allen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC020">
        <xs:annotation>
          <xs:documentation>St. Clement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC021">
        <xs:annotation>
          <xs:documentation>St. Erme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC022">
        <xs:annotation>
          <xs:documentation>St. Just-in-Roseland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC023">
        <xs:annotation>
          <xs:documentation>St. Michael Penkevil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC024">
        <xs:annotation>
          <xs:documentation>St. Newlyn East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC025">
        <xs:annotation>
          <xs:documentation>Tregoney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC026">
        <xs:annotation>
          <xs:documentation>Truro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC027">
        <xs:annotation>
          <xs:documentation>Veryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD001">
        <xs:annotation>
          <xs:documentation>Breage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD002">
        <xs:annotation>
          <xs:documentation>Budock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD003">
        <xs:annotation>
          <xs:documentation>Camborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD004">
        <xs:annotation>
          <xs:documentation>Carharrack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD005">
        <xs:annotation>
          <xs:documentation>Carn Brea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD006">
        <xs:annotation>
          <xs:documentation>Constantine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD007">
        <xs:annotation>
          <xs:documentation>Crowan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD008">
        <xs:annotation>
          <xs:documentation>Cury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD009">
        <xs:annotation>
          <xs:documentation>Germoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD010">
        <xs:annotation>
          <xs:documentation>Grade-Ruan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD011">
        <xs:annotation>
          <xs:documentation>Gunwalloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD012">
        <xs:annotation>
          <xs:documentation>Gweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD013">
        <xs:annotation>
          <xs:documentation>Helston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD014">
        <xs:annotation>
          <xs:documentation>Illogan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD015">
        <xs:annotation>
          <xs:documentation>Landewednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD016">
        <xs:annotation>
          <xs:documentation>Lanner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD017">
        <xs:annotation>
          <xs:documentation>Mabe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD018">
        <xs:annotation>
          <xs:documentation>Manaccan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD019">
        <xs:annotation>
          <xs:documentation>Mawgan-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD020">
        <xs:annotation>
          <xs:documentation>Mawnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD021">
        <xs:annotation>
          <xs:documentation>Mullion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD022">
        <xs:annotation>
          <xs:documentation>Porthleven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD023">
        <xs:annotation>
          <xs:documentation>Portreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD024">
        <xs:annotation>
          <xs:documentation>Redruth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD025">
        <xs:annotation>
          <xs:documentation>St. Anthony-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD026">
        <xs:annotation>
          <xs:documentation>St. Day</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD027">
        <xs:annotation>
          <xs:documentation>St. Gluvias</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD028">
        <xs:annotation>
          <xs:documentation>St. Keverne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD029">
        <xs:annotation>
          <xs:documentation>St. Martin-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD030">
        <xs:annotation>
          <xs:documentation>Sithney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD031">
        <xs:annotation>
          <xs:documentation>Stithians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD032">
        <xs:annotation>
          <xs:documentation>Wendron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE001">
        <xs:annotation>
          <xs:documentation>Advent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE002">
        <xs:annotation>
          <xs:documentation>Altarnun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE003">
        <xs:annotation>
          <xs:documentation>Blisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE004">
        <xs:annotation>
          <xs:documentation>Bodmin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE005">
        <xs:annotation>
          <xs:documentation>Boyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE006">
        <xs:annotation>
          <xs:documentation>Bude-Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE007">
        <xs:annotation>
          <xs:documentation>Camelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE008">
        <xs:annotation>
          <xs:documentation>Cardinham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE009">
        <xs:annotation>
          <xs:documentation>Davidstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE010">
        <xs:annotation>
          <xs:documentation>Egloshayle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE011">
        <xs:annotation>
          <xs:documentation>Egloskerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE012">
        <xs:annotation>
          <xs:documentation>Forrabury and Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE013">
        <xs:annotation>
          <xs:documentation>Helland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE014">
        <xs:annotation>
          <xs:documentation>Jacobstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE015">
        <xs:annotation>
          <xs:documentation>Kilkhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE016">
        <xs:annotation>
          <xs:documentation>Laneast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE017">
        <xs:annotation>
          <xs:documentation>Lanhydrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE018">
        <xs:annotation>
          <xs:documentation>Lanivet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE019">
        <xs:annotation>
          <xs:documentation>Launcells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE020">
        <xs:annotation>
          <xs:documentation>Launceston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE021">
        <xs:annotation>
          <xs:documentation>Lawhitton Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE022">
        <xs:annotation>
          <xs:documentation>Lesnewth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE023">
        <xs:annotation>
          <xs:documentation>Lewannick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE024">
        <xs:annotation>
          <xs:documentation>Lezant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE025">
        <xs:annotation>
          <xs:documentation>Marhamchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE026">
        <xs:annotation>
          <xs:documentation>Michaelstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE027">
        <xs:annotation>
          <xs:documentation>Morwenstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE028">
        <xs:annotation>
          <xs:documentation>North Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE029">
        <xs:annotation>
          <xs:documentation>North Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE030">
        <xs:annotation>
          <xs:documentation>North Tamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE031">
        <xs:annotation>
          <xs:documentation>Otterham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE032">
        <xs:annotation>
          <xs:documentation>Padstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE033">
        <xs:annotation>
          <xs:documentation>Poundstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE034">
        <xs:annotation>
          <xs:documentation>St. Breock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE035">
        <xs:annotation>
          <xs:documentation>St. Breward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE036">
        <xs:annotation>
          <xs:documentation>St. Clether</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE037">
        <xs:annotation>
          <xs:documentation>St. Endellion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE038">
        <xs:annotation>
          <xs:documentation>St. Ervan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE039">
        <xs:annotation>
          <xs:documentation>St. Eval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE040">
        <xs:annotation>
          <xs:documentation>St. Gennys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE041">
        <xs:annotation>
          <xs:documentation>St. Issey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE042">
        <xs:annotation>
          <xs:documentation>St. Juliot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE043">
        <xs:annotation>
          <xs:documentation>St. Kew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE044">
        <xs:annotation>
          <xs:documentation>St. Mabyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE045">
        <xs:annotation>
          <xs:documentation>St. Merryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE046">
        <xs:annotation>
          <xs:documentation>St. Minver Highlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE047">
        <xs:annotation>
          <xs:documentation>St. Minver Lowlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE048">
        <xs:annotation>
          <xs:documentation>St. Stephens by Launceston Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE049">
        <xs:annotation>
          <xs:documentation>St. Teath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE050">
        <xs:annotation>
          <xs:documentation>St. Thomas the Apostle Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE051">
        <xs:annotation>
          <xs:documentation>St. Tudy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE052">
        <xs:annotation>
          <xs:documentation>South Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE053">
        <xs:annotation>
          <xs:documentation>Stokeclimsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE054">
        <xs:annotation>
          <xs:documentation>Tintagel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE055">
        <xs:annotation>
          <xs:documentation>Tremaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE056">
        <xs:annotation>
          <xs:documentation>Treneglos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE057">
        <xs:annotation>
          <xs:documentation>Tresmeer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE058">
        <xs:annotation>
          <xs:documentation>Trevalga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE059">
        <xs:annotation>
          <xs:documentation>Trewen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE060">
        <xs:annotation>
          <xs:documentation>Wadebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE061">
        <xs:annotation>
          <xs:documentation>Warbstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE062">
        <xs:annotation>
          <xs:documentation>Week St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE063">
        <xs:annotation>
          <xs:documentation>Werrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE064">
        <xs:annotation>
          <xs:documentation>Whitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE065">
        <xs:annotation>
          <xs:documentation>Withiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF001">
        <xs:annotation>
          <xs:documentation>Gwinear-Gwithian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF002">
        <xs:annotation>
          <xs:documentation>Hayle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF003">
        <xs:annotation>
          <xs:documentation>Ludgvan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF004">
        <xs:annotation>
          <xs:documentation>Madron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF005">
        <xs:annotation>
          <xs:documentation>Marazion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF006">
        <xs:annotation>
          <xs:documentation>Morvah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF007">
        <xs:annotation>
          <xs:documentation>Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF008">
        <xs:annotation>
          <xs:documentation>Penzance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF009">
        <xs:annotation>
          <xs:documentation>Perranuthnoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF010">
        <xs:annotation>
          <xs:documentation>St. Buryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF011">
        <xs:annotation>
          <xs:documentation>St. Erth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF012">
        <xs:annotation>
          <xs:documentation>St. Hilary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF013">
        <xs:annotation>
          <xs:documentation>St. Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF014">
        <xs:annotation>
          <xs:documentation>St. Just</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF015">
        <xs:annotation>
          <xs:documentation>St. Levan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF016">
        <xs:annotation>
          <xs:documentation>St. Michael's Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF017">
        <xs:annotation>
          <xs:documentation>Sancreed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF018">
        <xs:annotation>
          <xs:documentation>Sennen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF019">
        <xs:annotation>
          <xs:documentation>Towednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF020">
        <xs:annotation>
          <xs:documentation>Zennor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG001">
        <xs:annotation>
          <xs:documentation>Colan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG002">
        <xs:annotation>
          <xs:documentation>Crantock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG003">
        <xs:annotation>
          <xs:documentation>Fowey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG004">
        <xs:annotation>
          <xs:documentation>Grampound with Creed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG005">
        <xs:annotation>
          <xs:documentation>Lanlivery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG006">
        <xs:annotation>
          <xs:documentation>Lostwithiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG007">
        <xs:annotation>
          <xs:documentation>Luxulyan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG008">
        <xs:annotation>
          <xs:documentation>Mawgan-in-Pydar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG009">
        <xs:annotation>
          <xs:documentation>Mevagissey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG010">
        <xs:annotation>
          <xs:documentation>Newquay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG011">
        <xs:annotation>
          <xs:documentation>Roche</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG012">
        <xs:annotation>
          <xs:documentation>St. Blaise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG013">
        <xs:annotation>
          <xs:documentation>St. Columb Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG014">
        <xs:annotation>
          <xs:documentation>St. Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG015">
        <xs:annotation>
          <xs:documentation>St. Enoder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG016">
        <xs:annotation>
          <xs:documentation>St. Ewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG017">
        <xs:annotation>
          <xs:documentation>St. Goran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG018">
        <xs:annotation>
          <xs:documentation>St. Mewan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG019">
        <xs:annotation>
          <xs:documentation>St. Michael Caerhays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG020">
        <xs:annotation>
          <xs:documentation>St. Sampson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG021">
        <xs:annotation>
          <xs:documentation>St. Stephen-in-Brannel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG022">
        <xs:annotation>
          <xs:documentation>St. Wenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG023">
        <xs:annotation>
          <xs:documentation>Treverbyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG024">
        <xs:annotation>
          <xs:documentation>Tywardreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH001">
        <xs:annotation>
          <xs:documentation>Bryher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH002">
        <xs:annotation>
          <xs:documentation>St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH003">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH004">
        <xs:annotation>
          <xs:documentation>St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH005">
        <xs:annotation>
          <xs:documentation>Tresco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB001">
        <xs:annotation>
          <xs:documentation>Above Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB002">
        <xs:annotation>
          <xs:documentation>Aikton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB003">
        <xs:annotation>
          <xs:documentation>Allhallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB004">
        <xs:annotation>
          <xs:documentation>Allonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB005">
        <xs:annotation>
          <xs:documentation>Aspatria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB006">
        <xs:annotation>
          <xs:documentation>Bassenthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB007">
        <xs:annotation>
          <xs:documentation>Bewaldeth and Snittlegarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB008">
        <xs:annotation>
          <xs:documentation>Blennerhasset and Torpenhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB009">
        <xs:annotation>
          <xs:documentation>Blindbothel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB010">
        <xs:annotation>
          <xs:documentation>Blindcrake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB011">
        <xs:annotation>
          <xs:documentation>Boltons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB012">
        <xs:annotation>
          <xs:documentation>Borrowdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB013">
        <xs:annotation>
          <xs:documentation>Bothel and Threapland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB014">
        <xs:annotation>
          <xs:documentation>Bowness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB015">
        <xs:annotation>
          <xs:documentation>Bridekirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB016">
        <xs:annotation>
          <xs:documentation>Brigham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB017">
        <xs:annotation>
          <xs:documentation>Bromfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB018">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB019">
        <xs:annotation>
          <xs:documentation>Broughton Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB020">
        <xs:annotation>
          <xs:documentation>Buttermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB021">
        <xs:annotation>
          <xs:documentation>Caldbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB022">
        <xs:annotation>
          <xs:documentation>Camerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB023">
        <xs:annotation>
          <xs:documentation>Cockermouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB024">
        <xs:annotation>
          <xs:documentation>Crosscanonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB025">
        <xs:annotation>
          <xs:documentation>Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB026">
        <xs:annotation>
          <xs:documentation>Dearham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB027">
        <xs:annotation>
          <xs:documentation>Dundraw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB028">
        <xs:annotation>
          <xs:documentation>Embleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB029">
        <xs:annotation>
          <xs:documentation>Gilcrux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB030">
        <xs:annotation>
          <xs:documentation>Great Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB031">
        <xs:annotation>
          <xs:documentation>Greysouthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB032">
        <xs:annotation>
          <xs:documentation>Hayton and Mealo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB033">
        <xs:annotation>
          <xs:documentation>Holme Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB034">
        <xs:annotation>
          <xs:documentation>Holme East Waver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB035">
        <xs:annotation>
          <xs:documentation>Holme Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB036">
        <xs:annotation>
          <xs:documentation>Holme St Cuthbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB037">
        <xs:annotation>
          <xs:documentation>Ireby and Uldale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB038">
        <xs:annotation>
          <xs:documentation>Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB039">
        <xs:annotation>
          <xs:documentation>Kirkbampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB040">
        <xs:annotation>
          <xs:documentation>Kirkbride</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB041">
        <xs:annotation>
          <xs:documentation>Little Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB042">
        <xs:annotation>
          <xs:documentation>Lorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB043">
        <xs:annotation>
          <xs:documentation>Loweswater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB044">
        <xs:annotation>
          <xs:documentation>Maryport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB045">
        <xs:annotation>
          <xs:documentation>Oughterside and Allerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB046">
        <xs:annotation>
          <xs:documentation>Papcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB047">
        <xs:annotation>
          <xs:documentation>Plumbland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB048">
        <xs:annotation>
          <xs:documentation>St John's Castlerigg and Wythburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB049">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB050">
        <xs:annotation>
          <xs:documentation>Sebergham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB051">
        <xs:annotation>
          <xs:documentation>Setmurthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB052">
        <xs:annotation>
          <xs:documentation>Silloth-on-Solway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB053">
        <xs:annotation>
          <xs:documentation>Thursby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB054">
        <xs:annotation>
          <xs:documentation>Underskiddaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB055">
        <xs:annotation>
          <xs:documentation>Waverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB056">
        <xs:annotation>
          <xs:documentation>Westnewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB057">
        <xs:annotation>
          <xs:documentation>Westward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB058">
        <xs:annotation>
          <xs:documentation>Wigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB059">
        <xs:annotation>
          <xs:documentation>Winscales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB060">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB061">
        <xs:annotation>
          <xs:documentation>Workington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB062">
        <xs:annotation>
          <xs:documentation>Wythop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB063">
        <xs:annotation>
          <xs:documentation>Lands common to Holme Abbey, Holme Low and Holme St Cuthbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC001">
        <xs:annotation>
          <xs:documentation>Askam and Ireleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC002">
        <xs:annotation>
          <xs:documentation>Dalton Town with Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC003">
        <xs:annotation>
          <xs:documentation>Lindal and Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD001">
        <xs:annotation>
          <xs:documentation>Arthuret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD002">
        <xs:annotation>
          <xs:documentation>Askerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD003">
        <xs:annotation>
          <xs:documentation>Beaumont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD004">
        <xs:annotation>
          <xs:documentation>Bewcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD005">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD006">
        <xs:annotation>
          <xs:documentation>Burgh by Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD007">
        <xs:annotation>
          <xs:documentation>Burtholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD008">
        <xs:annotation>
          <xs:documentation>Carlatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD009">
        <xs:annotation>
          <xs:documentation>Castle Carrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD010">
        <xs:annotation>
          <xs:documentation>Cummersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD011">
        <xs:annotation>
          <xs:documentation>Cumrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD012">
        <xs:annotation>
          <xs:documentation>Cumwhitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD013">
        <xs:annotation>
          <xs:documentation>Dalston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD014">
        <xs:annotation>
          <xs:documentation>Farlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD016">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD017">
        <xs:annotation>
          <xs:documentation>Hethersgill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD018">
        <xs:annotation>
          <xs:documentation>Irthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD019">
        <xs:annotation>
          <xs:documentation>Kingmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD020">
        <xs:annotation>
          <xs:documentation>Kingwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD021">
        <xs:annotation>
          <xs:documentation>Kirkandrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD022">
        <xs:annotation>
          <xs:documentation>Kirklinton Middle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD023">
        <xs:annotation>
          <xs:documentation>Midgeholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD024">
        <xs:annotation>
          <xs:documentation>Nether Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD025">
        <xs:annotation>
          <xs:documentation>Nicholforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD026">
        <xs:annotation>
          <xs:documentation>Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD027">
        <xs:annotation>
          <xs:documentation>Rockcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD028">
        <xs:annotation>
          <xs:documentation>St Cuthbert Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD029">
        <xs:annotation>
          <xs:documentation>Scaleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD030">
        <xs:annotation>
          <xs:documentation>Solport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD031">
        <xs:annotation>
          <xs:documentation>Stanwix Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD032">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD033">
        <xs:annotation>
          <xs:documentation>Upper Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD034">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD035">
        <xs:annotation>
          <xs:documentation>Waterhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD036">
        <xs:annotation>
          <xs:documentation>Westlinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD037">
        <xs:annotation>
          <xs:documentation>Wetheral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE001">
        <xs:annotation>
          <xs:documentation>Arlecdon and Frizington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE002">
        <xs:annotation>
          <xs:documentation>Bootle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE003">
        <xs:annotation>
          <xs:documentation>Cleator Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE004">
        <xs:annotation>
          <xs:documentation>Distington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE005">
        <xs:annotation>
          <xs:documentation>Drigg and Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE006">
        <xs:annotation>
          <xs:documentation>Egremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE007">
        <xs:annotation>
          <xs:documentation>Ennerdale and Kinniside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE008">
        <xs:annotation>
          <xs:documentation>Eskdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE009">
        <xs:annotation>
          <xs:documentation>Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE010">
        <xs:annotation>
          <xs:documentation>Haile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE011">
        <xs:annotation>
          <xs:documentation>Irton with Santon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE012">
        <xs:annotation>
          <xs:documentation>Lamplugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE013">
        <xs:annotation>
          <xs:documentation>Lowca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE014">
        <xs:annotation>
          <xs:documentation>Lowside Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE015">
        <xs:annotation>
          <xs:documentation>Millom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE016">
        <xs:annotation>
          <xs:documentation>Millom Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE017">
        <xs:annotation>
          <xs:documentation>Moresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE018">
        <xs:annotation>
          <xs:documentation>Muncaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE019">
        <xs:annotation>
          <xs:documentation>Wasdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE020">
        <xs:annotation>
          <xs:documentation>Parton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE021">
        <xs:annotation>
          <xs:documentation>Ponsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE022">
        <xs:annotation>
          <xs:documentation>St. Bees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE023">
        <xs:annotation>
          <xs:documentation>St. Bridget Beckermet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE024">
        <xs:annotation>
          <xs:documentation>St. John Beckermet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE025">
        <xs:annotation>
          <xs:documentation>Seascale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE026">
        <xs:annotation>
          <xs:documentation>Ulpha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE027">
        <xs:annotation>
          <xs:documentation>Waberthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE028">
        <xs:annotation>
          <xs:documentation>Weddicar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE029">
        <xs:annotation>
          <xs:documentation>Whicham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF001">
        <xs:annotation>
          <xs:documentation>Ainstable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF002">
        <xs:annotation>
          <xs:documentation>Alston Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF003">
        <xs:annotation>
          <xs:documentation>Appleby-in-Westmorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF004">
        <xs:annotation>
          <xs:documentation>Asby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF005">
        <xs:annotation>
          <xs:documentation>Askham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF006">
        <xs:annotation>
          <xs:documentation>Bampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF007">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF008">
        <xs:annotation>
          <xs:documentation>Bolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF009">
        <xs:annotation>
          <xs:documentation>Brough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF010">
        <xs:annotation>
          <xs:documentation>Brougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF011">
        <xs:annotation>
          <xs:documentation>Brough Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF012">
        <xs:annotation>
          <xs:documentation>Castle Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF013">
        <xs:annotation>
          <xs:documentation>Catterlen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF014">
        <xs:annotation>
          <xs:documentation>Cliburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF015">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF016">
        <xs:annotation>
          <xs:documentation>Colby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF017">
        <xs:annotation>
          <xs:documentation>Crackenthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF018">
        <xs:annotation>
          <xs:documentation>Crosby Garrett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF019">
        <xs:annotation>
          <xs:documentation>Crosby Ravensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF020">
        <xs:annotation>
          <xs:documentation>Culgaith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF021">
        <xs:annotation>
          <xs:documentation>Dacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF022">
        <xs:annotation>
          <xs:documentation>Dufton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF023">
        <xs:annotation>
          <xs:documentation>Glassonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF024">
        <xs:annotation>
          <xs:documentation>Great Salkeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF025">
        <xs:annotation>
          <xs:documentation>Great Strickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF026">
        <xs:annotation>
          <xs:documentation>Greystoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF027">
        <xs:annotation>
          <xs:documentation>Hartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF028">
        <xs:annotation>
          <xs:documentation>Helbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF029">
        <xs:annotation>
          <xs:documentation>Hesket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF030">
        <xs:annotation>
          <xs:documentation>Hoff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF031">
        <xs:annotation>
          <xs:documentation>Hunsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF032">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF033">
        <xs:annotation>
          <xs:documentation>Kaber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF034">
        <xs:annotation>
          <xs:documentation>King's Meaburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF035">
        <xs:annotation>
          <xs:documentation>Kirkby Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF036">
        <xs:annotation>
          <xs:documentation>Kirkby Thore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF037">
        <xs:annotation>
          <xs:documentation>Kirkoswald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF038">
        <xs:annotation>
          <xs:documentation>Langwathby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF039">
        <xs:annotation>
          <xs:documentation>Lazonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF040">
        <xs:annotation>
          <xs:documentation>Little Strickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF041">
        <xs:annotation>
          <xs:documentation>Long Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF042">
        <xs:annotation>
          <xs:documentation>Lowther</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF043">
        <xs:annotation>
          <xs:documentation>Mallerstang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF044">
        <xs:annotation>
          <xs:documentation>Martindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF045">
        <xs:annotation>
          <xs:documentation>Matterdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF046">
        <xs:annotation>
          <xs:documentation>Milburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF047">
        <xs:annotation>
          <xs:documentation>Morland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF048">
        <xs:annotation>
          <xs:documentation>Mungrisdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF049">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF050">
        <xs:annotation>
          <xs:documentation>Musgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF051">
        <xs:annotation>
          <xs:documentation>Nateby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF052">
        <xs:annotation>
          <xs:documentation>Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF053">
        <xs:annotation>
          <xs:documentation>Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF054">
        <xs:annotation>
          <xs:documentation>Ormside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF055">
        <xs:annotation>
          <xs:documentation>Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF056">
        <xs:annotation>
          <xs:documentation>Ousby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF057">
        <xs:annotation>
          <xs:documentation>Patterdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF058">
        <xs:annotation>
          <xs:documentation>Ravenstonedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF059">
        <xs:annotation>
          <xs:documentation>Shap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF060">
        <xs:annotation>
          <xs:documentation>Shap Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF061">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF062">
        <xs:annotation>
          <xs:documentation>Sleagill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF063">
        <xs:annotation>
          <xs:documentation>Sockbridge and Tirril</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF064">
        <xs:annotation>
          <xs:documentation>Soulby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF065">
        <xs:annotation>
          <xs:documentation>Stainmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF066">
        <xs:annotation>
          <xs:documentation>Tebay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF067">
        <xs:annotation>
          <xs:documentation>Temple Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF068">
        <xs:annotation>
          <xs:documentation>Threlkeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF069">
        <xs:annotation>
          <xs:documentation>Thrimby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF070">
        <xs:annotation>
          <xs:documentation>Waitby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF071">
        <xs:annotation>
          <xs:documentation>Warcop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF072">
        <xs:annotation>
          <xs:documentation>Wharton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF073">
        <xs:annotation>
          <xs:documentation>Winton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF074">
        <xs:annotation>
          <xs:documentation>Yanwath and Eamont Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG001">
        <xs:annotation>
          <xs:documentation>Aldingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG002">
        <xs:annotation>
          <xs:documentation>Angerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG003">
        <xs:annotation>
          <xs:documentation>Arnside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG004">
        <xs:annotation>
          <xs:documentation>Barbon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG005">
        <xs:annotation>
          <xs:documentation>Beetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG006">
        <xs:annotation>
          <xs:documentation>Blawith and Subberthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG007">
        <xs:annotation>
          <xs:documentation>Broughton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG008">
        <xs:annotation>
          <xs:documentation>Broughton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG009">
        <xs:annotation>
          <xs:documentation>Burton-in-Kendal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG010">
        <xs:annotation>
          <xs:documentation>Cartmel Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG011">
        <xs:annotation>
          <xs:documentation>Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG012">
        <xs:annotation>
          <xs:documentation>Claife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG013">
        <xs:annotation>
          <xs:documentation>Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG014">
        <xs:annotation>
          <xs:documentation>Coniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG015">
        <xs:annotation>
          <xs:documentation>Crook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG016">
        <xs:annotation>
          <xs:documentation>Crosthwaite and Lyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG017">
        <xs:annotation>
          <xs:documentation>Dent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG018">
        <xs:annotation>
          <xs:documentation>Docker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG019">
        <xs:annotation>
          <xs:documentation>Dunnerdale-with-Seathwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG020">
        <xs:annotation>
          <xs:documentation>Egton with Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG021">
        <xs:annotation>
          <xs:documentation>Fawcett Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG022">
        <xs:annotation>
          <xs:documentation>Firbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG023">
        <xs:annotation>
          <xs:documentation>Garsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG024">
        <xs:annotation>
          <xs:documentation>Grange-over-Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG025">
        <xs:annotation>
          <xs:documentation>Grayrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG026">
        <xs:annotation>
          <xs:documentation>Haverthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG027">
        <xs:annotation>
          <xs:documentation>Hawkshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG028">
        <xs:annotation>
          <xs:documentation>Helsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG029">
        <xs:annotation>
          <xs:documentation>Heversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG030">
        <xs:annotation>
          <xs:documentation>Hincaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG031">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG032">
        <xs:annotation>
          <xs:documentation>Hugill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG033">
        <xs:annotation>
          <xs:documentation>Hutton Roof</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG034">
        <xs:annotation>
          <xs:documentation>Kendal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG035">
        <xs:annotation>
          <xs:documentation>Kentmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG036">
        <xs:annotation>
          <xs:documentation>Killington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG037">
        <xs:annotation>
          <xs:documentation>Kirkby Ireleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG038">
        <xs:annotation>
          <xs:documentation>Kirkby Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG039">
        <xs:annotation>
          <xs:documentation>Lakes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG040">
        <xs:annotation>
          <xs:documentation>Lambrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG041">
        <xs:annotation>
          <xs:documentation>Levens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG042">
        <xs:annotation>
          <xs:documentation>Longsleddale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG043">
        <xs:annotation>
          <xs:documentation>Lower Allithwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG044">
        <xs:annotation>
          <xs:documentation>Lower Holker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG045">
        <xs:annotation>
          <xs:documentation>Lowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG046">
        <xs:annotation>
          <xs:documentation>Lupton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG047">
        <xs:annotation>
          <xs:documentation>Mansergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG048">
        <xs:annotation>
          <xs:documentation>Mansriggs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG049">
        <xs:annotation>
          <xs:documentation>Meathop and Ulpha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG050">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG051">
        <xs:annotation>
          <xs:documentation>Milnthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG052">
        <xs:annotation>
          <xs:documentation>Natland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG053">
        <xs:annotation>
          <xs:documentation>Nether Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG054">
        <xs:annotation>
          <xs:documentation>New Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG055">
        <xs:annotation>
          <xs:documentation>Old Hutton and Holmescales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG056">
        <xs:annotation>
          <xs:documentation>Osmotherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG057">
        <xs:annotation>
          <xs:documentation>Over Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG058">
        <xs:annotation>
          <xs:documentation>Pennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG059">
        <xs:annotation>
          <xs:documentation>Preston Patrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG060">
        <xs:annotation>
          <xs:documentation>Preston Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG061">
        <xs:annotation>
          <xs:documentation>Satterthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG062">
        <xs:annotation>
          <xs:documentation>Scalthwaiterigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG063">
        <xs:annotation>
          <xs:documentation>Sedbergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG064">
        <xs:annotation>
          <xs:documentation>Sedgwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG065">
        <xs:annotation>
          <xs:documentation>Skelsmergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG066">
        <xs:annotation>
          <xs:documentation>Skelwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG067">
        <xs:annotation>
          <xs:documentation>Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG068">
        <xs:annotation>
          <xs:documentation>Staveley-in-Cartmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG069">
        <xs:annotation>
          <xs:documentation>Strickland Ketel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG070">
        <xs:annotation>
          <xs:documentation>Strickland Roger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG071">
        <xs:annotation>
          <xs:documentation>Torver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG072">
        <xs:annotation>
          <xs:documentation>Ulverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG073">
        <xs:annotation>
          <xs:documentation>Underbarrow and Bradleyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG074">
        <xs:annotation>
          <xs:documentation>Upper Allithwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG075">
        <xs:annotation>
          <xs:documentation>Urswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG076">
        <xs:annotation>
          <xs:documentation>Whinfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG077">
        <xs:annotation>
          <xs:documentation>Whitwell and Selside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG078">
        <xs:annotation>
          <xs:documentation>Windermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG079">
        <xs:annotation>
          <xs:documentation>Witherslack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB001">
        <xs:annotation>
          <xs:documentation>Aldercar and Langley Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB002">
        <xs:annotation>
          <xs:documentation>Alderwasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB003">
        <xs:annotation>
          <xs:documentation>Alfreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB004">
        <xs:annotation>
          <xs:documentation>Ashleyhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB005">
        <xs:annotation>
          <xs:documentation>Belper</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB006">
        <xs:annotation>
          <xs:documentation>Codnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB007">
        <xs:annotation>
          <xs:documentation>Crich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB008">
        <xs:annotation>
          <xs:documentation>Denby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB009">
        <xs:annotation>
          <xs:documentation>Dethick, Lea and Holloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB010">
        <xs:annotation>
          <xs:documentation>Duffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB011">
        <xs:annotation>
          <xs:documentation>Hazelwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB012">
        <xs:annotation>
          <xs:documentation>Heanor and Loscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB013">
        <xs:annotation>
          <xs:documentation>Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB014">
        <xs:annotation>
          <xs:documentation>Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB015">
        <xs:annotation>
          <xs:documentation>Horsley Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB016">
        <xs:annotation>
          <xs:documentation>Idridgehay and Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB017">
        <xs:annotation>
          <xs:documentation>Ironville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB018">
        <xs:annotation>
          <xs:documentation>Kedleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB019">
        <xs:annotation>
          <xs:documentation>Kilburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB020">
        <xs:annotation>
          <xs:documentation>Kirk Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB021">
        <xs:annotation>
          <xs:documentation>Mackworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB022">
        <xs:annotation>
          <xs:documentation>Mapperley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB023">
        <xs:annotation>
          <xs:documentation>Pentrich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB024">
        <xs:annotation>
          <xs:documentation>Quarndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB025">
        <xs:annotation>
          <xs:documentation>Ravensdale Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB026">
        <xs:annotation>
          <xs:documentation>Ripley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB027">
        <xs:annotation>
          <xs:documentation>Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB028">
        <xs:annotation>
          <xs:documentation>Shottle and Postern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB029">
        <xs:annotation>
          <xs:documentation>Smalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB030">
        <xs:annotation>
          <xs:documentation>Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB031">
        <xs:annotation>
          <xs:documentation>South Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB032">
        <xs:annotation>
          <xs:documentation>Swanwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB033">
        <xs:annotation>
          <xs:documentation>Turnditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB034">
        <xs:annotation>
          <xs:documentation>Weston Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB035">
        <xs:annotation>
          <xs:documentation>Windley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC001">
        <xs:annotation>
          <xs:documentation>Ault Hucknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC002">
        <xs:annotation>
          <xs:documentation>Barlborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC003">
        <xs:annotation>
          <xs:documentation>Blackwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC004">
        <xs:annotation>
          <xs:documentation>Clowne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC005">
        <xs:annotation>
          <xs:documentation>Elmton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC006">
        <xs:annotation>
          <xs:documentation>Glapwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC007">
        <xs:annotation>
          <xs:documentation>Old Bolsover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC008">
        <xs:annotation>
          <xs:documentation>Pinxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC009">
        <xs:annotation>
          <xs:documentation>Pleasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC010">
        <xs:annotation>
          <xs:documentation>Scarcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC011">
        <xs:annotation>
          <xs:documentation>Shirebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC012">
        <xs:annotation>
          <xs:documentation>South Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC013">
        <xs:annotation>
          <xs:documentation>Tibshelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC014">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UD001">
        <xs:annotation>
          <xs:documentation>Brimington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UD002">
        <xs:annotation>
          <xs:documentation>Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF001">
        <xs:annotation>
          <xs:documentation>Abney and Abney Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF002">
        <xs:annotation>
          <xs:documentation>Aldwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF003">
        <xs:annotation>
          <xs:documentation>Alkmonton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF004">
        <xs:annotation>
          <xs:documentation>Ashbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF005">
        <xs:annotation>
          <xs:documentation>Ashford in the Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF006">
        <xs:annotation>
          <xs:documentation>Atlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF007">
        <xs:annotation>
          <xs:documentation>Bakewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF008">
        <xs:annotation>
          <xs:documentation>Ballidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF009">
        <xs:annotation>
          <xs:documentation>Baslow and Bubnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF010">
        <xs:annotation>
          <xs:documentation>Beeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF011">
        <xs:annotation>
          <xs:documentation>Biggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF012">
        <xs:annotation>
          <xs:documentation>Birchover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF013">
        <xs:annotation>
          <xs:documentation>Blackwell in the Peak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF014">
        <xs:annotation>
          <xs:documentation>Bonsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF015">
        <xs:annotation>
          <xs:documentation>Boylestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF016">
        <xs:annotation>
          <xs:documentation>Bradbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF017">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF018">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF019">
        <xs:annotation>
          <xs:documentation>Brailsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF020">
        <xs:annotation>
          <xs:documentation>Brassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF021">
        <xs:annotation>
          <xs:documentation>Brushfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF022">
        <xs:annotation>
          <xs:documentation>Callow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF023">
        <xs:annotation>
          <xs:documentation>Calver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF024">
        <xs:annotation>
          <xs:documentation>Carsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF025">
        <xs:annotation>
          <xs:documentation>Chatsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF026">
        <xs:annotation>
          <xs:documentation>Chelmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF027">
        <xs:annotation>
          <xs:documentation>Clifton and Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF028">
        <xs:annotation>
          <xs:documentation>Cromford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF029">
        <xs:annotation>
          <xs:documentation>Cubley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF030">
        <xs:annotation>
          <xs:documentation>Curbar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF031">
        <xs:annotation>
          <xs:documentation>Darley Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF032">
        <xs:annotation>
          <xs:documentation>Doveridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF033">
        <xs:annotation>
          <xs:documentation>Eaton and Alsop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF034">
        <xs:annotation>
          <xs:documentation>Edensor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF035">
        <xs:annotation>
          <xs:documentation>Edlaston and Wyaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF036">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF037">
        <xs:annotation>
          <xs:documentation>Eyam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF038">
        <xs:annotation>
          <xs:documentation>Fenny Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF039">
        <xs:annotation>
          <xs:documentation>Flagg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF040">
        <xs:annotation>
          <xs:documentation>Foolow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF041">
        <xs:annotation>
          <xs:documentation>Froggatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF042">
        <xs:annotation>
          <xs:documentation>Gratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF043">
        <xs:annotation>
          <xs:documentation>Great Hucklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF044">
        <xs:annotation>
          <xs:documentation>Great Longstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF045">
        <xs:annotation>
          <xs:documentation>Grindleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF046">
        <xs:annotation>
          <xs:documentation>Grindlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF047">
        <xs:annotation>
          <xs:documentation>Harthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF048">
        <xs:annotation>
          <xs:documentation>Hartington Middle Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF049">
        <xs:annotation>
          <xs:documentation>Hartington Nether Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF050">
        <xs:annotation>
          <xs:documentation>Hartington Town Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF051">
        <xs:annotation>
          <xs:documentation>Hassop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF052">
        <xs:annotation>
          <xs:documentation>Hathersage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF053">
        <xs:annotation>
          <xs:documentation>Hazlebadge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF054">
        <xs:annotation>
          <xs:documentation>Highlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF055">
        <xs:annotation>
          <xs:documentation>Hognaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF056">
        <xs:annotation>
          <xs:documentation>Hollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF057">
        <xs:annotation>
          <xs:documentation>Hopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF058">
        <xs:annotation>
          <xs:documentation>Hulland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF059">
        <xs:annotation>
          <xs:documentation>Hulland Ward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF060">
        <xs:annotation>
          <xs:documentation>Hungry Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF061">
        <xs:annotation>
          <xs:documentation>Ible</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF062">
        <xs:annotation>
          <xs:documentation>Ivonbrook Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF063">
        <xs:annotation>
          <xs:documentation>Kirk Ireton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF064">
        <xs:annotation>
          <xs:documentation>Kniveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF065">
        <xs:annotation>
          <xs:documentation>Lea Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF066">
        <xs:annotation>
          <xs:documentation>Little Hucklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF067">
        <xs:annotation>
          <xs:documentation>Little Longstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF068">
        <xs:annotation>
          <xs:documentation>Litton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF069">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF070">
        <xs:annotation>
          <xs:documentation>Mapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF071">
        <xs:annotation>
          <xs:documentation>Marston Montgomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF072">
        <xs:annotation>
          <xs:documentation>Matlock Bath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF073">
        <xs:annotation>
          <xs:documentation>Matlock Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF074">
        <xs:annotation>
          <xs:documentation>Mercaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF075">
        <xs:annotation>
          <xs:documentation>Middleton and Smerrill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF076">
        <xs:annotation>
          <xs:documentation>Monyash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF077">
        <xs:annotation>
          <xs:documentation>Nether Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF078">
        <xs:annotation>
          <xs:documentation>Newton Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF079">
        <xs:annotation>
          <xs:documentation>Norbury and Roston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF080">
        <xs:annotation>
          <xs:documentation>Northwood and Tinkersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF081">
        <xs:annotation>
          <xs:documentation>Offcote and Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF082">
        <xs:annotation>
          <xs:documentation>Offerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF083">
        <xs:annotation>
          <xs:documentation>Osmaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF084">
        <xs:annotation>
          <xs:documentation>Outseats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF085">
        <xs:annotation>
          <xs:documentation>Over Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF086">
        <xs:annotation>
          <xs:documentation>Parwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF087">
        <xs:annotation>
          <xs:documentation>Pilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF088">
        <xs:annotation>
          <xs:documentation>Rodsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF089">
        <xs:annotation>
          <xs:documentation>Rowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF090">
        <xs:annotation>
          <xs:documentation>Rowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF091">
        <xs:annotation>
          <xs:documentation>Sheldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF092">
        <xs:annotation>
          <xs:documentation>Shirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF093">
        <xs:annotation>
          <xs:documentation>Snelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF094">
        <xs:annotation>
          <xs:documentation>Somersal Herbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF095">
        <xs:annotation>
          <xs:documentation>South Darley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF096">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF097">
        <xs:annotation>
          <xs:documentation>Stoney Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF098">
        <xs:annotation>
          <xs:documentation>Sudbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF099">
        <xs:annotation>
          <xs:documentation>Taddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF100">
        <xs:annotation>
          <xs:documentation>Tansley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF101">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF102">
        <xs:annotation>
          <xs:documentation>Tideswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF103">
        <xs:annotation>
          <xs:documentation>Tissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF104">
        <xs:annotation>
          <xs:documentation>Wardlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF105">
        <xs:annotation>
          <xs:documentation>Wheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF106">
        <xs:annotation>
          <xs:documentation>Winster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF107">
        <xs:annotation>
          <xs:documentation>Wirksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF108">
        <xs:annotation>
          <xs:documentation>Yeaveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF109">
        <xs:annotation>
          <xs:documentation>Yeldersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF110">
        <xs:annotation>
          <xs:documentation>Youlgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF111">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG001">
        <xs:annotation>
          <xs:documentation>Breadsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG002">
        <xs:annotation>
          <xs:documentation>Breaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG003">
        <xs:annotation>
          <xs:documentation>Dale Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG004">
        <xs:annotation>
          <xs:documentation>Draycott and Church Wilne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG005">
        <xs:annotation>
          <xs:documentation>Hopwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG006">
        <xs:annotation>
          <xs:documentation>Little Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG007">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG008">
        <xs:annotation>
          <xs:documentation>Ockbrook and Borrowash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG009">
        <xs:annotation>
          <xs:documentation>Risley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG010">
        <xs:annotation>
          <xs:documentation>Sandiacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG011">
        <xs:annotation>
          <xs:documentation>Stanley and Stanley Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG012">
        <xs:annotation>
          <xs:documentation>Stanton by Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG013">
        <xs:annotation>
          <xs:documentation>West Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG014">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH001">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH002">
        <xs:annotation>
          <xs:documentation>Bamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH003">
        <xs:annotation>
          <xs:documentation>Brough and Shatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH004">
        <xs:annotation>
          <xs:documentation>Castleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH005">
        <xs:annotation>
          <xs:documentation>Chapel en le Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH006">
        <xs:annotation>
          <xs:documentation>Charlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH007">
        <xs:annotation>
          <xs:documentation>Chinley, Buxworth and Brownside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH008">
        <xs:annotation>
          <xs:documentation>Chisworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH009">
        <xs:annotation>
          <xs:documentation>Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH010">
        <xs:annotation>
          <xs:documentation>Edale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH011">
        <xs:annotation>
          <xs:documentation>Green Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH012">
        <xs:annotation>
          <xs:documentation>Hartington upper Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH013">
        <xs:annotation>
          <xs:documentation>Hayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH014">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH015">
        <xs:annotation>
          <xs:documentation>Hope Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH016">
        <xs:annotation>
          <xs:documentation>King Sterndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH017">
        <xs:annotation>
          <xs:documentation>New Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH018">
        <xs:annotation>
          <xs:documentation>Peak Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH019">
        <xs:annotation>
          <xs:documentation>Thornhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH020">
        <xs:annotation>
          <xs:documentation>Tintwistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH021">
        <xs:annotation>
          <xs:documentation>Whaley Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH022">
        <xs:annotation>
          <xs:documentation>Wormhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ001">
        <xs:annotation>
          <xs:documentation>Ashover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ002">
        <xs:annotation>
          <xs:documentation>Barlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ003">
        <xs:annotation>
          <xs:documentation>Brackenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ004">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ005">
        <xs:annotation>
          <xs:documentation>Calow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ006">
        <xs:annotation>
          <xs:documentation>Clay Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ007">
        <xs:annotation>
          <xs:documentation>Dronfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ008">
        <xs:annotation>
          <xs:documentation>Eckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ009">
        <xs:annotation>
          <xs:documentation>Grassmoor, Hasland and Winswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ010">
        <xs:annotation>
          <xs:documentation>Heath and Holmewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ011">
        <xs:annotation>
          <xs:documentation>Holmesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ012">
        <xs:annotation>
          <xs:documentation>Holymoorside and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ013">
        <xs:annotation>
          <xs:documentation>Killamarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ014">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ015">
        <xs:annotation>
          <xs:documentation>North Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ016">
        <xs:annotation>
          <xs:documentation>Pilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ017">
        <xs:annotation>
          <xs:documentation>Shirland and Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ018">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ019">
        <xs:annotation>
          <xs:documentation>Sutton cum Duckmanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ020">
        <xs:annotation>
          <xs:documentation>Temple Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ021">
        <xs:annotation>
          <xs:documentation>Tupton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ022">
        <xs:annotation>
          <xs:documentation>Unstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ023">
        <xs:annotation>
          <xs:documentation>Wessington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ024">
        <xs:annotation>
          <xs:documentation>Wingerworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK001">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK002">
        <xs:annotation>
          <xs:documentation>Aston upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK003">
        <xs:annotation>
          <xs:documentation>Barrow upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK004">
        <xs:annotation>
          <xs:documentation>Barton Blount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK005">
        <xs:annotation>
          <xs:documentation>Bearwardcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK006">
        <xs:annotation>
          <xs:documentation>Bretby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK007">
        <xs:annotation>
          <xs:documentation>Burnaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK008">
        <xs:annotation>
          <xs:documentation>Calke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK009">
        <xs:annotation>
          <xs:documentation>Castle Gresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK010">
        <xs:annotation>
          <xs:documentation>Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK011">
        <xs:annotation>
          <xs:documentation>Cauldwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK012">
        <xs:annotation>
          <xs:documentation>Church Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK013">
        <xs:annotation>
          <xs:documentation>Coton in the Elms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK014">
        <xs:annotation>
          <xs:documentation>Dalbury Lees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK015">
        <xs:annotation>
          <xs:documentation>Drakelow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK016">
        <xs:annotation>
          <xs:documentation>Egginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK017">
        <xs:annotation>
          <xs:documentation>Elvaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK018">
        <xs:annotation>
          <xs:documentation>Etwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK019">
        <xs:annotation>
          <xs:documentation>Findern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK020">
        <xs:annotation>
          <xs:documentation>Foremark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK021">
        <xs:annotation>
          <xs:documentation>Foston and Scropton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK022">
        <xs:annotation>
          <xs:documentation>Hartshorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK023">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK024">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK025">
        <xs:annotation>
          <xs:documentation>Hoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK026">
        <xs:annotation>
          <xs:documentation>Ingleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK027">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK028">
        <xs:annotation>
          <xs:documentation>Lullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK029">
        <xs:annotation>
          <xs:documentation>Marston on Dove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK030">
        <xs:annotation>
          <xs:documentation>Melbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK031">
        <xs:annotation>
          <xs:documentation>Netherseal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK032">
        <xs:annotation>
          <xs:documentation>Newton Solney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK033">
        <xs:annotation>
          <xs:documentation>Osleston and Thurvaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK034">
        <xs:annotation>
          <xs:documentation>Overseal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK035">
        <xs:annotation>
          <xs:documentation>Radbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK036">
        <xs:annotation>
          <xs:documentation>Repton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK037">
        <xs:annotation>
          <xs:documentation>Rosliston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK038">
        <xs:annotation>
          <xs:documentation>Shardlow and Great Wilne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK039">
        <xs:annotation>
          <xs:documentation>Smisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK040">
        <xs:annotation>
          <xs:documentation>Stanton by Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK041">
        <xs:annotation>
          <xs:documentation>Stenson Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK042">
        <xs:annotation>
          <xs:documentation>Sutton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK043">
        <xs:annotation>
          <xs:documentation>Swarkestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK044">
        <xs:annotation>
          <xs:documentation>Ticknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK045">
        <xs:annotation>
          <xs:documentation>Trusley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK046">
        <xs:annotation>
          <xs:documentation>Twyford and Stenson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK047">
        <xs:annotation>
          <xs:documentation>Walton upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK048">
        <xs:annotation>
          <xs:documentation>Weston upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK049">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK050">
        <xs:annotation>
          <xs:documentation>Woodville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB001">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB002">
        <xs:annotation>
          <xs:documentation>Awliscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB003">
        <xs:annotation>
          <xs:documentation>Axminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB004">
        <xs:annotation>
          <xs:documentation>Axmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB005">
        <xs:annotation>
          <xs:documentation>Aylesbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB006">
        <xs:annotation>
          <xs:documentation>Beer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB007">
        <xs:annotation>
          <xs:documentation>Bicton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB008">
        <xs:annotation>
          <xs:documentation>Brampford Speke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB009">
        <xs:annotation>
          <xs:documentation>Branscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB010">
        <xs:annotation>
          <xs:documentation>Broad Clyst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB011">
        <xs:annotation>
          <xs:documentation>Broadhembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB012">
        <xs:annotation>
          <xs:documentation>Buckerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB013">
        <xs:annotation>
          <xs:documentation>Budleigh Salterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB014">
        <xs:annotation>
          <xs:documentation>Chardstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB015">
        <xs:annotation>
          <xs:documentation>Clyst Honiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB016">
        <xs:annotation>
          <xs:documentation>Clyst Hydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB017">
        <xs:annotation>
          <xs:documentation>Clyst St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB018">
        <xs:annotation>
          <xs:documentation>Clyst St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB019">
        <xs:annotation>
          <xs:documentation>Clyst St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB020">
        <xs:annotation>
          <xs:documentation>Colaton Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB021">
        <xs:annotation>
          <xs:documentation>Colyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB022">
        <xs:annotation>
          <xs:documentation>Combe Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB023">
        <xs:annotation>
          <xs:documentation>Combpyne Rousdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB024">
        <xs:annotation>
          <xs:documentation>Cotleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB025">
        <xs:annotation>
          <xs:documentation>Dalwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB026">
        <xs:annotation>
          <xs:documentation>Dunkeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB027">
        <xs:annotation>
          <xs:documentation>East Budleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB028">
        <xs:annotation>
          <xs:documentation>Farringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB029">
        <xs:annotation>
          <xs:documentation>Farway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB030">
        <xs:annotation>
          <xs:documentation>Feniton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB031">
        <xs:annotation>
          <xs:documentation>Gittisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB032">
        <xs:annotation>
          <xs:documentation>Hawkchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB033">
        <xs:annotation>
          <xs:documentation>Honiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB034">
        <xs:annotation>
          <xs:documentation>Huxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB035">
        <xs:annotation>
          <xs:documentation>Kilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB036">
        <xs:annotation>
          <xs:documentation>Luppitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB037">
        <xs:annotation>
          <xs:documentation>Lympstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB038">
        <xs:annotation>
          <xs:documentation>Membury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB039">
        <xs:annotation>
          <xs:documentation>Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB040">
        <xs:annotation>
          <xs:documentation>Musbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB041">
        <xs:annotation>
          <xs:documentation>Nether Exe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB042">
        <xs:annotation>
          <xs:documentation>Newton Poppleford and Harpford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB043">
        <xs:annotation>
          <xs:documentation>Northleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB044">
        <xs:annotation>
          <xs:documentation>Offwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB045">
        <xs:annotation>
          <xs:documentation>Otterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB046">
        <xs:annotation>
          <xs:documentation>Ottery St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB047">
        <xs:annotation>
          <xs:documentation>Payhembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB048">
        <xs:annotation>
          <xs:documentation>Plymtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB049">
        <xs:annotation>
          <xs:documentation>Poltimore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB050">
        <xs:annotation>
          <xs:documentation>Rewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB051">
        <xs:annotation>
          <xs:documentation>Rockbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB052">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB053">
        <xs:annotation>
          <xs:documentation>Sheldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB054">
        <xs:annotation>
          <xs:documentation>Shute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB055">
        <xs:annotation>
          <xs:documentation>Sidmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB056">
        <xs:annotation>
          <xs:documentation>Southleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB057">
        <xs:annotation>
          <xs:documentation>Sowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB058">
        <xs:annotation>
          <xs:documentation>Stockland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB059">
        <xs:annotation>
          <xs:documentation>Stoke Canon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB060">
        <xs:annotation>
          <xs:documentation>Talaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB061">
        <xs:annotation>
          <xs:documentation>Uplyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB062">
        <xs:annotation>
          <xs:documentation>Upottery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB063">
        <xs:annotation>
          <xs:documentation>Upton Pyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB064">
        <xs:annotation>
          <xs:documentation>Whimple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB065">
        <xs:annotation>
          <xs:documentation>Widworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB066">
        <xs:annotation>
          <xs:documentation>Woodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB067">
        <xs:annotation>
          <xs:documentation>Yarcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB068">
        <xs:annotation>
          <xs:documentation>Lands Common to Axminster and Kilmington C.P.s</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB069">
        <xs:annotation>
          <xs:documentation>Exmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD001">
        <xs:annotation>
          <xs:documentation>Bampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD002">
        <xs:annotation>
          <xs:documentation>Bickleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD003">
        <xs:annotation>
          <xs:documentation>Bow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD004">
        <xs:annotation>
          <xs:documentation>Bradninch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD005">
        <xs:annotation>
          <xs:documentation>Brushford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD006">
        <xs:annotation>
          <xs:documentation>Burlescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD007">
        <xs:annotation>
          <xs:documentation>Butterleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD008">
        <xs:annotation>
          <xs:documentation>Cadbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD009">
        <xs:annotation>
          <xs:documentation>Cadeleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD010">
        <xs:annotation>
          <xs:documentation>Chawleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD011">
        <xs:annotation>
          <xs:documentation>Cheriton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD012">
        <xs:annotation>
          <xs:documentation>Cheriton Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD013">
        <xs:annotation>
          <xs:documentation>Clannaborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD014">
        <xs:annotation>
          <xs:documentation>Clayhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD015">
        <xs:annotation>
          <xs:documentation>Clayhidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD016">
        <xs:annotation>
          <xs:documentation>Coldridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD017">
        <xs:annotation>
          <xs:documentation>Colebrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD018">
        <xs:annotation>
          <xs:documentation>Crediton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD019">
        <xs:annotation>
          <xs:documentation>Crediton Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD020">
        <xs:annotation>
          <xs:documentation>Cruwys Morchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD021">
        <xs:annotation>
          <xs:documentation>Cullompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD022">
        <xs:annotation>
          <xs:documentation>Culmstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD023">
        <xs:annotation>
          <xs:documentation>Down St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD024">
        <xs:annotation>
          <xs:documentation>Eggesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD025">
        <xs:annotation>
          <xs:documentation>Halberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD026">
        <xs:annotation>
          <xs:documentation>Hemyock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD027">
        <xs:annotation>
          <xs:documentation>Hittisleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD028">
        <xs:annotation>
          <xs:documentation>Hockworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD029">
        <xs:annotation>
          <xs:documentation>Holcombe Rogus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD030">
        <xs:annotation>
          <xs:documentation>Huntsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD031">
        <xs:annotation>
          <xs:documentation>Kennerleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD032">
        <xs:annotation>
          <xs:documentation>Kentisbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD033">
        <xs:annotation>
          <xs:documentation>Lapford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD034">
        <xs:annotation>
          <xs:documentation>Loxbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD035">
        <xs:annotation>
          <xs:documentation>Morchard Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD036">
        <xs:annotation>
          <xs:documentation>Morebath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD037">
        <xs:annotation>
          <xs:documentation>Newton St. Cyres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD038">
        <xs:annotation>
          <xs:documentation>Nymet Rowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD039">
        <xs:annotation>
          <xs:documentation>Oakford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD040">
        <xs:annotation>
          <xs:documentation>Poughill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD041">
        <xs:annotation>
          <xs:documentation>Puddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD042">
        <xs:annotation>
          <xs:documentation>Sampford Peverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD043">
        <xs:annotation>
          <xs:documentation>Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD044">
        <xs:annotation>
          <xs:documentation>Shobrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD045">
        <xs:annotation>
          <xs:documentation>Silverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD046">
        <xs:annotation>
          <xs:documentation>Stockleigh English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD047">
        <xs:annotation>
          <xs:documentation>Stockleigh Pomeroy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD048">
        <xs:annotation>
          <xs:documentation>Stoodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD049">
        <xs:annotation>
          <xs:documentation>Templeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD050">
        <xs:annotation>
          <xs:documentation>Thelbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD051">
        <xs:annotation>
          <xs:documentation>Thorverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD052">
        <xs:annotation>
          <xs:documentation>Tiverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD053">
        <xs:annotation>
          <xs:documentation>Uffculme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD054">
        <xs:annotation>
          <xs:documentation>Uplowman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD055">
        <xs:annotation>
          <xs:documentation>Upton Hellions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD056">
        <xs:annotation>
          <xs:documentation>Washfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD057">
        <xs:annotation>
          <xs:documentation>Washford Pyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD058">
        <xs:annotation>
          <xs:documentation>Wembworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD059">
        <xs:annotation>
          <xs:documentation>Willand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD060">
        <xs:annotation>
          <xs:documentation>Woolfardisworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD061">
        <xs:annotation>
          <xs:documentation>Zeal Monachorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD062">
        <xs:annotation>
          <xs:documentation>Copplestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE001">
        <xs:annotation>
          <xs:documentation>Arlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE002">
        <xs:annotation>
          <xs:documentation>Ashford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE003">
        <xs:annotation>
          <xs:documentation>Atherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE004">
        <xs:annotation>
          <xs:documentation>Barnstaple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE005">
        <xs:annotation>
          <xs:documentation>Berrynarbor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE006">
        <xs:annotation>
          <xs:documentation>Bishop's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE007">
        <xs:annotation>
          <xs:documentation>Bishop's Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE008">
        <xs:annotation>
          <xs:documentation>Bittadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE009">
        <xs:annotation>
          <xs:documentation>Bratton Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE010">
        <xs:annotation>
          <xs:documentation>Braunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE011">
        <xs:annotation>
          <xs:documentation>Brayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE012">
        <xs:annotation>
          <xs:documentation>Brendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE013">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE014">
        <xs:annotation>
          <xs:documentation>Challacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE015">
        <xs:annotation>
          <xs:documentation>Chittlehamholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE016">
        <xs:annotation>
          <xs:documentation>Chittlehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE017">
        <xs:annotation>
          <xs:documentation>Chulmleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE018">
        <xs:annotation>
          <xs:documentation>Combe Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE019">
        <xs:annotation>
          <xs:documentation>Countisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE020">
        <xs:annotation>
          <xs:documentation>East and West Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE021">
        <xs:annotation>
          <xs:documentation>East Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE022">
        <xs:annotation>
          <xs:documentation>East Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE023">
        <xs:annotation>
          <xs:documentation>East Worlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE024">
        <xs:annotation>
          <xs:documentation>Filleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE025">
        <xs:annotation>
          <xs:documentation>Fremington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE026">
        <xs:annotation>
          <xs:documentation>Georgeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE027">
        <xs:annotation>
          <xs:documentation>George Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE028">
        <xs:annotation>
          <xs:documentation>Goodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE029">
        <xs:annotation>
          <xs:documentation>Heanton Punchardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE030">
        <xs:annotation>
          <xs:documentation>Ilfracombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE031">
        <xs:annotation>
          <xs:documentation>Instow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE032">
        <xs:annotation>
          <xs:documentation>Kentisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE033">
        <xs:annotation>
          <xs:documentation>King's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE034">
        <xs:annotation>
          <xs:documentation>Knowstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE035">
        <xs:annotation>
          <xs:documentation>Landkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE036">
        <xs:annotation>
          <xs:documentation>Loxhore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE037">
        <xs:annotation>
          <xs:documentation>Lynton and Lynmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE038">
        <xs:annotation>
          <xs:documentation>Mariansleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE039">
        <xs:annotation>
          <xs:documentation>Martinhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE040">
        <xs:annotation>
          <xs:documentation>Marwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE041">
        <xs:annotation>
          <xs:documentation>Meshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE042">
        <xs:annotation>
          <xs:documentation>Molland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE043">
        <xs:annotation>
          <xs:documentation>Mortehoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE044">
        <xs:annotation>
          <xs:documentation>Horwood, Lovacott and Newton Tracey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE045">
        <xs:annotation>
          <xs:documentation>North Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE046">
        <xs:annotation>
          <xs:documentation>Parracombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE047">
        <xs:annotation>
          <xs:documentation>Queen's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE048">
        <xs:annotation>
          <xs:documentation>Rackenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE049">
        <xs:annotation>
          <xs:documentation>Romansleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE050">
        <xs:annotation>
          <xs:documentation>Rose Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE051">
        <xs:annotation>
          <xs:documentation>Satterleigh and Warkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE052">
        <xs:annotation>
          <xs:documentation>Shirwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE053">
        <xs:annotation>
          <xs:documentation>South Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE054">
        <xs:annotation>
          <xs:documentation>Stoke Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE055">
        <xs:annotation>
          <xs:documentation>Swimbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE056">
        <xs:annotation>
          <xs:documentation>Tawstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE057">
        <xs:annotation>
          <xs:documentation>Trentishoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE058">
        <xs:annotation>
          <xs:documentation>Twitchen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE059">
        <xs:annotation>
          <xs:documentation>West Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE060">
        <xs:annotation>
          <xs:documentation>West Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE061">
        <xs:annotation>
          <xs:documentation>Westleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE062">
        <xs:annotation>
          <xs:documentation>Pilton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE063">
        <xs:annotation>
          <xs:documentation>Witheridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG001">
        <xs:annotation>
          <xs:documentation>Ashprington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG002">
        <xs:annotation>
          <xs:documentation>Aveton Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG003">
        <xs:annotation>
          <xs:documentation>Berry Pomeroy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG004">
        <xs:annotation>
          <xs:documentation>Bickleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG005">
        <xs:annotation>
          <xs:documentation>Bigbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG006">
        <xs:annotation>
          <xs:documentation>Blackawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG007">
        <xs:annotation>
          <xs:documentation>Brixton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG008">
        <xs:annotation>
          <xs:documentation>Buckland-Tout-Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG009">
        <xs:annotation>
          <xs:documentation>Charleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG010">
        <xs:annotation>
          <xs:documentation>Chivelstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG011">
        <xs:annotation>
          <xs:documentation>Churchstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG012">
        <xs:annotation>
          <xs:documentation>Cornwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG013">
        <xs:annotation>
          <xs:documentation>Cornworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG014">
        <xs:annotation>
          <xs:documentation>Dartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG015">
        <xs:annotation>
          <xs:documentation>Dartmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG016">
        <xs:annotation>
          <xs:documentation>Dean Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG017">
        <xs:annotation>
          <xs:documentation>Diptford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG018">
        <xs:annotation>
          <xs:documentation>Dittisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG019">
        <xs:annotation>
          <xs:documentation>East Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG020">
        <xs:annotation>
          <xs:documentation>East Portlemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG021">
        <xs:annotation>
          <xs:documentation>Ermington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG022">
        <xs:annotation>
          <xs:documentation>Frogmore and Sherford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG023">
        <xs:annotation>
          <xs:documentation>Halwell and Moreleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG024">
        <xs:annotation>
          <xs:documentation>Harberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG025">
        <xs:annotation>
          <xs:documentation>Harford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG026">
        <xs:annotation>
          <xs:documentation>Holbeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG027">
        <xs:annotation>
          <xs:documentation>Holne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG028">
        <xs:annotation>
          <xs:documentation>Ivybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG029">
        <xs:annotation>
          <xs:documentation>Kingsbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG030">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG031">
        <xs:annotation>
          <xs:documentation>Kingswear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG032">
        <xs:annotation>
          <xs:documentation>Littlehempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG033">
        <xs:annotation>
          <xs:documentation>Loddiswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG034">
        <xs:annotation>
          <xs:documentation>Malborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG035">
        <xs:annotation>
          <xs:documentation>Marldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG036">
        <xs:annotation>
          <xs:documentation>Modbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG037">
        <xs:annotation>
          <xs:documentation>Newton and Noss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG038">
        <xs:annotation>
          <xs:documentation>North Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG039">
        <xs:annotation>
          <xs:documentation>Rattery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG040">
        <xs:annotation>
          <xs:documentation>Ringmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG041">
        <xs:annotation>
          <xs:documentation>Salcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG042">
        <xs:annotation>
          <xs:documentation>Shaugh Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG043">
        <xs:annotation>
          <xs:documentation>Slapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG044">
        <xs:annotation>
          <xs:documentation>South Brent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG045">
        <xs:annotation>
          <xs:documentation>South Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG046">
        <xs:annotation>
          <xs:documentation>South Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG047">
        <xs:annotation>
          <xs:documentation>South Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG048">
        <xs:annotation>
          <xs:documentation>Sparkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG049">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG050">
        <xs:annotation>
          <xs:documentation>Stoke Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG051">
        <xs:annotation>
          <xs:documentation>Stoke Gabriel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG052">
        <xs:annotation>
          <xs:documentation>Stokenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG053">
        <xs:annotation>
          <xs:documentation>Strete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG054">
        <xs:annotation>
          <xs:documentation>Thurlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG055">
        <xs:annotation>
          <xs:documentation>Totnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG056">
        <xs:annotation>
          <xs:documentation>Ugborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG057">
        <xs:annotation>
          <xs:documentation>Wembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG058">
        <xs:annotation>
          <xs:documentation>West Alvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG059">
        <xs:annotation>
          <xs:documentation>West Buckfastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG060">
        <xs:annotation>
          <xs:documentation>Woodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG061">
        <xs:annotation>
          <xs:documentation>Yealmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH001">
        <xs:annotation>
          <xs:documentation>Abbotskerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH002">
        <xs:annotation>
          <xs:documentation>Ashburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH003">
        <xs:annotation>
          <xs:documentation>Ashcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH004">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH005">
        <xs:annotation>
          <xs:documentation>Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH006">
        <xs:annotation>
          <xs:documentation>Bishopsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH007">
        <xs:annotation>
          <xs:documentation>Bovey Tracey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH008">
        <xs:annotation>
          <xs:documentation>Bridford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH009">
        <xs:annotation>
          <xs:documentation>Broadhempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH010">
        <xs:annotation>
          <xs:documentation>Buckfastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH011">
        <xs:annotation>
          <xs:documentation>Buckland in the Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH012">
        <xs:annotation>
          <xs:documentation>Christow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH013">
        <xs:annotation>
          <xs:documentation>Chudleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH014">
        <xs:annotation>
          <xs:documentation>Coffinswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH015">
        <xs:annotation>
          <xs:documentation>Dawlish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH016">
        <xs:annotation>
          <xs:documentation>Doddiscombsleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH017">
        <xs:annotation>
          <xs:documentation>Dunchideock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH018">
        <xs:annotation>
          <xs:documentation>Dunsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH019">
        <xs:annotation>
          <xs:documentation>Exminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH020">
        <xs:annotation>
          <xs:documentation>Haccombe with Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH021">
        <xs:annotation>
          <xs:documentation>Hennock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH022">
        <xs:annotation>
          <xs:documentation>Holcombe Burnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH023">
        <xs:annotation>
          <xs:documentation>Ide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH024">
        <xs:annotation>
          <xs:documentation>Ideford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH025">
        <xs:annotation>
          <xs:documentation>Ilsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH026">
        <xs:annotation>
          <xs:documentation>Ipplepen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH027">
        <xs:annotation>
          <xs:documentation>Kenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH028">
        <xs:annotation>
          <xs:documentation>Kenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH029">
        <xs:annotation>
          <xs:documentation>Kingskerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH030">
        <xs:annotation>
          <xs:documentation>Kingsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH031">
        <xs:annotation>
          <xs:documentation>Lustleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH032">
        <xs:annotation>
          <xs:documentation>Mamhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH033">
        <xs:annotation>
          <xs:documentation>Manaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH034">
        <xs:annotation>
          <xs:documentation>Moretonhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH035">
        <xs:annotation>
          <xs:documentation>Newton Abbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH036">
        <xs:annotation>
          <xs:documentation>North Bovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH037">
        <xs:annotation>
          <xs:documentation>Ogwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH038">
        <xs:annotation>
          <xs:documentation>Powderham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH039">
        <xs:annotation>
          <xs:documentation>Shaldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH040">
        <xs:annotation>
          <xs:documentation>Shillingford St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH041">
        <xs:annotation>
          <xs:documentation>Starcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH042">
        <xs:annotation>
          <xs:documentation>Stokeinteignhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH043">
        <xs:annotation>
          <xs:documentation>Tedburn St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH044">
        <xs:annotation>
          <xs:documentation>Teigngrace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH045">
        <xs:annotation>
          <xs:documentation>Teignmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH046">
        <xs:annotation>
          <xs:documentation>Denbury and Torbryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH047">
        <xs:annotation>
          <xs:documentation>Trusham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH048">
        <xs:annotation>
          <xs:documentation>Whitestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH049">
        <xs:annotation>
          <xs:documentation>Widecombe in the Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH050">
        <xs:annotation>
          <xs:documentation>Woodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK001">
        <xs:annotation>
          <xs:documentation>Abbots Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK002">
        <xs:annotation>
          <xs:documentation>Abbotsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK003">
        <xs:annotation>
          <xs:documentation>Alverdiscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK004">
        <xs:annotation>
          <xs:documentation>Alwington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK005">
        <xs:annotation>
          <xs:documentation>Ashreigney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK006">
        <xs:annotation>
          <xs:documentation>Ashwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK007">
        <xs:annotation>
          <xs:documentation>Beaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK008">
        <xs:annotation>
          <xs:documentation>Bideford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK009">
        <xs:annotation>
          <xs:documentation>Black Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK010">
        <xs:annotation>
          <xs:documentation>Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK011">
        <xs:annotation>
          <xs:documentation>Bradworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK012">
        <xs:annotation>
          <xs:documentation>Bridgerule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK013">
        <xs:annotation>
          <xs:documentation>Broadwoodwidger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK014">
        <xs:annotation>
          <xs:documentation>Buckland Brewer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK015">
        <xs:annotation>
          <xs:documentation>Buckland Filleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK016">
        <xs:annotation>
          <xs:documentation>Bulkworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK017">
        <xs:annotation>
          <xs:documentation>Clawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK018">
        <xs:annotation>
          <xs:documentation>Clovelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK019">
        <xs:annotation>
          <xs:documentation>Cookbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK020">
        <xs:annotation>
          <xs:documentation>Dolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK021">
        <xs:annotation>
          <xs:documentation>Dowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK022">
        <xs:annotation>
          <xs:documentation>East Putford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK023">
        <xs:annotation>
          <xs:documentation>Frithelstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK024">
        <xs:annotation>
          <xs:documentation>Great Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK025">
        <xs:annotation>
          <xs:documentation>Halwill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK026">
        <xs:annotation>
          <xs:documentation>Hartland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK027">
        <xs:annotation>
          <xs:documentation>High Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK028">
        <xs:annotation>
          <xs:documentation>Hollacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK029">
        <xs:annotation>
          <xs:documentation>Holsworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK030">
        <xs:annotation>
          <xs:documentation>Holsworthy Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK031">
        <xs:annotation>
          <xs:documentation>Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK032">
        <xs:annotation>
          <xs:documentation>Huntshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK033">
        <xs:annotation>
          <xs:documentation>Landcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK034">
        <xs:annotation>
          <xs:documentation>Langtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK035">
        <xs:annotation>
          <xs:documentation>Littleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK036">
        <xs:annotation>
          <xs:documentation>Little Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK037">
        <xs:annotation>
          <xs:documentation>Luffincott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK038">
        <xs:annotation>
          <xs:documentation>Merton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK039">
        <xs:annotation>
          <xs:documentation>Milton Damerel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK040">
        <xs:annotation>
          <xs:documentation>Monkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK041">
        <xs:annotation>
          <xs:documentation>Newton St. Petrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK042">
        <xs:annotation>
          <xs:documentation>Northam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK043">
        <xs:annotation>
          <xs:documentation>Northcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK044">
        <xs:annotation>
          <xs:documentation>Pancrasweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK045">
        <xs:annotation>
          <xs:documentation>Parkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK046">
        <xs:annotation>
          <xs:documentation>Peters Marland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK047">
        <xs:annotation>
          <xs:documentation>Petrockstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK048">
        <xs:annotation>
          <xs:documentation>Pyworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK049">
        <xs:annotation>
          <xs:documentation>Roborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK050">
        <xs:annotation>
          <xs:documentation>St. Giles in the Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK051">
        <xs:annotation>
          <xs:documentation>St. Giles on the Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK052">
        <xs:annotation>
          <xs:documentation>Shebbear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK053">
        <xs:annotation>
          <xs:documentation>Sheepwash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK054">
        <xs:annotation>
          <xs:documentation>Sutcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK055">
        <xs:annotation>
          <xs:documentation>Tetcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK056">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK057">
        <xs:annotation>
          <xs:documentation>Virginstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK058">
        <xs:annotation>
          <xs:documentation>Weare Giffard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK059">
        <xs:annotation>
          <xs:documentation>Welcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK060">
        <xs:annotation>
          <xs:documentation>West Putford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK061">
        <xs:annotation>
          <xs:documentation>Winkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK062">
        <xs:annotation>
          <xs:documentation>Woolfardisworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK063">
        <xs:annotation>
          <xs:documentation>Yarnscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK064">
        <xs:annotation>
          <xs:documentation>Area not comprised in any Parish-Lundy Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL001">
        <xs:annotation>
          <xs:documentation>Beaworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL002">
        <xs:annotation>
          <xs:documentation>Belstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL003">
        <xs:annotation>
          <xs:documentation>Bere Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL004">
        <xs:annotation>
          <xs:documentation>Bondleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL005">
        <xs:annotation>
          <xs:documentation>Bradstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL006">
        <xs:annotation>
          <xs:documentation>Bratton Clovelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL007">
        <xs:annotation>
          <xs:documentation>Brentor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL008">
        <xs:annotation>
          <xs:documentation>Bridestowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL009">
        <xs:annotation>
          <xs:documentation>Broadwoodkelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL010">
        <xs:annotation>
          <xs:documentation>Buckland Monachorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL011">
        <xs:annotation>
          <xs:documentation>Chagford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL012">
        <xs:annotation>
          <xs:documentation>Coryton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL013">
        <xs:annotation>
          <xs:documentation>Dartmoor Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL014">
        <xs:annotation>
          <xs:documentation>Drewsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL015">
        <xs:annotation>
          <xs:documentation>Dunterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL016">
        <xs:annotation>
          <xs:documentation>Exbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL017">
        <xs:annotation>
          <xs:documentation>Germansweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL018">
        <xs:annotation>
          <xs:documentation>Gidleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL019">
        <xs:annotation>
          <xs:documentation>Gulworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL020">
        <xs:annotation>
          <xs:documentation>Hatherleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL021">
        <xs:annotation>
          <xs:documentation>Highampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL022">
        <xs:annotation>
          <xs:documentation>Horrabridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL023">
        <xs:annotation>
          <xs:documentation>Iddesleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL024">
        <xs:annotation>
          <xs:documentation>Inwardleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL025">
        <xs:annotation>
          <xs:documentation>Jacobstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL026">
        <xs:annotation>
          <xs:documentation>Kelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL027">
        <xs:annotation>
          <xs:documentation>Lamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL028">
        <xs:annotation>
          <xs:documentation>Lewtrenchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL029">
        <xs:annotation>
          <xs:documentation>Lifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL030">
        <xs:annotation>
          <xs:documentation>Lydford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL031">
        <xs:annotation>
          <xs:documentation>Marystow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL032">
        <xs:annotation>
          <xs:documentation>Mary Tavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL033">
        <xs:annotation>
          <xs:documentation>Meavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL034">
        <xs:annotation>
          <xs:documentation>Meeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL035">
        <xs:annotation>
          <xs:documentation>Milton Abbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL036">
        <xs:annotation>
          <xs:documentation>Monkokehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL037">
        <xs:annotation>
          <xs:documentation>Northlew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL038">
        <xs:annotation>
          <xs:documentation>North Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL039">
        <xs:annotation>
          <xs:documentation>Okehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL040">
        <xs:annotation>
          <xs:documentation>Okehampton Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL041">
        <xs:annotation>
          <xs:documentation>Peter Tavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL042">
        <xs:annotation>
          <xs:documentation>Sampford Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL043">
        <xs:annotation>
          <xs:documentation>Sampford Spiney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL044">
        <xs:annotation>
          <xs:documentation>Sheepstor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL045">
        <xs:annotation>
          <xs:documentation>Sourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL046">
        <xs:annotation>
          <xs:documentation>South Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL047">
        <xs:annotation>
          <xs:documentation>Spreyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL048">
        <xs:annotation>
          <xs:documentation>Sticklepath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL049">
        <xs:annotation>
          <xs:documentation>Stowford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL050">
        <xs:annotation>
          <xs:documentation>Sydenham Damerel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL051">
        <xs:annotation>
          <xs:documentation>Tavistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL052">
        <xs:annotation>
          <xs:documentation>Throwleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL053">
        <xs:annotation>
          <xs:documentation>Thrushelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL054">
        <xs:annotation>
          <xs:documentation>Walkhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL055">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL056">
        <xs:annotation>
          <xs:documentation>Lands common to Bridestowe and Sourton CP's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UC001">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UC002">
        <xs:annotation>
          <xs:documentation>Hurn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD001">
        <xs:annotation>
          <xs:documentation>Alderholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD002">
        <xs:annotation>
          <xs:documentation>Chalbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD003">
        <xs:annotation>
          <xs:documentation>Colehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD004">
        <xs:annotation>
          <xs:documentation>Corfe Mullen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD005">
        <xs:annotation>
          <xs:documentation>Cranborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD006">
        <xs:annotation>
          <xs:documentation>Edmondsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD007">
        <xs:annotation>
          <xs:documentation>Ferndown Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD008">
        <xs:annotation>
          <xs:documentation>Gussage All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD009">
        <xs:annotation>
          <xs:documentation>Gussage St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD010">
        <xs:annotation>
          <xs:documentation>Hinton Martell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD011">
        <xs:annotation>
          <xs:documentation>Hinton Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD012">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD013">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD014">
        <xs:annotation>
          <xs:documentation>Long Crichel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD015">
        <xs:annotation>
          <xs:documentation>Moor Crichel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD016">
        <xs:annotation>
          <xs:documentation>Pamphill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD017">
        <xs:annotation>
          <xs:documentation>Pentridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD018">
        <xs:annotation>
          <xs:documentation>St. Leonards and St. Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD019">
        <xs:annotation>
          <xs:documentation>Shapwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD020">
        <xs:annotation>
          <xs:documentation>Sixpenny Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD021">
        <xs:annotation>
          <xs:documentation>Sturminster Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD022">
        <xs:annotation>
          <xs:documentation>Verwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD023">
        <xs:annotation>
          <xs:documentation>West Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD024">
        <xs:annotation>
          <xs:documentation>West Parley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD025">
        <xs:annotation>
          <xs:documentation>Wimborne Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD026">
        <xs:annotation>
          <xs:documentation>Wimborne St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD027">
        <xs:annotation>
          <xs:documentation>Witchampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD028">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE001">
        <xs:annotation>
          <xs:documentation>Anderson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE002">
        <xs:annotation>
          <xs:documentation>Ashmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE003">
        <xs:annotation>
          <xs:documentation>Blandford Forum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE004">
        <xs:annotation>
          <xs:documentation>Blandford St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE005">
        <xs:annotation>
          <xs:documentation>Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE006">
        <xs:annotation>
          <xs:documentation>Bryanston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE007">
        <xs:annotation>
          <xs:documentation>Buckhorn Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE008">
        <xs:annotation>
          <xs:documentation>Cann</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE009">
        <xs:annotation>
          <xs:documentation>Charlton Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE010">
        <xs:annotation>
          <xs:documentation>Chettle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE011">
        <xs:annotation>
          <xs:documentation>Child Okeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE012">
        <xs:annotation>
          <xs:documentation>Compton Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE013">
        <xs:annotation>
          <xs:documentation>Durweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE014">
        <xs:annotation>
          <xs:documentation>East Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE015">
        <xs:annotation>
          <xs:documentation>East Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE016">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE017">
        <xs:annotation>
          <xs:documentation>Fifehead Magdalen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE018">
        <xs:annotation>
          <xs:documentation>Fifehead Neville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE019">
        <xs:annotation>
          <xs:documentation>Fontmell Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE020">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE021">
        <xs:annotation>
          <xs:documentation>Glanvilles Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE022">
        <xs:annotation>
          <xs:documentation>Hammoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE023">
        <xs:annotation>
          <xs:documentation>Hanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE024">
        <xs:annotation>
          <xs:documentation>Hazelbury Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE025">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE026">
        <xs:annotation>
          <xs:documentation>Hinton St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE027">
        <xs:annotation>
          <xs:documentation>Ibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE028">
        <xs:annotation>
          <xs:documentation>Iwerne Courtney or Shroton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE029">
        <xs:annotation>
          <xs:documentation>Iwerne Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE030">
        <xs:annotation>
          <xs:documentation>Iwerne Stepleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE031">
        <xs:annotation>
          <xs:documentation>Kington Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE032">
        <xs:annotation>
          <xs:documentation>Langton Long Blandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE033">
        <xs:annotation>
          <xs:documentation>Lydlinch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE034">
        <xs:annotation>
          <xs:documentation>Manston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE035">
        <xs:annotation>
          <xs:documentation>Mappowder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE036">
        <xs:annotation>
          <xs:documentation>Margaret Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE037">
        <xs:annotation>
          <xs:documentation>Marnhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE038">
        <xs:annotation>
          <xs:documentation>Melbury Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE039">
        <xs:annotation>
          <xs:documentation>Milborne St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE040">
        <xs:annotation>
          <xs:documentation>Milton Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE041">
        <xs:annotation>
          <xs:documentation>Motcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE042">
        <xs:annotation>
          <xs:documentation>Okeford Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE043">
        <xs:annotation>
          <xs:documentation>Pimperne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE044">
        <xs:annotation>
          <xs:documentation>Pulham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE045">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE046">
        <xs:annotation>
          <xs:documentation>Shillingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE047">
        <xs:annotation>
          <xs:documentation>Silton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE048">
        <xs:annotation>
          <xs:documentation>Spetisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE049">
        <xs:annotation>
          <xs:documentation>Stalbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE050">
        <xs:annotation>
          <xs:documentation>Stoke Wake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE051">
        <xs:annotation>
          <xs:documentation>Stourpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE052">
        <xs:annotation>
          <xs:documentation>Stour Provost</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE053">
        <xs:annotation>
          <xs:documentation>Stourton Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE054">
        <xs:annotation>
          <xs:documentation>Sturminster Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE055">
        <xs:annotation>
          <xs:documentation>Sutton Waldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE056">
        <xs:annotation>
          <xs:documentation>Tarrant Crawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE057">
        <xs:annotation>
          <xs:documentation>Tarrant Gunville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE058">
        <xs:annotation>
          <xs:documentation>Tarrant Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE059">
        <xs:annotation>
          <xs:documentation>Tarrant Keyneston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE060">
        <xs:annotation>
          <xs:documentation>Tarrant Launceston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE061">
        <xs:annotation>
          <xs:documentation>Tarrant Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE062">
        <xs:annotation>
          <xs:documentation>Tarrant Rawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE063">
        <xs:annotation>
          <xs:documentation>Tarrant Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE064">
        <xs:annotation>
          <xs:documentation>Todber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE065">
        <xs:annotation>
          <xs:documentation>Turnworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE066">
        <xs:annotation>
          <xs:documentation>West Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE067">
        <xs:annotation>
          <xs:documentation>West Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE068">
        <xs:annotation>
          <xs:documentation>Winterborne Clenston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE069">
        <xs:annotation>
          <xs:documentation>Winterborne Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE070">
        <xs:annotation>
          <xs:documentation>Winterborne Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE071">
        <xs:annotation>
          <xs:documentation>Winterborne Stickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE072">
        <xs:annotation>
          <xs:documentation>Winterborne Whitechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE073">
        <xs:annotation>
          <xs:documentation>Winterborne Zelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE074">
        <xs:annotation>
          <xs:documentation>Woolland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG001">
        <xs:annotation>
          <xs:documentation>Affpuddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG002">
        <xs:annotation>
          <xs:documentation>Arne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG003">
        <xs:annotation>
          <xs:documentation>Bere Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG004">
        <xs:annotation>
          <xs:documentation>Bloxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG005">
        <xs:annotation>
          <xs:documentation>Chaldon Herring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG006">
        <xs:annotation>
          <xs:documentation>Church Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG007">
        <xs:annotation>
          <xs:documentation>Coombe Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG008">
        <xs:annotation>
          <xs:documentation>Corfe Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG009">
        <xs:annotation>
          <xs:documentation>East Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG010">
        <xs:annotation>
          <xs:documentation>East Lulworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG011">
        <xs:annotation>
          <xs:documentation>East Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG012">
        <xs:annotation>
          <xs:documentation>Kimmeridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG013">
        <xs:annotation>
          <xs:documentation>Langton Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG014">
        <xs:annotation>
          <xs:documentation>Lytchett Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG015">
        <xs:annotation>
          <xs:documentation>Lytchett Minster and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG016">
        <xs:annotation>
          <xs:documentation>Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG017">
        <xs:annotation>
          <xs:documentation>Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG018">
        <xs:annotation>
          <xs:documentation>Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG019">
        <xs:annotation>
          <xs:documentation>Studland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG020">
        <xs:annotation>
          <xs:documentation>Swanage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG021">
        <xs:annotation>
          <xs:documentation>Turners Puddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG022">
        <xs:annotation>
          <xs:documentation>Tyneham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG023">
        <xs:annotation>
          <xs:documentation>Wareham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG024">
        <xs:annotation>
          <xs:documentation>Wareham St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG025">
        <xs:annotation>
          <xs:documentation>West Lulworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG026">
        <xs:annotation>
          <xs:documentation>Winfrith Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG027">
        <xs:annotation>
          <xs:documentation>Wool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG028">
        <xs:annotation>
          <xs:documentation>Worth Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH001">
        <xs:annotation>
          <xs:documentation>Abbotsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH002">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH003">
        <xs:annotation>
          <xs:documentation>Alton Pancras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH004">
        <xs:annotation>
          <xs:documentation>Askerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH005">
        <xs:annotation>
          <xs:documentation>Athelhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH006">
        <xs:annotation>
          <xs:documentation>Batcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH007">
        <xs:annotation>
          <xs:documentation>Beaminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH008">
        <xs:annotation>
          <xs:documentation>Beer Hackett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH009">
        <xs:annotation>
          <xs:documentation>Bettiscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH010">
        <xs:annotation>
          <xs:documentation>Bincombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH011">
        <xs:annotation>
          <xs:documentation>Bishop's Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH012">
        <xs:annotation>
          <xs:documentation>Bothenhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH013">
        <xs:annotation>
          <xs:documentation>Bradford Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH014">
        <xs:annotation>
          <xs:documentation>Bradford Peverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH015">
        <xs:annotation>
          <xs:documentation>Bradpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH016">
        <xs:annotation>
          <xs:documentation>Bridport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH017">
        <xs:annotation>
          <xs:documentation>Broadmayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH018">
        <xs:annotation>
          <xs:documentation>Broadwindsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH019">
        <xs:annotation>
          <xs:documentation>Buckland Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH020">
        <xs:annotation>
          <xs:documentation>Burleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH021">
        <xs:annotation>
          <xs:documentation>Burstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH022">
        <xs:annotation>
          <xs:documentation>Burton Bradstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH023">
        <xs:annotation>
          <xs:documentation>Castleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH024">
        <xs:annotation>
          <xs:documentation>Catherston Leweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH025">
        <xs:annotation>
          <xs:documentation>Cattistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH026">
        <xs:annotation>
          <xs:documentation>Caundle Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH027">
        <xs:annotation>
          <xs:documentation>Cerne Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH028">
        <xs:annotation>
          <xs:documentation>Charminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH029">
        <xs:annotation>
          <xs:documentation>Charmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH030">
        <xs:annotation>
          <xs:documentation>Chedington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH031">
        <xs:annotation>
          <xs:documentation>Cheselbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH032">
        <xs:annotation>
          <xs:documentation>Chetnole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH033">
        <xs:annotation>
          <xs:documentation>Chickerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH034">
        <xs:annotation>
          <xs:documentation>Chideock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH035">
        <xs:annotation>
          <xs:documentation>Chilcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH036">
        <xs:annotation>
          <xs:documentation>Chilfrome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH037">
        <xs:annotation>
          <xs:documentation>Clifton Maybank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH038">
        <xs:annotation>
          <xs:documentation>Compton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH039">
        <xs:annotation>
          <xs:documentation>Corscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH040">
        <xs:annotation>
          <xs:documentation>Crossways</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH041">
        <xs:annotation>
          <xs:documentation>Dewlish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH042">
        <xs:annotation>
          <xs:documentation>Dorchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH043">
        <xs:annotation>
          <xs:documentation>East Chelborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH044">
        <xs:annotation>
          <xs:documentation>Evershot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH045">
        <xs:annotation>
          <xs:documentation>Fleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH046">
        <xs:annotation>
          <xs:documentation>Folke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH047">
        <xs:annotation>
          <xs:documentation>Frampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH048">
        <xs:annotation>
          <xs:documentation>Frome St. Quintin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH049">
        <xs:annotation>
          <xs:documentation>Frome Vauchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH050">
        <xs:annotation>
          <xs:documentation>Goathill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH051">
        <xs:annotation>
          <xs:documentation>Godmanstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH052">
        <xs:annotation>
          <xs:documentation>Halstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH053">
        <xs:annotation>
          <xs:documentation>Haydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH054">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH055">
        <xs:annotation>
          <xs:documentation>Hilfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH056">
        <xs:annotation>
          <xs:documentation>Holnest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH057">
        <xs:annotation>
          <xs:documentation>Holwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH058">
        <xs:annotation>
          <xs:documentation>Hooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH059">
        <xs:annotation>
          <xs:documentation>Kingston Russell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH060">
        <xs:annotation>
          <xs:documentation>Langton Herring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH061">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH062">
        <xs:annotation>
          <xs:documentation>Leweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH063">
        <xs:annotation>
          <xs:documentation>Lillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH064">
        <xs:annotation>
          <xs:documentation>Littlebredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH065">
        <xs:annotation>
          <xs:documentation>Litton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH066">
        <xs:annotation>
          <xs:documentation>Loders</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH067">
        <xs:annotation>
          <xs:documentation>Long Bredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH068">
        <xs:annotation>
          <xs:documentation>Longburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH069">
        <xs:annotation>
          <xs:documentation>Lyme Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH070">
        <xs:annotation>
          <xs:documentation>Maiden Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH071">
        <xs:annotation>
          <xs:documentation>Mapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH072">
        <xs:annotation>
          <xs:documentation>Marshwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH073">
        <xs:annotation>
          <xs:documentation>Melbury Bubb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH074">
        <xs:annotation>
          <xs:documentation>Melbury Osmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH075">
        <xs:annotation>
          <xs:documentation>Melbury Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH076">
        <xs:annotation>
          <xs:documentation>Melcombe Horsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH077">
        <xs:annotation>
          <xs:documentation>Minterne Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH078">
        <xs:annotation>
          <xs:documentation>Mosterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH079">
        <xs:annotation>
          <xs:documentation>Netherbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH080">
        <xs:annotation>
          <xs:documentation>Nether Cerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH081">
        <xs:annotation>
          <xs:documentation>Nether Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH082">
        <xs:annotation>
          <xs:documentation>North Poorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH083">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH084">
        <xs:annotation>
          <xs:documentation>Oborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH085">
        <xs:annotation>
          <xs:documentation>Osmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH086">
        <xs:annotation>
          <xs:documentation>Over Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH087">
        <xs:annotation>
          <xs:documentation>Owermoigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH088">
        <xs:annotation>
          <xs:documentation>Piddlehinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH089">
        <xs:annotation>
          <xs:documentation>Piddletrenthide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH090">
        <xs:annotation>
          <xs:documentation>Pilsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH091">
        <xs:annotation>
          <xs:documentation>Portesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH092">
        <xs:annotation>
          <xs:documentation>Powerstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH093">
        <xs:annotation>
          <xs:documentation>Poxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH094">
        <xs:annotation>
          <xs:documentation>Poyntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH095">
        <xs:annotation>
          <xs:documentation>Puddletown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH096">
        <xs:annotation>
          <xs:documentation>Puncknowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH097">
        <xs:annotation>
          <xs:documentation>Purse Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH098">
        <xs:annotation>
          <xs:documentation>Rampisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH099">
        <xs:annotation>
          <xs:documentation>Ryme Intrinseca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH100">
        <xs:annotation>
          <xs:documentation>Sandford Orcas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH101">
        <xs:annotation>
          <xs:documentation>Seaborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH102">
        <xs:annotation>
          <xs:documentation>Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH103">
        <xs:annotation>
          <xs:documentation>Shipton Gorge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH104">
        <xs:annotation>
          <xs:documentation>South Perrott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH105">
        <xs:annotation>
          <xs:documentation>Stanton St. Gabriel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH106">
        <xs:annotation>
          <xs:documentation>Stinsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH107">
        <xs:annotation>
          <xs:documentation>Stockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH108">
        <xs:annotation>
          <xs:documentation>Stoke Abbott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH109">
        <xs:annotation>
          <xs:documentation>Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH110">
        <xs:annotation>
          <xs:documentation>Swyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH111">
        <xs:annotation>
          <xs:documentation>Sydling St. Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH112">
        <xs:annotation>
          <xs:documentation>Symondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH113">
        <xs:annotation>
          <xs:documentation>Thorncombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH114">
        <xs:annotation>
          <xs:documentation>Thornford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH115">
        <xs:annotation>
          <xs:documentation>Tincleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH116">
        <xs:annotation>
          <xs:documentation>Toller Fratrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH117">
        <xs:annotation>
          <xs:documentation>Toller Porcorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH118">
        <xs:annotation>
          <xs:documentation>Tolpuddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH119">
        <xs:annotation>
          <xs:documentation>Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH120">
        <xs:annotation>
          <xs:documentation>Up Cerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH121">
        <xs:annotation>
          <xs:documentation>Warmwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH122">
        <xs:annotation>
          <xs:documentation>West Chelborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH123">
        <xs:annotation>
          <xs:documentation>West Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH124">
        <xs:annotation>
          <xs:documentation>West Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH125">
        <xs:annotation>
          <xs:documentation>West Stafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH126">
        <xs:annotation>
          <xs:documentation>Whitcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH127">
        <xs:annotation>
          <xs:documentation>Whitechurch Canonicorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH128">
        <xs:annotation>
          <xs:documentation>Winterborne Came</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH129">
        <xs:annotation>
          <xs:documentation>Winterborne Herringston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH130">
        <xs:annotation>
          <xs:documentation>Winterborne Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH131">
        <xs:annotation>
          <xs:documentation>Winterborne St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH132">
        <xs:annotation>
          <xs:documentation>Winterbourne Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH133">
        <xs:annotation>
          <xs:documentation>Winterbourne Steepleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH134">
        <xs:annotation>
          <xs:documentation>Woodsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH135">
        <xs:annotation>
          <xs:documentation>Wootton Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH136">
        <xs:annotation>
          <xs:documentation>Wraxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH137">
        <xs:annotation>
          <xs:documentation>Wynford Eagle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH138">
        <xs:annotation>
          <xs:documentation>Yetminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJ001">
        <xs:annotation>
          <xs:documentation>Portland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB001">
        <xs:annotation>
          <xs:documentation>Bournmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB002">
        <xs:annotation>
          <xs:documentation>Edmondsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB003">
        <xs:annotation>
          <xs:documentation>Great Lumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB004">
        <xs:annotation>
          <xs:documentation>Kimblesworth and Plawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB005">
        <xs:annotation>
          <xs:documentation>Little Lumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB006">
        <xs:annotation>
          <xs:documentation>North Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB007">
        <xs:annotation>
          <xs:documentation>Ouston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB008">
        <xs:annotation>
          <xs:documentation>Pelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB009">
        <xs:annotation>
          <xs:documentation>Sacriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB010">
        <xs:annotation>
          <xs:documentation>Urpeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB011">
        <xs:annotation>
          <xs:documentation>Waldridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD001">
        <xs:annotation>
          <xs:documentation>Cornsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD002">
        <xs:annotation>
          <xs:documentation>Esh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD003">
        <xs:annotation>
          <xs:documentation>Greencroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD004">
        <xs:annotation>
          <xs:documentation>Healeyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD005">
        <xs:annotation>
          <xs:documentation>Hedleyhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD006">
        <xs:annotation>
          <xs:documentation>Lanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD008">
        <xs:annotation>
          <xs:documentation>Muggleswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD009">
        <xs:annotation>
          <xs:documentation>Satley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD010">
        <xs:annotation>
          <xs:documentation>Burnhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE001">
        <xs:annotation>
          <xs:documentation>Bearpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE002">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE003">
        <xs:annotation>
          <xs:documentation>Brancepeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE004">
        <xs:annotation>
          <xs:documentation>Brandon and Byshottles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE005">
        <xs:annotation>
          <xs:documentation>Cassop-cum-Quarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE006">
        <xs:annotation>
          <xs:documentation>Coxhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE007">
        <xs:annotation>
          <xs:documentation>Croxdale and Hett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE008">
        <xs:annotation>
          <xs:documentation>Framwellgate Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE009">
        <xs:annotation>
          <xs:documentation>Kelloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE010">
        <xs:annotation>
          <xs:documentation>Pittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE011">
        <xs:annotation>
          <xs:documentation>Shadforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE012">
        <xs:annotation>
          <xs:documentation>Sherburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE013">
        <xs:annotation>
          <xs:documentation>Shincliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE014">
        <xs:annotation>
          <xs:documentation>West Rainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE015">
        <xs:annotation>
          <xs:documentation>Witton Gilbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE016">
        <xs:annotation>
          <xs:documentation>Lands Common to Brancepeth and Brandon and Byshottles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF001">
        <xs:annotation>
          <xs:documentation>Castle Eden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF002">
        <xs:annotation>
          <xs:documentation>Dalton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF003">
        <xs:annotation>
          <xs:documentation>Easington Colliery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF004">
        <xs:annotation>
          <xs:documentation>Easington Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF005">
        <xs:annotation>
          <xs:documentation>Haswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF006">
        <xs:annotation>
          <xs:documentation>Hawthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF007">
        <xs:annotation>
          <xs:documentation>Horden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF008">
        <xs:annotation>
          <xs:documentation>Hutton Henry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF009">
        <xs:annotation>
          <xs:documentation>Monk Hesleden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF010">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF011">
        <xs:annotation>
          <xs:documentation>Nesbitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF012">
        <xs:annotation>
          <xs:documentation>Peterlee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF013">
        <xs:annotation>
          <xs:documentation>Seaham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF014">
        <xs:annotation>
          <xs:documentation>Seaton with Slingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF015">
        <xs:annotation>
          <xs:documentation>Sheraton with Hulam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF016">
        <xs:annotation>
          <xs:documentation>Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF017">
        <xs:annotation>
          <xs:documentation>Thornley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF018">
        <xs:annotation>
          <xs:documentation>Trimdon Foundry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF019">
        <xs:annotation>
          <xs:documentation>Wheatley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF020">
        <xs:annotation>
          <xs:documentation>Wingate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF021">
        <xs:annotation>
          <xs:documentation>South Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG001">
        <xs:annotation>
          <xs:documentation>Bishop Middleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG002">
        <xs:annotation>
          <xs:documentation>Bradbury and the Isle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG003">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG004">
        <xs:annotation>
          <xs:documentation>Cornforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG005">
        <xs:annotation>
          <xs:documentation>Ferryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG006">
        <xs:annotation>
          <xs:documentation>Fishburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG007">
        <xs:annotation>
          <xs:documentation>Great Aycliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG008">
        <xs:annotation>
          <xs:documentation>Middridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG009">
        <xs:annotation>
          <xs:documentation>Mordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG010">
        <xs:annotation>
          <xs:documentation>Sedgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG011">
        <xs:annotation>
          <xs:documentation>Shildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG012">
        <xs:annotation>
          <xs:documentation>Spennymoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG013">
        <xs:annotation>
          <xs:documentation>Trimdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG014">
        <xs:annotation>
          <xs:documentation>Windlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG015">
        <xs:annotation>
          <xs:documentation>Eldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH001">
        <xs:annotation>
          <xs:documentation>Barforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH002">
        <xs:annotation>
          <xs:documentation>Barnard Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH003">
        <xs:annotation>
          <xs:documentation>Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH004">
        <xs:annotation>
          <xs:documentation>Bolam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH005">
        <xs:annotation>
          <xs:documentation>Boldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH006">
        <xs:annotation>
          <xs:documentation>Bowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH007">
        <xs:annotation>
          <xs:documentation>Brignall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH008">
        <xs:annotation>
          <xs:documentation>Cleatlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH009">
        <xs:annotation>
          <xs:documentation>Cockfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH010">
        <xs:annotation>
          <xs:documentation>Cotherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH011">
        <xs:annotation>
          <xs:documentation>Eggleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH012">
        <xs:annotation>
          <xs:documentation>Egglestone Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH013">
        <xs:annotation>
          <xs:documentation>Etherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH014">
        <xs:annotation>
          <xs:documentation>Evenwood and Barony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH015">
        <xs:annotation>
          <xs:documentation>Forest and Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH016">
        <xs:annotation>
          <xs:documentation>Gainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH017">
        <xs:annotation>
          <xs:documentation>Gilmonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH018">
        <xs:annotation>
          <xs:documentation>Hamsterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH019">
        <xs:annotation>
          <xs:documentation>Headlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH020">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH021">
        <xs:annotation>
          <xs:documentation>Holwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH022">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH023">
        <xs:annotation>
          <xs:documentation>Hunderthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH024">
        <xs:annotation>
          <xs:documentation>Hutton Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH025">
        <xs:annotation>
          <xs:documentation>Ingleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH026">
        <xs:annotation>
          <xs:documentation>Langleydale and Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH027">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH028">
        <xs:annotation>
          <xs:documentation>Lartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH029">
        <xs:annotation>
          <xs:documentation>Lunedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH030">
        <xs:annotation>
          <xs:documentation>Lynesack and Softley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH031">
        <xs:annotation>
          <xs:documentation>Marwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH032">
        <xs:annotation>
          <xs:documentation>Mickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH033">
        <xs:annotation>
          <xs:documentation>Middleton in Teesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH034">
        <xs:annotation>
          <xs:documentation>Morton Tinmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH035">
        <xs:annotation>
          <xs:documentation>Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH036">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH037">
        <xs:annotation>
          <xs:documentation>Raby with Keverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH038">
        <xs:annotation>
          <xs:documentation>Rokeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH039">
        <xs:annotation>
          <xs:documentation>Romaldkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH040">
        <xs:annotation>
          <xs:documentation>Scargill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH041">
        <xs:annotation>
          <xs:documentation>South Bedburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH042">
        <xs:annotation>
          <xs:documentation>Staindrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH043">
        <xs:annotation>
          <xs:documentation>Startforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH044">
        <xs:annotation>
          <xs:documentation>Streatlam and Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH045">
        <xs:annotation>
          <xs:documentation>Wackerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH046">
        <xs:annotation>
          <xs:documentation>Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH047">
        <xs:annotation>
          <xs:documentation>Whorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH048">
        <xs:annotation>
          <xs:documentation>Winston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH049">
        <xs:annotation>
          <xs:documentation>Woodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH050">
        <xs:annotation>
          <xs:documentation>Wycliffe with Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH051">
        <xs:annotation>
          <xs:documentation>Lands common to Hamsterley, Lynesack and Softley and South Bedburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ001">
        <xs:annotation>
          <xs:documentation>Edmondbyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ002">
        <xs:annotation>
          <xs:documentation>Hunstanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ003">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ004">
        <xs:annotation>
          <xs:documentation>Tow Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ005">
        <xs:annotation>
          <xs:documentation>Wolsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ006">
        <xs:annotation>
          <xs:documentation>Wolsingham Park Moor lands cmn to Stanhope, Tow Law and Wolsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ007">
        <xs:annotation>
          <xs:documentation>Dene Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ008">
        <xs:annotation>
          <xs:documentation>Witton-le-Wear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ009">
        <xs:annotation>
          <xs:documentation>West Auckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF001">
        <xs:annotation>
          <xs:documentation>Barcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF002">
        <xs:annotation>
          <xs:documentation>Beddingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF003">
        <xs:annotation>
          <xs:documentation>Chailey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF004">
        <xs:annotation>
          <xs:documentation>Ditchling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF005">
        <xs:annotation>
          <xs:documentation>East Chiltington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF006">
        <xs:annotation>
          <xs:documentation>Falmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF007">
        <xs:annotation>
          <xs:documentation>Firle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF008">
        <xs:annotation>
          <xs:documentation>Glynde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF009">
        <xs:annotation>
          <xs:documentation>Hamsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF010">
        <xs:annotation>
          <xs:documentation>Iford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF011">
        <xs:annotation>
          <xs:documentation>Kingston near Lewes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF012">
        <xs:annotation>
          <xs:documentation>Lewes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF013">
        <xs:annotation>
          <xs:documentation>Newhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF014">
        <xs:annotation>
          <xs:documentation>Newick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF015">
        <xs:annotation>
          <xs:documentation>Peacehaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF016">
        <xs:annotation>
          <xs:documentation>Piddinghoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF017">
        <xs:annotation>
          <xs:documentation>Plumpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF018">
        <xs:annotation>
          <xs:documentation>Ringmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF019">
        <xs:annotation>
          <xs:documentation>Rodmell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF020">
        <xs:annotation>
          <xs:documentation>St. Ann (Without)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF021">
        <xs:annotation>
          <xs:documentation>St. John (Without)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF022">
        <xs:annotation>
          <xs:documentation>Southease</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF023">
        <xs:annotation>
          <xs:documentation>South Heighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF025">
        <xs:annotation>
          <xs:documentation>Streat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF026">
        <xs:annotation>
          <xs:documentation>Tarring Neville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF027">
        <xs:annotation>
          <xs:documentation>Telscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF028">
        <xs:annotation>
          <xs:documentation>Westmeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF029">
        <xs:annotation>
          <xs:documentation>Wivelsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF030">
        <xs:annotation>
          <xs:documentation>Seaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG001">
        <xs:annotation>
          <xs:documentation>Ashburnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG002">
        <xs:annotation>
          <xs:documentation>Battle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG003">
        <xs:annotation>
          <xs:documentation>Beckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG004">
        <xs:annotation>
          <xs:documentation>Bodiam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG005">
        <xs:annotation>
          <xs:documentation>Brede</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG006">
        <xs:annotation>
          <xs:documentation>Brightling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG007">
        <xs:annotation>
          <xs:documentation>Burwash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG008">
        <xs:annotation>
          <xs:documentation>Camber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG009">
        <xs:annotation>
          <xs:documentation>Catsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG010">
        <xs:annotation>
          <xs:documentation>Crowhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG011">
        <xs:annotation>
          <xs:documentation>Dallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG012">
        <xs:annotation>
          <xs:documentation>East Guldeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG013">
        <xs:annotation>
          <xs:documentation>Etchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG014">
        <xs:annotation>
          <xs:documentation>Ewhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG015">
        <xs:annotation>
          <xs:documentation>Fairlight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG016">
        <xs:annotation>
          <xs:documentation>Guestling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG017">
        <xs:annotation>
          <xs:documentation>Hurst Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG018">
        <xs:annotation>
          <xs:documentation>Icklesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG019">
        <xs:annotation>
          <xs:documentation>Iden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG020">
        <xs:annotation>
          <xs:documentation>Mountfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG021">
        <xs:annotation>
          <xs:documentation>Northiam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG022">
        <xs:annotation>
          <xs:documentation>Peasmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG023">
        <xs:annotation>
          <xs:documentation>Penhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG024">
        <xs:annotation>
          <xs:documentation>Pett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG025">
        <xs:annotation>
          <xs:documentation>Playden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG026">
        <xs:annotation>
          <xs:documentation>Rye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG027">
        <xs:annotation>
          <xs:documentation>Rye Foreign</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG028">
        <xs:annotation>
          <xs:documentation>Salehurst and Robertsbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG029">
        <xs:annotation>
          <xs:documentation>Sedlescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG030">
        <xs:annotation>
          <xs:documentation>Ticehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG031">
        <xs:annotation>
          <xs:documentation>Udimore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG032">
        <xs:annotation>
          <xs:documentation>Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG033">
        <xs:annotation>
          <xs:documentation>Whatlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH001">
        <xs:annotation>
          <xs:documentation>Alciston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH002">
        <xs:annotation>
          <xs:documentation>Alfriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH003">
        <xs:annotation>
          <xs:documentation>Arlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH004">
        <xs:annotation>
          <xs:documentation>Berwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH005">
        <xs:annotation>
          <xs:documentation>Buxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH006">
        <xs:annotation>
          <xs:documentation>Chalvington with Ripe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH007">
        <xs:annotation>
          <xs:documentation>Chiddingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH008">
        <xs:annotation>
          <xs:documentation>Crowborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH009">
        <xs:annotation>
          <xs:documentation>Cuckmere Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH010">
        <xs:annotation>
          <xs:documentation>Danehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH011">
        <xs:annotation>
          <xs:documentation>East Dean and Friston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH012">
        <xs:annotation>
          <xs:documentation>East Hoathly with Halland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH013">
        <xs:annotation>
          <xs:documentation>Fletching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH014">
        <xs:annotation>
          <xs:documentation>Forest Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH015">
        <xs:annotation>
          <xs:documentation>Framfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH016">
        <xs:annotation>
          <xs:documentation>Frant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH017">
        <xs:annotation>
          <xs:documentation>Hadlow Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH018">
        <xs:annotation>
          <xs:documentation>Hailsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH019">
        <xs:annotation>
          <xs:documentation>Hartfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH020">
        <xs:annotation>
          <xs:documentation>Heathfield and Waldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH021">
        <xs:annotation>
          <xs:documentation>Hellingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH022">
        <xs:annotation>
          <xs:documentation>Herstmonceux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH023">
        <xs:annotation>
          <xs:documentation>Hooe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH024">
        <xs:annotation>
          <xs:documentation>Horam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH025">
        <xs:annotation>
          <xs:documentation>Isfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH026">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH027">
        <xs:annotation>
          <xs:documentation>Little Horsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH028">
        <xs:annotation>
          <xs:documentation>Long Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH029">
        <xs:annotation>
          <xs:documentation>Maresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH030">
        <xs:annotation>
          <xs:documentation>Mayfield and Five Ashes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH031">
        <xs:annotation>
          <xs:documentation>Ninfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH032">
        <xs:annotation>
          <xs:documentation>Pevensey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH033">
        <xs:annotation>
          <xs:documentation>Polegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH034">
        <xs:annotation>
          <xs:documentation>Rotherfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH035">
        <xs:annotation>
          <xs:documentation>Selmeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH036">
        <xs:annotation>
          <xs:documentation>Uckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH037">
        <xs:annotation>
          <xs:documentation>Wadhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH038">
        <xs:annotation>
          <xs:documentation>Warbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH039">
        <xs:annotation>
          <xs:documentation>Wartling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH040">
        <xs:annotation>
          <xs:documentation>Westham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH041">
        <xs:annotation>
          <xs:documentation>Willingdon and Jevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH042">
        <xs:annotation>
          <xs:documentation>Withyham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB001">
        <xs:annotation>
          <xs:documentation>Billericay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB002">
        <xs:annotation>
          <xs:documentation>Great Burstead and South Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB003">
        <xs:annotation>
          <xs:documentation>Little Burstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB004">
        <xs:annotation>
          <xs:documentation>Ramsden Bellhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB005">
        <xs:annotation>
          <xs:documentation>Ramsden Crays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB006">
        <xs:annotation>
          <xs:documentation>Noak Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC001">
        <xs:annotation>
          <xs:documentation>Alphamstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC002">
        <xs:annotation>
          <xs:documentation>Ashen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC003">
        <xs:annotation>
          <xs:documentation>Bardfield Saling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC004">
        <xs:annotation>
          <xs:documentation>Belchamp Otten</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC005">
        <xs:annotation>
          <xs:documentation>Belchamp St. Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC006">
        <xs:annotation>
          <xs:documentation>Belchamp Walter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC007">
        <xs:annotation>
          <xs:documentation>Birdbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC008">
        <xs:annotation>
          <xs:documentation>Black Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC009">
        <xs:annotation>
          <xs:documentation>Borley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC010">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC011">
        <xs:annotation>
          <xs:documentation>Bulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC012">
        <xs:annotation>
          <xs:documentation>Bures Hamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC013">
        <xs:annotation>
          <xs:documentation>Castle Hedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC014">
        <xs:annotation>
          <xs:documentation>Coggeshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC015">
        <xs:annotation>
          <xs:documentation>Colne Engaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC016">
        <xs:annotation>
          <xs:documentation>Cressing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC017">
        <xs:annotation>
          <xs:documentation>Earls Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC018">
        <xs:annotation>
          <xs:documentation>Fairstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC019">
        <xs:annotation>
          <xs:documentation>Faulkbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC020">
        <xs:annotation>
          <xs:documentation>Feering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC021">
        <xs:annotation>
          <xs:documentation>Finchingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC022">
        <xs:annotation>
          <xs:documentation>Foxearth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC023">
        <xs:annotation>
          <xs:documentation>Gestingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC024">
        <xs:annotation>
          <xs:documentation>Gosfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC025">
        <xs:annotation>
          <xs:documentation>Great Bardfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC026">
        <xs:annotation>
          <xs:documentation>Great Henny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC027">
        <xs:annotation>
          <xs:documentation>Great Maplestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC028">
        <xs:annotation>
          <xs:documentation>Great Saling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC029">
        <xs:annotation>
          <xs:documentation>Great Yeldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC030">
        <xs:annotation>
          <xs:documentation>Greenstead Green and Halstead Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC031">
        <xs:annotation>
          <xs:documentation>Halstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC032">
        <xs:annotation>
          <xs:documentation>Hatfield Peverel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC033">
        <xs:annotation>
          <xs:documentation>Helions Bumpstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC034">
        <xs:annotation>
          <xs:documentation>Kelvedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC035">
        <xs:annotation>
          <xs:documentation>Lamarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC036">
        <xs:annotation>
          <xs:documentation>Liston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC037">
        <xs:annotation>
          <xs:documentation>Little Henny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC038">
        <xs:annotation>
          <xs:documentation>Little Maplestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC039">
        <xs:annotation>
          <xs:documentation>Little Yeldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC040">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC041">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC042">
        <xs:annotation>
          <xs:documentation>Panfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC043">
        <xs:annotation>
          <xs:documentation>Pebmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC044">
        <xs:annotation>
          <xs:documentation>Pentlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC045">
        <xs:annotation>
          <xs:documentation>Rayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC046">
        <xs:annotation>
          <xs:documentation>Ridgewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC047">
        <xs:annotation>
          <xs:documentation>Rivenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC048">
        <xs:annotation>
          <xs:documentation>Shalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC049">
        <xs:annotation>
          <xs:documentation>Sible Hedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC050">
        <xs:annotation>
          <xs:documentation>Silver End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC051">
        <xs:annotation>
          <xs:documentation>Stambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC052">
        <xs:annotation>
          <xs:documentation>Steeple Bumpstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC053">
        <xs:annotation>
          <xs:documentation>Stisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC054">
        <xs:annotation>
          <xs:documentation>Sturmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC055">
        <xs:annotation>
          <xs:documentation>Terling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC056">
        <xs:annotation>
          <xs:documentation>Tilbury Juxta Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC057">
        <xs:annotation>
          <xs:documentation>Toppesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC058">
        <xs:annotation>
          <xs:documentation>Twinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC059">
        <xs:annotation>
          <xs:documentation>Wethersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC060">
        <xs:annotation>
          <xs:documentation>White Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC061">
        <xs:annotation>
          <xs:documentation>White Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC062">
        <xs:annotation>
          <xs:documentation>Wickham St. Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC063">
        <xs:annotation>
          <xs:documentation>Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC064">
        <xs:annotation>
          <xs:documentation>Great Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD001">
        <xs:annotation>
          <xs:documentation>Blackmore, Hook End and Wyatts Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD002">
        <xs:annotation>
          <xs:documentation>Doddinghurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD003">
        <xs:annotation>
          <xs:documentation>Ingatestone and Fryerning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD004">
        <xs:annotation>
          <xs:documentation>Kelvedon Hatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD005">
        <xs:annotation>
          <xs:documentation>Mountnessing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD006">
        <xs:annotation>
          <xs:documentation>Navestock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD007">
        <xs:annotation>
          <xs:documentation>Stondon Massey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD008">
        <xs:annotation>
          <xs:documentation>Herongate and Ingrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD009">
        <xs:annotation>
          <xs:documentation>West Horndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF001">
        <xs:annotation>
          <xs:documentation>Boreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF002">
        <xs:annotation>
          <xs:documentation>Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF003">
        <xs:annotation>
          <xs:documentation>Chignall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF004">
        <xs:annotation>
          <xs:documentation>Danbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF005">
        <xs:annotation>
          <xs:documentation>East Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF006">
        <xs:annotation>
          <xs:documentation>Galleywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF007">
        <xs:annotation>
          <xs:documentation>Good Easter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF008">
        <xs:annotation>
          <xs:documentation>Great and Little Leighs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF009">
        <xs:annotation>
          <xs:documentation>Great Baddow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF010">
        <xs:annotation>
          <xs:documentation>Great Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF011">
        <xs:annotation>
          <xs:documentation>Highwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF012">
        <xs:annotation>
          <xs:documentation>Little Baddow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF013">
        <xs:annotation>
          <xs:documentation>Little Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF014">
        <xs:annotation>
          <xs:documentation>Margaretting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF015">
        <xs:annotation>
          <xs:documentation>Mashbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF016">
        <xs:annotation>
          <xs:documentation>Pleshey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF017">
        <xs:annotation>
          <xs:documentation>Rettendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF018">
        <xs:annotation>
          <xs:documentation>Roxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF019">
        <xs:annotation>
          <xs:documentation>Runwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF020">
        <xs:annotation>
          <xs:documentation>Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF021">
        <xs:annotation>
          <xs:documentation>South Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF022">
        <xs:annotation>
          <xs:documentation>South Woodham Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF023">
        <xs:annotation>
          <xs:documentation>Springfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF024">
        <xs:annotation>
          <xs:documentation>Stock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF025">
        <xs:annotation>
          <xs:documentation>West Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF026">
        <xs:annotation>
          <xs:documentation>Woodham Ferrers and Bicknacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF027">
        <xs:annotation>
          <xs:documentation>Writtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG001">
        <xs:annotation>
          <xs:documentation>Abberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG002">
        <xs:annotation>
          <xs:documentation>Aldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG003">
        <xs:annotation>
          <xs:documentation>Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG004">
        <xs:annotation>
          <xs:documentation>Boxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG005">
        <xs:annotation>
          <xs:documentation>Chappel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG006">
        <xs:annotation>
          <xs:documentation>Copford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG007">
        <xs:annotation>
          <xs:documentation>Dedham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG008">
        <xs:annotation>
          <xs:documentation>East Donyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG009">
        <xs:annotation>
          <xs:documentation>East Mersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG010">
        <xs:annotation>
          <xs:documentation>Eight Ash Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG011">
        <xs:annotation>
          <xs:documentation>Fingringhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG012">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG013">
        <xs:annotation>
          <xs:documentation>Great and Little Wigborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG014">
        <xs:annotation>
          <xs:documentation>Great Horkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG015">
        <xs:annotation>
          <xs:documentation>Great Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG016">
        <xs:annotation>
          <xs:documentation>Langenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG017">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG018">
        <xs:annotation>
          <xs:documentation>Layer Breton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG019">
        <xs:annotation>
          <xs:documentation>Layer-de-la-Haye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG020">
        <xs:annotation>
          <xs:documentation>Layer Marney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG021">
        <xs:annotation>
          <xs:documentation>Little Horkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG022">
        <xs:annotation>
          <xs:documentation>Marks Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG023">
        <xs:annotation>
          <xs:documentation>Messing-cum-Inworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG024">
        <xs:annotation>
          <xs:documentation>Mount Bures</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG025">
        <xs:annotation>
          <xs:documentation>Peldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG026">
        <xs:annotation>
          <xs:documentation>Salcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG027">
        <xs:annotation>
          <xs:documentation>Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG028">
        <xs:annotation>
          <xs:documentation>Tiptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG029">
        <xs:annotation>
          <xs:documentation>Virley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG030">
        <xs:annotation>
          <xs:documentation>Wakes Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG031">
        <xs:annotation>
          <xs:documentation>West Bergholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG032">
        <xs:annotation>
          <xs:documentation>West Mersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG033">
        <xs:annotation>
          <xs:documentation>Wivenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG034">
        <xs:annotation>
          <xs:documentation>Wormingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG035">
        <xs:annotation>
          <xs:documentation>Myland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH001">
        <xs:annotation>
          <xs:documentation>Abbess Beauchamp and Berners Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH002">
        <xs:annotation>
          <xs:documentation>Bobbingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH003">
        <xs:annotation>
          <xs:documentation>Epping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH004">
        <xs:annotation>
          <xs:documentation>Epping Upland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH005">
        <xs:annotation>
          <xs:documentation>Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH006">
        <xs:annotation>
          <xs:documentation>High Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH007">
        <xs:annotation>
          <xs:documentation>High Ongar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH008">
        <xs:annotation>
          <xs:documentation>Lambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH009">
        <xs:annotation>
          <xs:documentation>Little Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH010">
        <xs:annotation>
          <xs:documentation>Magdalen Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH011">
        <xs:annotation>
          <xs:documentation>Matching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH012">
        <xs:annotation>
          <xs:documentation>Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH013">
        <xs:annotation>
          <xs:documentation>Nazeing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH014">
        <xs:annotation>
          <xs:documentation>North Weald Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH015">
        <xs:annotation>
          <xs:documentation>Ongar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH016">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH017">
        <xs:annotation>
          <xs:documentation>Sheering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH018">
        <xs:annotation>
          <xs:documentation>Stanford Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH019">
        <xs:annotation>
          <xs:documentation>Stapleford Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH020">
        <xs:annotation>
          <xs:documentation>Stapleford Tawney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH021">
        <xs:annotation>
          <xs:documentation>Theydon Bois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH022">
        <xs:annotation>
          <xs:documentation>Theydon Garnon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH023">
        <xs:annotation>
          <xs:documentation>Theydon Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH024">
        <xs:annotation>
          <xs:documentation>Waltham Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH025">
        <xs:annotation>
          <xs:documentation>Willingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH026">
        <xs:annotation>
          <xs:documentation>Buckhurst Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH027">
        <xs:annotation>
          <xs:documentation>Chigwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH028">
        <xs:annotation>
          <xs:documentation>Loughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK001">
        <xs:annotation>
          <xs:documentation>Althorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK002">
        <xs:annotation>
          <xs:documentation>Asheldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK003">
        <xs:annotation>
          <xs:documentation>Bradwell-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK004">
        <xs:annotation>
          <xs:documentation>Burnham-on-Crouch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK005">
        <xs:annotation>
          <xs:documentation>Cold Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK006">
        <xs:annotation>
          <xs:documentation>Dengie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK007">
        <xs:annotation>
          <xs:documentation>Goldhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK008">
        <xs:annotation>
          <xs:documentation>Great Braxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK009">
        <xs:annotation>
          <xs:documentation>Great Totham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK010">
        <xs:annotation>
          <xs:documentation>Hazeleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK011">
        <xs:annotation>
          <xs:documentation>Heybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK012">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK013">
        <xs:annotation>
          <xs:documentation>Latchingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK014">
        <xs:annotation>
          <xs:documentation>Little Braxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK015">
        <xs:annotation>
          <xs:documentation>Little Totham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK016">
        <xs:annotation>
          <xs:documentation>Maldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK017">
        <xs:annotation>
          <xs:documentation>Mayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK018">
        <xs:annotation>
          <xs:documentation>Mundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK019">
        <xs:annotation>
          <xs:documentation>North Fambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK020">
        <xs:annotation>
          <xs:documentation>Purleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK021">
        <xs:annotation>
          <xs:documentation>St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK022">
        <xs:annotation>
          <xs:documentation>Southminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK023">
        <xs:annotation>
          <xs:documentation>Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK024">
        <xs:annotation>
          <xs:documentation>Stow Maries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK025">
        <xs:annotation>
          <xs:documentation>Tillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK026">
        <xs:annotation>
          <xs:documentation>Tollesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK027">
        <xs:annotation>
          <xs:documentation>Tolleshunt D'Arcy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK028">
        <xs:annotation>
          <xs:documentation>Tolleshunt Knights</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK029">
        <xs:annotation>
          <xs:documentation>Tolleshunt Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK030">
        <xs:annotation>
          <xs:documentation>Ulting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK031">
        <xs:annotation>
          <xs:documentation>Wickham Bishops</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK032">
        <xs:annotation>
          <xs:documentation>Woodham Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK033">
        <xs:annotation>
          <xs:documentation>Woodham Walter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL001">
        <xs:annotation>
          <xs:documentation>Ashingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL002">
        <xs:annotation>
          <xs:documentation>Barling Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL003">
        <xs:annotation>
          <xs:documentation>Canewdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL004">
        <xs:annotation>
          <xs:documentation>Foulness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL005">
        <xs:annotation>
          <xs:documentation>Great Wakering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL006">
        <xs:annotation>
          <xs:documentation>Hawkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL007">
        <xs:annotation>
          <xs:documentation>Hockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL008">
        <xs:annotation>
          <xs:documentation>Hullbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL009">
        <xs:annotation>
          <xs:documentation>Paglesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL010">
        <xs:annotation>
          <xs:documentation>Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL011">
        <xs:annotation>
          <xs:documentation>Stambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL012">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL013">
        <xs:annotation>
          <xs:documentation>Rawreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL014">
        <xs:annotation>
          <xs:documentation>Rayleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN001">
        <xs:annotation>
          <xs:documentation>Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN002">
        <xs:annotation>
          <xs:documentation>Ardleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN003">
        <xs:annotation>
          <xs:documentation>Beaumont-cum-Moze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN004">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN005">
        <xs:annotation>
          <xs:documentation>Brightlingsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN006">
        <xs:annotation>
          <xs:documentation>Elmstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN007">
        <xs:annotation>
          <xs:documentation>Frating</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN008">
        <xs:annotation>
          <xs:documentation>Frinton and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN009">
        <xs:annotation>
          <xs:documentation>Great Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN010">
        <xs:annotation>
          <xs:documentation>Great Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN011">
        <xs:annotation>
          <xs:documentation>Great Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN012">
        <xs:annotation>
          <xs:documentation>Harwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN013">
        <xs:annotation>
          <xs:documentation>Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN014">
        <xs:annotation>
          <xs:documentation>Little Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN015">
        <xs:annotation>
          <xs:documentation>Little Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN016">
        <xs:annotation>
          <xs:documentation>Little Clacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN017">
        <xs:annotation>
          <xs:documentation>Little Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN018">
        <xs:annotation>
          <xs:documentation>Manningtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN019">
        <xs:annotation>
          <xs:documentation>Mistley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN020">
        <xs:annotation>
          <xs:documentation>Ramsey and Parkeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN021">
        <xs:annotation>
          <xs:documentation>St. Osyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN022">
        <xs:annotation>
          <xs:documentation>Tendring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN023">
        <xs:annotation>
          <xs:documentation>Thorpe-le-Soken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN024">
        <xs:annotation>
          <xs:documentation>Thorrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN025">
        <xs:annotation>
          <xs:documentation>Weeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN026">
        <xs:annotation>
          <xs:documentation>Wix</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN027">
        <xs:annotation>
          <xs:documentation>Wrabness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ001">
        <xs:annotation>
          <xs:documentation>Arkesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ002">
        <xs:annotation>
          <xs:documentation>Ashdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ003">
        <xs:annotation>
          <xs:documentation>Aythorpe Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ004">
        <xs:annotation>
          <xs:documentation>Barnston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ005">
        <xs:annotation>
          <xs:documentation>Berden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ006">
        <xs:annotation>
          <xs:documentation>Birchanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ007">
        <xs:annotation>
          <xs:documentation>Broxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ008">
        <xs:annotation>
          <xs:documentation>Chickney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ009">
        <xs:annotation>
          <xs:documentation>Chrishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ010">
        <xs:annotation>
          <xs:documentation>Clavering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ011">
        <xs:annotation>
          <xs:documentation>Debden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ012">
        <xs:annotation>
          <xs:documentation>Elmdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ013">
        <xs:annotation>
          <xs:documentation>Elsenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ014">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ015">
        <xs:annotation>
          <xs:documentation>Felsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ016">
        <xs:annotation>
          <xs:documentation>Great Canfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ017">
        <xs:annotation>
          <xs:documentation>Great Chesterford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ018">
        <xs:annotation>
          <xs:documentation>Great Dunmow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ019">
        <xs:annotation>
          <xs:documentation>Great Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ020">
        <xs:annotation>
          <xs:documentation>Great Hallingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ021">
        <xs:annotation>
          <xs:documentation>Great Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ022">
        <xs:annotation>
          <xs:documentation>Hadstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ023">
        <xs:annotation>
          <xs:documentation>Hatfield Broad Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ024">
        <xs:annotation>
          <xs:documentation>Hatfield Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ025">
        <xs:annotation>
          <xs:documentation>Hempstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ026">
        <xs:annotation>
          <xs:documentation>Henham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ027">
        <xs:annotation>
          <xs:documentation>High Easter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ028">
        <xs:annotation>
          <xs:documentation>High Roothing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ029">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ030">
        <xs:annotation>
          <xs:documentation>Leaden Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ031">
        <xs:annotation>
          <xs:documentation>Lindsell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ032">
        <xs:annotation>
          <xs:documentation>Little Bardfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ033">
        <xs:annotation>
          <xs:documentation>Little Canfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ034">
        <xs:annotation>
          <xs:documentation>Little Chesterford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ035">
        <xs:annotation>
          <xs:documentation>Little Dunmow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ036">
        <xs:annotation>
          <xs:documentation>Little Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ037">
        <xs:annotation>
          <xs:documentation>Little Hallingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ038">
        <xs:annotation>
          <xs:documentation>Little Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ039">
        <xs:annotation>
          <xs:documentation>Littlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ040">
        <xs:annotation>
          <xs:documentation>Manuden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ041">
        <xs:annotation>
          <xs:documentation>Margaret Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ042">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ043">
        <xs:annotation>
          <xs:documentation>Quendon and Rickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ044">
        <xs:annotation>
          <xs:documentation>Radwinter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ045">
        <xs:annotation>
          <xs:documentation>Saffron Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ046">
        <xs:annotation>
          <xs:documentation>Stansted Mountfitchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ047">
        <xs:annotation>
          <xs:documentation>Stebbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ048">
        <xs:annotation>
          <xs:documentation>Strethall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ049">
        <xs:annotation>
          <xs:documentation>Takeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ050">
        <xs:annotation>
          <xs:documentation>Thaxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ051">
        <xs:annotation>
          <xs:documentation>Tilty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ052">
        <xs:annotation>
          <xs:documentation>Ugley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ053">
        <xs:annotation>
          <xs:documentation>Wenden Lofts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ054">
        <xs:annotation>
          <xs:documentation>Wendens Ambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ055">
        <xs:annotation>
          <xs:documentation>White Roothing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ056">
        <xs:annotation>
          <xs:documentation>Wicken Bonhunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ057">
        <xs:annotation>
          <xs:documentation>Widdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ058">
        <xs:annotation>
          <xs:documentation>Wimbish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ059">
        <xs:annotation>
          <xs:documentation>Sewards End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB001">
        <xs:annotation>
          <xs:documentation>Leckhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB002">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB003">
        <xs:annotation>
          <xs:documentation>Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB004">
        <xs:annotation>
          <xs:documentation>Up Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB005">
        <xs:annotation>
          <xs:documentation>Charlton Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC001">
        <xs:annotation>
          <xs:documentation>Adlestrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC002">
        <xs:annotation>
          <xs:documentation>Aldsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC003">
        <xs:annotation>
          <xs:documentation>Ampney Crucis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC004">
        <xs:annotation>
          <xs:documentation>Ampney St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC005">
        <xs:annotation>
          <xs:documentation>Ampney St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC006">
        <xs:annotation>
          <xs:documentation>Andoversford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC007">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC008">
        <xs:annotation>
          <xs:documentation>Aston Subedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC009">
        <xs:annotation>
          <xs:documentation>Avening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC010">
        <xs:annotation>
          <xs:documentation>Bagendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC011">
        <xs:annotation>
          <xs:documentation>Barnsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC012">
        <xs:annotation>
          <xs:documentation>Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC013">
        <xs:annotation>
          <xs:documentation>Batsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC014">
        <xs:annotation>
          <xs:documentation>Baunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC015">
        <xs:annotation>
          <xs:documentation>Beverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC016">
        <xs:annotation>
          <xs:documentation>Bibury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC017">
        <xs:annotation>
          <xs:documentation>Bledington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC018">
        <xs:annotation>
          <xs:documentation>Blockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC019">
        <xs:annotation>
          <xs:documentation>Bourton-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC020">
        <xs:annotation>
          <xs:documentation>Bourton-on-the-Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC021">
        <xs:annotation>
          <xs:documentation>Boxwell with Leighterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC022">
        <xs:annotation>
          <xs:documentation>Brimpsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC023">
        <xs:annotation>
          <xs:documentation>Broadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC024">
        <xs:annotation>
          <xs:documentation>Chedworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC025">
        <xs:annotation>
          <xs:documentation>Cherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC026">
        <xs:annotation>
          <xs:documentation>Chipping Campden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC027">
        <xs:annotation>
          <xs:documentation>Cirencester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC028">
        <xs:annotation>
          <xs:documentation>Clapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC029">
        <xs:annotation>
          <xs:documentation>Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC030">
        <xs:annotation>
          <xs:documentation>Coberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC031">
        <xs:annotation>
          <xs:documentation>Cold Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC032">
        <xs:annotation>
          <xs:documentation>Colesbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC033">
        <xs:annotation>
          <xs:documentation>Coln St. Aldwyns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC034">
        <xs:annotation>
          <xs:documentation>Coln St. Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC035">
        <xs:annotation>
          <xs:documentation>Compton Abdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC036">
        <xs:annotation>
          <xs:documentation>Condicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC037">
        <xs:annotation>
          <xs:documentation>Cowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC038">
        <xs:annotation>
          <xs:documentation>Cutsdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC039">
        <xs:annotation>
          <xs:documentation>Daglingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC040">
        <xs:annotation>
          <xs:documentation>Didmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC041">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC042">
        <xs:annotation>
          <xs:documentation>Dowdeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC043">
        <xs:annotation>
          <xs:documentation>Down Ampney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC044">
        <xs:annotation>
          <xs:documentation>Driffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC045">
        <xs:annotation>
          <xs:documentation>Duntisbourne Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC046">
        <xs:annotation>
          <xs:documentation>Duntisbourne Rouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC047">
        <xs:annotation>
          <xs:documentation>Eastleach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC048">
        <xs:annotation>
          <xs:documentation>Ebrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC049">
        <xs:annotation>
          <xs:documentation>Edgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC050">
        <xs:annotation>
          <xs:documentation>Elkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC051">
        <xs:annotation>
          <xs:documentation>Evenlode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC052">
        <xs:annotation>
          <xs:documentation>Fairford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC053">
        <xs:annotation>
          <xs:documentation>Farmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC054">
        <xs:annotation>
          <xs:documentation>Great Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC055">
        <xs:annotation>
          <xs:documentation>Guiting Power</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC056">
        <xs:annotation>
          <xs:documentation>Hampnett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC057">
        <xs:annotation>
          <xs:documentation>Hatherop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC058">
        <xs:annotation>
          <xs:documentation>Hazleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC059">
        <xs:annotation>
          <xs:documentation>Icomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC060">
        <xs:annotation>
          <xs:documentation>Kemble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC061">
        <xs:annotation>
          <xs:documentation>Kempsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC062">
        <xs:annotation>
          <xs:documentation>Kingscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC063">
        <xs:annotation>
          <xs:documentation>Lechlade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC064">
        <xs:annotation>
          <xs:documentation>Little Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC065">
        <xs:annotation>
          <xs:documentation>Longborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC066">
        <xs:annotation>
          <xs:documentation>Long Newnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC067">
        <xs:annotation>
          <xs:documentation>Lower Slaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC068">
        <xs:annotation>
          <xs:documentation>Maiseyhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC069">
        <xs:annotation>
          <xs:documentation>Maugersbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC070">
        <xs:annotation>
          <xs:documentation>Mickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC071">
        <xs:annotation>
          <xs:documentation>Moreton-in-Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC072">
        <xs:annotation>
          <xs:documentation>Naunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC073">
        <xs:annotation>
          <xs:documentation>North Cerney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC074">
        <xs:annotation>
          <xs:documentation>Northleach with Eastington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC075">
        <xs:annotation>
          <xs:documentation>Notgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC076">
        <xs:annotation>
          <xs:documentation>Oddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC077">
        <xs:annotation>
          <xs:documentation>Ozleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC078">
        <xs:annotation>
          <xs:documentation>Poole Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC079">
        <xs:annotation>
          <xs:documentation>Poulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC080">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC081">
        <xs:annotation>
          <xs:documentation>Quenington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC082">
        <xs:annotation>
          <xs:documentation>Rendcomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC083">
        <xs:annotation>
          <xs:documentation>Rodmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC084">
        <xs:annotation>
          <xs:documentation>Saintbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC085">
        <xs:annotation>
          <xs:documentation>Sapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC086">
        <xs:annotation>
          <xs:documentation>Sevenhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC087">
        <xs:annotation>
          <xs:documentation>Sezincote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC088">
        <xs:annotation>
          <xs:documentation>Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC089">
        <xs:annotation>
          <xs:documentation>Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC090">
        <xs:annotation>
          <xs:documentation>Shipton Moyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC091">
        <xs:annotation>
          <xs:documentation>Siddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC092">
        <xs:annotation>
          <xs:documentation>Somerford Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC093">
        <xs:annotation>
          <xs:documentation>South Cerney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC094">
        <xs:annotation>
          <xs:documentation>Southrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC095">
        <xs:annotation>
          <xs:documentation>Stow-on-the-Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC096">
        <xs:annotation>
          <xs:documentation>Swell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC097">
        <xs:annotation>
          <xs:documentation>Syde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC098">
        <xs:annotation>
          <xs:documentation>Temple Guiting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC099">
        <xs:annotation>
          <xs:documentation>Tetbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC100">
        <xs:annotation>
          <xs:documentation>Tetbury Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC101">
        <xs:annotation>
          <xs:documentation>Todenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC102">
        <xs:annotation>
          <xs:documentation>Turkdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC103">
        <xs:annotation>
          <xs:documentation>Upper Slaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC104">
        <xs:annotation>
          <xs:documentation>Westcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC105">
        <xs:annotation>
          <xs:documentation>Westonbirt with Lasborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC106">
        <xs:annotation>
          <xs:documentation>Weston Subedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC107">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC108">
        <xs:annotation>
          <xs:documentation>Wick Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC109">
        <xs:annotation>
          <xs:documentation>Willersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC110">
        <xs:annotation>
          <xs:documentation>Windrush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC111">
        <xs:annotation>
          <xs:documentation>Winson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC112">
        <xs:annotation>
          <xs:documentation>Winstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC113">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC114">
        <xs:annotation>
          <xs:documentation>Yanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC115">
        <xs:annotation>
          <xs:documentation>Upper Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD001">
        <xs:annotation>
          <xs:documentation>Alvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD002">
        <xs:annotation>
          <xs:documentation>Awre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD003">
        <xs:annotation>
          <xs:documentation>Aylburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD004">
        <xs:annotation>
          <xs:documentation>Blaisdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD005">
        <xs:annotation>
          <xs:documentation>Bromesberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD006">
        <xs:annotation>
          <xs:documentation>Churcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD007">
        <xs:annotation>
          <xs:documentation>Cinderford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD008">
        <xs:annotation>
          <xs:documentation>Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD009">
        <xs:annotation>
          <xs:documentation>Corse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD010">
        <xs:annotation>
          <xs:documentation>Drybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD011">
        <xs:annotation>
          <xs:documentation>Dymock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD012">
        <xs:annotation>
          <xs:documentation>English Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD013">
        <xs:annotation>
          <xs:documentation>Hartpury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD014">
        <xs:annotation>
          <xs:documentation>Hewelsfield and Brockweir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD015">
        <xs:annotation>
          <xs:documentation>Huntley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD016">
        <xs:annotation>
          <xs:documentation>Kempley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD017">
        <xs:annotation>
          <xs:documentation>Littledean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD018">
        <xs:annotation>
          <xs:documentation>Longhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD019">
        <xs:annotation>
          <xs:documentation>Lydbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD020">
        <xs:annotation>
          <xs:documentation>Lydney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD021">
        <xs:annotation>
          <xs:documentation>Mitcheldean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD022">
        <xs:annotation>
          <xs:documentation>Newent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD023">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD024">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD025">
        <xs:annotation>
          <xs:documentation>Oxenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD026">
        <xs:annotation>
          <xs:documentation>Pauntley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD027">
        <xs:annotation>
          <xs:documentation>Redmarley D'Abitot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD028">
        <xs:annotation>
          <xs:documentation>Ruardean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD029">
        <xs:annotation>
          <xs:documentation>Rudford and Highleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD030">
        <xs:annotation>
          <xs:documentation>Ruspidge and Soudley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD031">
        <xs:annotation>
          <xs:documentation>St. Briavels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD032">
        <xs:annotation>
          <xs:documentation>Staunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD033">
        <xs:annotation>
          <xs:documentation>Staunton Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD034">
        <xs:annotation>
          <xs:documentation>Taynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD035">
        <xs:annotation>
          <xs:documentation>Tibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD036">
        <xs:annotation>
          <xs:documentation>Tidenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD037">
        <xs:annotation>
          <xs:documentation>Upleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD038">
        <xs:annotation>
          <xs:documentation>Westbury-on-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD039">
        <xs:annotation>
          <xs:documentation>West Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD040">
        <xs:annotation>
          <xs:documentation>Woolaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD041">
        <xs:annotation>
          <xs:documentation>Gorsley and Kilcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UE002">
        <xs:annotation>
          <xs:documentation>Quedgeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF001">
        <xs:annotation>
          <xs:documentation>Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF002">
        <xs:annotation>
          <xs:documentation>Alkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF003">
        <xs:annotation>
          <xs:documentation>Arlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF004">
        <xs:annotation>
          <xs:documentation>Berkeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF005">
        <xs:annotation>
          <xs:documentation>Bisley-with-Lypiatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF006">
        <xs:annotation>
          <xs:documentation>Brookthorpe-with-Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF007">
        <xs:annotation>
          <xs:documentation>Cainscross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF008">
        <xs:annotation>
          <xs:documentation>Cam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF009">
        <xs:annotation>
          <xs:documentation>Chalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF010">
        <xs:annotation>
          <xs:documentation>Coaley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF011">
        <xs:annotation>
          <xs:documentation>Cranham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF012">
        <xs:annotation>
          <xs:documentation>Dursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF013">
        <xs:annotation>
          <xs:documentation>Eastington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF014">
        <xs:annotation>
          <xs:documentation>Elmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF015">
        <xs:annotation>
          <xs:documentation>Frampton on Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF016">
        <xs:annotation>
          <xs:documentation>Fretherne with Saul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF017">
        <xs:annotation>
          <xs:documentation>Frocester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF018">
        <xs:annotation>
          <xs:documentation>Ham and Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF019">
        <xs:annotation>
          <xs:documentation>Hamfallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF020">
        <xs:annotation>
          <xs:documentation>Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF021">
        <xs:annotation>
          <xs:documentation>Harescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF022">
        <xs:annotation>
          <xs:documentation>Haresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF023">
        <xs:annotation>
          <xs:documentation>Hillesley and Tresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF024">
        <xs:annotation>
          <xs:documentation>Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF025">
        <xs:annotation>
          <xs:documentation>Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF026">
        <xs:annotation>
          <xs:documentation>King's Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF027">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF028">
        <xs:annotation>
          <xs:documentation>Leonard Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF029">
        <xs:annotation>
          <xs:documentation>Longney and Epney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF030">
        <xs:annotation>
          <xs:documentation>Minchinhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF031">
        <xs:annotation>
          <xs:documentation>Miserden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF032">
        <xs:annotation>
          <xs:documentation>Moreton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF033">
        <xs:annotation>
          <xs:documentation>Nailsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF034">
        <xs:annotation>
          <xs:documentation>North Nibley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF035">
        <xs:annotation>
          <xs:documentation>Nympsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF036">
        <xs:annotation>
          <xs:documentation>Owlpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF037">
        <xs:annotation>
          <xs:documentation>Painswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF038">
        <xs:annotation>
          <xs:documentation>Pitchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF039">
        <xs:annotation>
          <xs:documentation>Randwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF040">
        <xs:annotation>
          <xs:documentation>Rodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF041">
        <xs:annotation>
          <xs:documentation>Slimbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF042">
        <xs:annotation>
          <xs:documentation>Standish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF043">
        <xs:annotation>
          <xs:documentation>Stinchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF044">
        <xs:annotation>
          <xs:documentation>Stonehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF045">
        <xs:annotation>
          <xs:documentation>Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF046">
        <xs:annotation>
          <xs:documentation>Thrupp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF047">
        <xs:annotation>
          <xs:documentation>Uley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF048">
        <xs:annotation>
          <xs:documentation>Upton St. Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF049">
        <xs:annotation>
          <xs:documentation>Whiteshill and Ruscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF050">
        <xs:annotation>
          <xs:documentation>Whitminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF051">
        <xs:annotation>
          <xs:documentation>Woodchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF052">
        <xs:annotation>
          <xs:documentation>Wotton-under-Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG001">
        <xs:annotation>
          <xs:documentation>Alderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG002">
        <xs:annotation>
          <xs:documentation>Ashchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG003">
        <xs:annotation>
          <xs:documentation>Ashleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG004">
        <xs:annotation>
          <xs:documentation>Badgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG005">
        <xs:annotation>
          <xs:documentation>Bishop's Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG006">
        <xs:annotation>
          <xs:documentation>Boddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG007">
        <xs:annotation>
          <xs:documentation>Brockworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG008">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG009">
        <xs:annotation>
          <xs:documentation>Chaceley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG010">
        <xs:annotation>
          <xs:documentation>Churchdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG011">
        <xs:annotation>
          <xs:documentation>Deerhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG012">
        <xs:annotation>
          <xs:documentation>Down Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG013">
        <xs:annotation>
          <xs:documentation>Dumbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG014">
        <xs:annotation>
          <xs:documentation>Elmstone Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG015">
        <xs:annotation>
          <xs:documentation>Forthampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG016">
        <xs:annotation>
          <xs:documentation>Gotherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG017">
        <xs:annotation>
          <xs:documentation>Great Witcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG018">
        <xs:annotation>
          <xs:documentation>Hasfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG019">
        <xs:annotation>
          <xs:documentation>Hawling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG020">
        <xs:annotation>
          <xs:documentation>Highnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG021">
        <xs:annotation>
          <xs:documentation>Hucclecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG022">
        <xs:annotation>
          <xs:documentation>Innsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG023">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG024">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG025">
        <xs:annotation>
          <xs:documentation>Maisemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG026">
        <xs:annotation>
          <xs:documentation>Minsterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG027">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG028">
        <xs:annotation>
          <xs:documentation>Oxenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG029">
        <xs:annotation>
          <xs:documentation>Prescott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG030">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG031">
        <xs:annotation>
          <xs:documentation>Shurdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG032">
        <xs:annotation>
          <xs:documentation>Snowshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG033">
        <xs:annotation>
          <xs:documentation>Southam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG034">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG035">
        <xs:annotation>
          <xs:documentation>Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG036">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG037">
        <xs:annotation>
          <xs:documentation>Stoke Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG038">
        <xs:annotation>
          <xs:documentation>Sudeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG039">
        <xs:annotation>
          <xs:documentation>Teddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG040">
        <xs:annotation>
          <xs:documentation>Tewkesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG041">
        <xs:annotation>
          <xs:documentation>Tirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG042">
        <xs:annotation>
          <xs:documentation>Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG043">
        <xs:annotation>
          <xs:documentation>Twigworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG044">
        <xs:annotation>
          <xs:documentation>Twyning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG045">
        <xs:annotation>
          <xs:documentation>Uckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG046">
        <xs:annotation>
          <xs:documentation>Walton Cardiff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG047">
        <xs:annotation>
          <xs:documentation>Winchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG048">
        <xs:annotation>
          <xs:documentation>Woodmancote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG049">
        <xs:annotation>
          <xs:documentation>Gretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB001">
        <xs:annotation>
          <xs:documentation>Ashford Hill with Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB002">
        <xs:annotation>
          <xs:documentation>Ashmansworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB003">
        <xs:annotation>
          <xs:documentation>Baughurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB004">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB005">
        <xs:annotation>
          <xs:documentation>Bramley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB006">
        <xs:annotation>
          <xs:documentation>Burghclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB007">
        <xs:annotation>
          <xs:documentation>Candovers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB008">
        <xs:annotation>
          <xs:documentation>Chineham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB009">
        <xs:annotation>
          <xs:documentation>Cliddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB010">
        <xs:annotation>
          <xs:documentation>Deane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB011">
        <xs:annotation>
          <xs:documentation>Dummer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB012">
        <xs:annotation>
          <xs:documentation>East Woodhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB013">
        <xs:annotation>
          <xs:documentation>Ecchinswell, Sydmonton and Bishops Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB014">
        <xs:annotation>
          <xs:documentation>Ellisfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB015">
        <xs:annotation>
          <xs:documentation>Farleigh Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB016">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB017">
        <xs:annotation>
          <xs:documentation>Hartley Wespall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB018">
        <xs:annotation>
          <xs:documentation>Herriard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB019">
        <xs:annotation>
          <xs:documentation>Highclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB020">
        <xs:annotation>
          <xs:documentation>Hurstbourne Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB021">
        <xs:annotation>
          <xs:documentation>Kingsclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB022">
        <xs:annotation>
          <xs:documentation>Laverstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB023">
        <xs:annotation>
          <xs:documentation>Litchfield and Woodcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB024">
        <xs:annotation>
          <xs:documentation>Mapledurwell and Up Nately</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB025">
        <xs:annotation>
          <xs:documentation>Monk Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB026">
        <xs:annotation>
          <xs:documentation>Mortimer West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB027">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB028">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB029">
        <xs:annotation>
          <xs:documentation>North Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB030">
        <xs:annotation>
          <xs:documentation>Nutley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB031">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB032">
        <xs:annotation>
          <xs:documentation>Old Basing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB033">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB034">
        <xs:annotation>
          <xs:documentation>Pamber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB035">
        <xs:annotation>
          <xs:documentation>Popham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB036">
        <xs:annotation>
          <xs:documentation>Preston Candover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB037">
        <xs:annotation>
          <xs:documentation>Sherborne St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB038">
        <xs:annotation>
          <xs:documentation>Sherfield on Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB039">
        <xs:annotation>
          <xs:documentation>Silchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB040">
        <xs:annotation>
          <xs:documentation>St. Mary Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB041">
        <xs:annotation>
          <xs:documentation>Steventon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB042">
        <xs:annotation>
          <xs:documentation>Stratfield Saye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB043">
        <xs:annotation>
          <xs:documentation>Stratfield Turgis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB044">
        <xs:annotation>
          <xs:documentation>Tadley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB045">
        <xs:annotation>
          <xs:documentation>Tunworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB046">
        <xs:annotation>
          <xs:documentation>Upton Grey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB047">
        <xs:annotation>
          <xs:documentation>Weston Corbett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB048">
        <xs:annotation>
          <xs:documentation>Weston Patrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB049">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB050">
        <xs:annotation>
          <xs:documentation>Winslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB051">
        <xs:annotation>
          <xs:documentation>Wootton St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB052">
        <xs:annotation>
          <xs:documentation>Rooksdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC001">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC002">
        <xs:annotation>
          <xs:documentation>Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC003">
        <xs:annotation>
          <xs:documentation>Bentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC004">
        <xs:annotation>
          <xs:documentation>Binsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC005">
        <xs:annotation>
          <xs:documentation>Bramshott and Liphook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC006">
        <xs:annotation>
          <xs:documentation>Buriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC007">
        <xs:annotation>
          <xs:documentation>Chawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC008">
        <xs:annotation>
          <xs:documentation>Clanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC009">
        <xs:annotation>
          <xs:documentation>Colemore and Priors Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC010">
        <xs:annotation>
          <xs:documentation>East Meon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC011">
        <xs:annotation>
          <xs:documentation>East Tisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC012">
        <xs:annotation>
          <xs:documentation>Farringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC013">
        <xs:annotation>
          <xs:documentation>Four Marks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC014">
        <xs:annotation>
          <xs:documentation>Froxfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC015">
        <xs:annotation>
          <xs:documentation>Froyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC016">
        <xs:annotation>
          <xs:documentation>Grayshott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC017">
        <xs:annotation>
          <xs:documentation>Greatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC018">
        <xs:annotation>
          <xs:documentation>Hawkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC019">
        <xs:annotation>
          <xs:documentation>Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC020">
        <xs:annotation>
          <xs:documentation>Horndean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC021">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC022">
        <xs:annotation>
          <xs:documentation>Langrish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC023">
        <xs:annotation>
          <xs:documentation>Lasham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC024">
        <xs:annotation>
          <xs:documentation>Lindford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC025">
        <xs:annotation>
          <xs:documentation>Liss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC026">
        <xs:annotation>
          <xs:documentation>Medstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC027">
        <xs:annotation>
          <xs:documentation>Newton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC028">
        <xs:annotation>
          <xs:documentation>Petersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC029">
        <xs:annotation>
          <xs:documentation>Ropley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC030">
        <xs:annotation>
          <xs:documentation>Rowlands Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC031">
        <xs:annotation>
          <xs:documentation>Selborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC032">
        <xs:annotation>
          <xs:documentation>Shalden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC033">
        <xs:annotation>
          <xs:documentation>Steep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC034">
        <xs:annotation>
          <xs:documentation>West Tisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC035">
        <xs:annotation>
          <xs:documentation>Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC036">
        <xs:annotation>
          <xs:documentation>Wield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC037">
        <xs:annotation>
          <xs:documentation>Worldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC038">
        <xs:annotation>
          <xs:documentation>Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC039">
        <xs:annotation>
          <xs:documentation>Beech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD001">
        <xs:annotation>
          <xs:documentation>Botley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD002">
        <xs:annotation>
          <xs:documentation>Bursledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD003">
        <xs:annotation>
          <xs:documentation>Fair Oak and Horton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD004">
        <xs:annotation>
          <xs:documentation>Hamble-le-Rice</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD005">
        <xs:annotation>
          <xs:documentation>Hedge End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD006">
        <xs:annotation>
          <xs:documentation>Hound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD007">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD008">
        <xs:annotation>
          <xs:documentation>Bishopstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG001">
        <xs:annotation>
          <xs:documentation>Bramshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG002">
        <xs:annotation>
          <xs:documentation>Crondall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG003">
        <xs:annotation>
          <xs:documentation>Crookham Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG004">
        <xs:annotation>
          <xs:documentation>Dogmersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG005">
        <xs:annotation>
          <xs:documentation>Eversley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG006">
        <xs:annotation>
          <xs:documentation>Greywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG007">
        <xs:annotation>
          <xs:documentation>Hartley Wintney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG008">
        <xs:annotation>
          <xs:documentation>Blackwater and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG009">
        <xs:annotation>
          <xs:documentation>Heckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG010">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG011">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG012">
        <xs:annotation>
          <xs:documentation>Mattingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG013">
        <xs:annotation>
          <xs:documentation>Odiham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG014">
        <xs:annotation>
          <xs:documentation>Rotherwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG015">
        <xs:annotation>
          <xs:documentation>South Warnborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG016">
        <xs:annotation>
          <xs:documentation>Winchfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG017">
        <xs:annotation>
          <xs:documentation>Yateley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ001">
        <xs:annotation>
          <xs:documentation>Ashurst and Colbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ002">
        <xs:annotation>
          <xs:documentation>Beaulieu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ003">
        <xs:annotation>
          <xs:documentation>Boldre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ004">
        <xs:annotation>
          <xs:documentation>Bramshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ005">
        <xs:annotation>
          <xs:documentation>Bransgore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ006">
        <xs:annotation>
          <xs:documentation>Breamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ007">
        <xs:annotation>
          <xs:documentation>Brockenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ008">
        <xs:annotation>
          <xs:documentation>Burley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ009">
        <xs:annotation>
          <xs:documentation>Copythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ010">
        <xs:annotation>
          <xs:documentation>Damerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ011">
        <xs:annotation>
          <xs:documentation>Denny Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ012">
        <xs:annotation>
          <xs:documentation>East Boldre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ013">
        <xs:annotation>
          <xs:documentation>Ellingham, Harbridge and Ibsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ014">
        <xs:annotation>
          <xs:documentation>Exbury and Lepe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ015">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ016">
        <xs:annotation>
          <xs:documentation>Fordingbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ017">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ018">
        <xs:annotation>
          <xs:documentation>Hordle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ019">
        <xs:annotation>
          <xs:documentation>Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ020">
        <xs:annotation>
          <xs:documentation>Hythe and Dibden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ021">
        <xs:annotation>
          <xs:documentation>Lymington and Pennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ022">
        <xs:annotation>
          <xs:documentation>Lyndhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ023">
        <xs:annotation>
          <xs:documentation>Marchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ024">
        <xs:annotation>
          <xs:documentation>Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ025">
        <xs:annotation>
          <xs:documentation>Milford-on-sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ026">
        <xs:annotation>
          <xs:documentation>Minstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ027">
        <xs:annotation>
          <xs:documentation>Netley Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ028">
        <xs:annotation>
          <xs:documentation>New Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ029">
        <xs:annotation>
          <xs:documentation>Ringwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ030">
        <xs:annotation>
          <xs:documentation>Rockbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ031">
        <xs:annotation>
          <xs:documentation>Sandleheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ032">
        <xs:annotation>
          <xs:documentation>Sopley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ033">
        <xs:annotation>
          <xs:documentation>Sway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ034">
        <xs:annotation>
          <xs:documentation>Totton and Eling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ035">
        <xs:annotation>
          <xs:documentation>Whitsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ036">
        <xs:annotation>
          <xs:documentation>Woodgreen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ037">
        <xs:annotation>
          <xs:documentation>Godshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN001">
        <xs:annotation>
          <xs:documentation>Abbotts Ann</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN002">
        <xs:annotation>
          <xs:documentation>Ampfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN003">
        <xs:annotation>
          <xs:documentation>Amport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN004">
        <xs:annotation>
          <xs:documentation>Appleshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN005">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN006">
        <xs:annotation>
          <xs:documentation>Awbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN007">
        <xs:annotation>
          <xs:documentation>Barton Stacey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN008">
        <xs:annotation>
          <xs:documentation>Bossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN009">
        <xs:annotation>
          <xs:documentation>Braishfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN010">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN011">
        <xs:annotation>
          <xs:documentation>Buckholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN012">
        <xs:annotation>
          <xs:documentation>Bullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN013">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN014">
        <xs:annotation>
          <xs:documentation>Chilbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN015">
        <xs:annotation>
          <xs:documentation>Chilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN016">
        <xs:annotation>
          <xs:documentation>East Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN017">
        <xs:annotation>
          <xs:documentation>East Tytherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN018">
        <xs:annotation>
          <xs:documentation>Faccombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN019">
        <xs:annotation>
          <xs:documentation>Frenchmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN020">
        <xs:annotation>
          <xs:documentation>Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN021">
        <xs:annotation>
          <xs:documentation>Goodworth Clatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN022">
        <xs:annotation>
          <xs:documentation>Grately</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN023">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN024">
        <xs:annotation>
          <xs:documentation>Hurstbourne Tarrant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN025">
        <xs:annotation>
          <xs:documentation>Kimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN026">
        <xs:annotation>
          <xs:documentation>Kings Somborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN027">
        <xs:annotation>
          <xs:documentation>Leckford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN028">
        <xs:annotation>
          <xs:documentation>Linkenholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN029">
        <xs:annotation>
          <xs:documentation>Little Somborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN030">
        <xs:annotation>
          <xs:documentation>Lockerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN031">
        <xs:annotation>
          <xs:documentation>Longparish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN032">
        <xs:annotation>
          <xs:documentation>Longstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN033">
        <xs:annotation>
          <xs:documentation>Melchet Park and Plaitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN034">
        <xs:annotation>
          <xs:documentation>Michelmersh and Timsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN035">
        <xs:annotation>
          <xs:documentation>Monxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN036">
        <xs:annotation>
          <xs:documentation>Mottisfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN037">
        <xs:annotation>
          <xs:documentation>Nether Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN038">
        <xs:annotation>
          <xs:documentation>North Baddesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN039">
        <xs:annotation>
          <xs:documentation>Nursling and Rownhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN040">
        <xs:annotation>
          <xs:documentation>Over Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN041">
        <xs:annotation>
          <xs:documentation>Penton Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN042">
        <xs:annotation>
          <xs:documentation>Penton Mewsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN043">
        <xs:annotation>
          <xs:documentation>Quarley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN044">
        <xs:annotation>
          <xs:documentation>Romsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN045">
        <xs:annotation>
          <xs:documentation>Romsey Extra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN046">
        <xs:annotation>
          <xs:documentation>Sherfield English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN047">
        <xs:annotation>
          <xs:documentation>Shipton Bellinger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN048">
        <xs:annotation>
          <xs:documentation>Smannell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN050">
        <xs:annotation>
          <xs:documentation>Stockbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN051">
        <xs:annotation>
          <xs:documentation>Tangley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN052">
        <xs:annotation>
          <xs:documentation>Thruxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN053">
        <xs:annotation>
          <xs:documentation>Upper Clatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN054">
        <xs:annotation>
          <xs:documentation>Vernhams Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN055">
        <xs:annotation>
          <xs:documentation>Wellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN056">
        <xs:annotation>
          <xs:documentation>West Tytherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN057">
        <xs:annotation>
          <xs:documentation>Wherwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP001">
        <xs:annotation>
          <xs:documentation>Badger Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP002">
        <xs:annotation>
          <xs:documentation>Beauworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP003">
        <xs:annotation>
          <xs:documentation>Bighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP004">
        <xs:annotation>
          <xs:documentation>Bishops Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP005">
        <xs:annotation>
          <xs:documentation>Bishops Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP006">
        <xs:annotation>
          <xs:documentation>Boarhunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP007">
        <xs:annotation>
          <xs:documentation>Bramdean and Hinton Ampner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP008">
        <xs:annotation>
          <xs:documentation>Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP009">
        <xs:annotation>
          <xs:documentation>Chilcomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP010">
        <xs:annotation>
          <xs:documentation>Colden Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP011">
        <xs:annotation>
          <xs:documentation>Compton and Shawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP012">
        <xs:annotation>
          <xs:documentation>Corhampton and Meonstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP013">
        <xs:annotation>
          <xs:documentation>Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP014">
        <xs:annotation>
          <xs:documentation>Curdridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP015">
        <xs:annotation>
          <xs:documentation>Denmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP016">
        <xs:annotation>
          <xs:documentation>Droxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP017">
        <xs:annotation>
          <xs:documentation>Durley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP018">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP019">
        <xs:annotation>
          <xs:documentation>Hambledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP020">
        <xs:annotation>
          <xs:documentation>Headbourne Worthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP021">
        <xs:annotation>
          <xs:documentation>Hursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP022">
        <xs:annotation>
          <xs:documentation>Itchen Stoke and Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP023">
        <xs:annotation>
          <xs:documentation>Itchen Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP024">
        <xs:annotation>
          <xs:documentation>Kilmiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP025">
        <xs:annotation>
          <xs:documentation>Kings Worthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP026">
        <xs:annotation>
          <xs:documentation>Littleton and Harestock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP027">
        <xs:annotation>
          <xs:documentation>Micheldever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP028">
        <xs:annotation>
          <xs:documentation>New Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP029">
        <xs:annotation>
          <xs:documentation>Northington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP030">
        <xs:annotation>
          <xs:documentation>Old Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP031">
        <xs:annotation>
          <xs:documentation>Olivers Battery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP032">
        <xs:annotation>
          <xs:documentation>Otterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP033">
        <xs:annotation>
          <xs:documentation>Owslebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP034">
        <xs:annotation>
          <xs:documentation>Shedfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP035">
        <xs:annotation>
          <xs:documentation>Soberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP036">
        <xs:annotation>
          <xs:documentation>Southwick and Widley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP037">
        <xs:annotation>
          <xs:documentation>South Wonston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP038">
        <xs:annotation>
          <xs:documentation>Sparsholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP039">
        <xs:annotation>
          <xs:documentation>Swanmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP040">
        <xs:annotation>
          <xs:documentation>Tichborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP041">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP042">
        <xs:annotation>
          <xs:documentation>Upham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP043">
        <xs:annotation>
          <xs:documentation>Warnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP044">
        <xs:annotation>
          <xs:documentation>West Meon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP045">
        <xs:annotation>
          <xs:documentation>Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP046">
        <xs:annotation>
          <xs:documentation>Wonston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP047">
        <xs:annotation>
          <xs:documentation>Whiteley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC001">
        <xs:annotation>
          <xs:documentation>Aldbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC002">
        <xs:annotation>
          <xs:documentation>Berkhamsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC003">
        <xs:annotation>
          <xs:documentation>Bovingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC004">
        <xs:annotation>
          <xs:documentation>Chipperfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC005">
        <xs:annotation>
          <xs:documentation>Flamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC006">
        <xs:annotation>
          <xs:documentation>Flaunden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC007">
        <xs:annotation>
          <xs:documentation>Great Gaddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC008">
        <xs:annotation>
          <xs:documentation>Kings Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC009">
        <xs:annotation>
          <xs:documentation>Little Gaddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC010">
        <xs:annotation>
          <xs:documentation>Markyate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC011">
        <xs:annotation>
          <xs:documentation>Nash Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC012">
        <xs:annotation>
          <xs:documentation>Nettleden with Potten End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC013">
        <xs:annotation>
          <xs:documentation>Northchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC014">
        <xs:annotation>
          <xs:documentation>Tring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC015">
        <xs:annotation>
          <xs:documentation>Tring Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC016">
        <xs:annotation>
          <xs:documentation>Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD001">
        <xs:annotation>
          <xs:documentation>Albury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD002">
        <xs:annotation>
          <xs:documentation>Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD003">
        <xs:annotation>
          <xs:documentation>Ardeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD004">
        <xs:annotation>
          <xs:documentation>Aspenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD005">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD006">
        <xs:annotation>
          <xs:documentation>Bayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD007">
        <xs:annotation>
          <xs:documentation>Bengeo Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD008">
        <xs:annotation>
          <xs:documentation>Benington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD009">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD010">
        <xs:annotation>
          <xs:documentation>Bramfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD011">
        <xs:annotation>
          <xs:documentation>Braughing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD012">
        <xs:annotation>
          <xs:documentation>Brent Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD013">
        <xs:annotation>
          <xs:documentation>Brickendon Liberty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD014">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD015">
        <xs:annotation>
          <xs:documentation>Buntingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD016">
        <xs:annotation>
          <xs:documentation>Cottered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD017">
        <xs:annotation>
          <xs:documentation>Datchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD018">
        <xs:annotation>
          <xs:documentation>Eastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD019">
        <xs:annotation>
          <xs:documentation>Furneux Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD020">
        <xs:annotation>
          <xs:documentation>Gilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD021">
        <xs:annotation>
          <xs:documentation>Great Amwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD022">
        <xs:annotation>
          <xs:documentation>Great Munden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD023">
        <xs:annotation>
          <xs:documentation>Hertford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD024">
        <xs:annotation>
          <xs:documentation>Hertford Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD025">
        <xs:annotation>
          <xs:documentation>Hertingfordbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD026">
        <xs:annotation>
          <xs:documentation>High Wych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD027">
        <xs:annotation>
          <xs:documentation>Hormead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD028">
        <xs:annotation>
          <xs:documentation>Hunsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD029">
        <xs:annotation>
          <xs:documentation>Little Berkhamsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD030">
        <xs:annotation>
          <xs:documentation>Little Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD031">
        <xs:annotation>
          <xs:documentation>Little Munden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD032">
        <xs:annotation>
          <xs:documentation>Meesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD033">
        <xs:annotation>
          <xs:documentation>Much Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD034">
        <xs:annotation>
          <xs:documentation>Sacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD035">
        <xs:annotation>
          <xs:documentation>Sawbridgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD036">
        <xs:annotation>
          <xs:documentation>Standon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD037">
        <xs:annotation>
          <xs:documentation>Stanstead Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD038">
        <xs:annotation>
          <xs:documentation>Stanstead St Margarets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD039">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD040">
        <xs:annotation>
          <xs:documentation>Stocking Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD041">
        <xs:annotation>
          <xs:documentation>Tewin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD042">
        <xs:annotation>
          <xs:documentation>Thorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD043">
        <xs:annotation>
          <xs:documentation>Thundridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD044">
        <xs:annotation>
          <xs:documentation>Walkern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD045">
        <xs:annotation>
          <xs:documentation>Ware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD046">
        <xs:annotation>
          <xs:documentation>Wareside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD047">
        <xs:annotation>
          <xs:documentation>Watton-at-Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD048">
        <xs:annotation>
          <xs:documentation>Westmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD049">
        <xs:annotation>
          <xs:documentation>Widford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD050">
        <xs:annotation>
          <xs:documentation>Wyddial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE001">
        <xs:annotation>
          <xs:documentation>Aldenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE002">
        <xs:annotation>
          <xs:documentation>Elstree and Borehamwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE003">
        <xs:annotation>
          <xs:documentation>Ridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE004">
        <xs:annotation>
          <xs:documentation>Shenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF001">
        <xs:annotation>
          <xs:documentation>Ashwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF002">
        <xs:annotation>
          <xs:documentation>Barkway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF003">
        <xs:annotation>
          <xs:documentation>Barley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF004">
        <xs:annotation>
          <xs:documentation>Bygrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF005">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF006">
        <xs:annotation>
          <xs:documentation>Clothall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF007">
        <xs:annotation>
          <xs:documentation>Codicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF008">
        <xs:annotation>
          <xs:documentation>Graveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF009">
        <xs:annotation>
          <xs:documentation>Hexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF010">
        <xs:annotation>
          <xs:documentation>Hinxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF011">
        <xs:annotation>
          <xs:documentation>Holwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF012">
        <xs:annotation>
          <xs:documentation>Ickleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF013">
        <xs:annotation>
          <xs:documentation>St Ippolyts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF014">
        <xs:annotation>
          <xs:documentation>Kelshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF015">
        <xs:annotation>
          <xs:documentation>Kimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF016">
        <xs:annotation>
          <xs:documentation>King's Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF017">
        <xs:annotation>
          <xs:documentation>Knebworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF018">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF019">
        <xs:annotation>
          <xs:documentation>Lilley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF020">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF021">
        <xs:annotation>
          <xs:documentation>Nuthampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF022">
        <xs:annotation>
          <xs:documentation>Offley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF023">
        <xs:annotation>
          <xs:documentation>Pirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF024">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF025">
        <xs:annotation>
          <xs:documentation>Radwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF026">
        <xs:annotation>
          <xs:documentation>Reed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF027">
        <xs:annotation>
          <xs:documentation>Royston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF028">
        <xs:annotation>
          <xs:documentation>Rushden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF029">
        <xs:annotation>
          <xs:documentation>St Paul's Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF030">
        <xs:annotation>
          <xs:documentation>Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF031">
        <xs:annotation>
          <xs:documentation>Therfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF032">
        <xs:annotation>
          <xs:documentation>Wallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF033">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF034">
        <xs:annotation>
          <xs:documentation>Wymondley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG001">
        <xs:annotation>
          <xs:documentation>Colney Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG002">
        <xs:annotation>
          <xs:documentation>Harpenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG003">
        <xs:annotation>
          <xs:documentation>Harpenden Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG004">
        <xs:annotation>
          <xs:documentation>London Colney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG005">
        <xs:annotation>
          <xs:documentation>Redbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG006">
        <xs:annotation>
          <xs:documentation>Sandridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG007">
        <xs:annotation>
          <xs:documentation>St Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG008">
        <xs:annotation>
          <xs:documentation>St Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG009">
        <xs:annotation>
          <xs:documentation>Wheathampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ001">
        <xs:annotation>
          <xs:documentation>Abbots Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ002">
        <xs:annotation>
          <xs:documentation>Chorleywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ003">
        <xs:annotation>
          <xs:documentation>Croxley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ004">
        <xs:annotation>
          <xs:documentation>Sarratt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ005">
        <xs:annotation>
          <xs:documentation>Watford Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL001">
        <xs:annotation>
          <xs:documentation>Ayot St Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL002">
        <xs:annotation>
          <xs:documentation>Ayot St Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL003">
        <xs:annotation>
          <xs:documentation>Essendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL004">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL005">
        <xs:annotation>
          <xs:documentation>Northaw and Cuffley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL006">
        <xs:annotation>
          <xs:documentation>North Mymms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL007">
        <xs:annotation>
          <xs:documentation>Welwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL008">
        <xs:annotation>
          <xs:documentation>Woolmer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB001">
        <xs:annotation>
          <xs:documentation>Aldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB002">
        <xs:annotation>
          <xs:documentation>Appledore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB003">
        <xs:annotation>
          <xs:documentation>Bethersden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB004">
        <xs:annotation>
          <xs:documentation>Biddenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB005">
        <xs:annotation>
          <xs:documentation>Bilsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB006">
        <xs:annotation>
          <xs:documentation>Bonnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB007">
        <xs:annotation>
          <xs:documentation>Boughton Aluph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB008">
        <xs:annotation>
          <xs:documentation>Brabourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB009">
        <xs:annotation>
          <xs:documentation>Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB010">
        <xs:annotation>
          <xs:documentation>Challock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB011">
        <xs:annotation>
          <xs:documentation>Charing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB012">
        <xs:annotation>
          <xs:documentation>Chilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB013">
        <xs:annotation>
          <xs:documentation>Crundale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB014">
        <xs:annotation>
          <xs:documentation>Eastwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB015">
        <xs:annotation>
          <xs:documentation>Egerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB016">
        <xs:annotation>
          <xs:documentation>Godmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB017">
        <xs:annotation>
          <xs:documentation>Great Chart with Singleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB018">
        <xs:annotation>
          <xs:documentation>Hastingleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB019">
        <xs:annotation>
          <xs:documentation>High Halden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB020">
        <xs:annotation>
          <xs:documentation>Hothfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB021">
        <xs:annotation>
          <xs:documentation>Kenardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB022">
        <xs:annotation>
          <xs:documentation>Kingsnorth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB023">
        <xs:annotation>
          <xs:documentation>Little Chart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB024">
        <xs:annotation>
          <xs:documentation>Mersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB025">
        <xs:annotation>
          <xs:documentation>Molash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB026">
        <xs:annotation>
          <xs:documentation>Newenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB027">
        <xs:annotation>
          <xs:documentation>Orlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB028">
        <xs:annotation>
          <xs:documentation>Pluckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB029">
        <xs:annotation>
          <xs:documentation>Rolvenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB030">
        <xs:annotation>
          <xs:documentation>Ruckinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB031">
        <xs:annotation>
          <xs:documentation>Sevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB032">
        <xs:annotation>
          <xs:documentation>Shadoxhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB033">
        <xs:annotation>
          <xs:documentation>Smarden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB034">
        <xs:annotation>
          <xs:documentation>Smeeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB035">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB036">
        <xs:annotation>
          <xs:documentation>Stone-cum-Ebony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB037">
        <xs:annotation>
          <xs:documentation>Tenterden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB038">
        <xs:annotation>
          <xs:documentation>Warehorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB039">
        <xs:annotation>
          <xs:documentation>Westwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB040">
        <xs:annotation>
          <xs:documentation>Wittersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB041">
        <xs:annotation>
          <xs:documentation>Woodchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB042">
        <xs:annotation>
          <xs:documentation>Wye with Hinxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC001">
        <xs:annotation>
          <xs:documentation>Adisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC002">
        <xs:annotation>
          <xs:documentation>Barham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC003">
        <xs:annotation>
          <xs:documentation>Bekesbourne-with-Patrixbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC004">
        <xs:annotation>
          <xs:documentation>Bishopsbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC005">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC006">
        <xs:annotation>
          <xs:documentation>Chartham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC007">
        <xs:annotation>
          <xs:documentation>Chestfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC008">
        <xs:annotation>
          <xs:documentation>Chislet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC009">
        <xs:annotation>
          <xs:documentation>Fordwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC010">
        <xs:annotation>
          <xs:documentation>Hackington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC011">
        <xs:annotation>
          <xs:documentation>Harbledown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC012">
        <xs:annotation>
          <xs:documentation>Hoath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC013">
        <xs:annotation>
          <xs:documentation>Ickham and Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC014">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC015">
        <xs:annotation>
          <xs:documentation>Littlebourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC016">
        <xs:annotation>
          <xs:documentation>Lower Hardres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC017">
        <xs:annotation>
          <xs:documentation>Petham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC018">
        <xs:annotation>
          <xs:documentation>St. Cosmus and St. Damian in the Blean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC019">
        <xs:annotation>
          <xs:documentation>Sturry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC020">
        <xs:annotation>
          <xs:documentation>Thanington Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC021">
        <xs:annotation>
          <xs:documentation>Upper Hardres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC022">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC023">
        <xs:annotation>
          <xs:documentation>Westbere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC024">
        <xs:annotation>
          <xs:documentation>Wickhambreaux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC025">
        <xs:annotation>
          <xs:documentation>Womenswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC026">
        <xs:annotation>
          <xs:documentation>Herne and Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD001">
        <xs:annotation>
          <xs:documentation>Bean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD002">
        <xs:annotation>
          <xs:documentation>Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD003">
        <xs:annotation>
          <xs:documentation>Longfield and New Barn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD004">
        <xs:annotation>
          <xs:documentation>Southfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD005">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD006">
        <xs:annotation>
          <xs:documentation>Sutton-at-Hone and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD007">
        <xs:annotation>
          <xs:documentation>Swanscombe and Greenhithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD008">
        <xs:annotation>
          <xs:documentation>Wilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE001">
        <xs:annotation>
          <xs:documentation>Alkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE002">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE003">
        <xs:annotation>
          <xs:documentation>Aylesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE004">
        <xs:annotation>
          <xs:documentation>Capel-le-Ferne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE005">
        <xs:annotation>
          <xs:documentation>Denton with Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE006">
        <xs:annotation>
          <xs:documentation>Eastry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE007">
        <xs:annotation>
          <xs:documentation>Eythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE008">
        <xs:annotation>
          <xs:documentation>Goodnestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE009">
        <xs:annotation>
          <xs:documentation>Guston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE010">
        <xs:annotation>
          <xs:documentation>Hougham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE011">
        <xs:annotation>
          <xs:documentation>Langdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE012">
        <xs:annotation>
          <xs:documentation>Lydden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE013">
        <xs:annotation>
          <xs:documentation>Nonington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE014">
        <xs:annotation>
          <xs:documentation>Northbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE015">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE016">
        <xs:annotation>
          <xs:documentation>Ringwould with Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE017">
        <xs:annotation>
          <xs:documentation>Ripple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE018">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE019">
        <xs:annotation>
          <xs:documentation>St. Margaret's at Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE020">
        <xs:annotation>
          <xs:documentation>Sandwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE021">
        <xs:annotation>
          <xs:documentation>Shepherdswell with Coldred</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE022">
        <xs:annotation>
          <xs:documentation>Sholden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE023">
        <xs:annotation>
          <xs:documentation>Staple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE024">
        <xs:annotation>
          <xs:documentation>Stourmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE025">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE026">
        <xs:annotation>
          <xs:documentation>Temple Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE027">
        <xs:annotation>
          <xs:documentation>Tilmanstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE028">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE029">
        <xs:annotation>
          <xs:documentation>Wingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE030">
        <xs:annotation>
          <xs:documentation>Woodnesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE031">
        <xs:annotation>
          <xs:documentation>Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE032">
        <xs:annotation>
          <xs:documentation>Deal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE033">
        <xs:annotation>
          <xs:documentation>Dover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE034">
        <xs:annotation>
          <xs:documentation>Great Mongeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE035">
        <xs:annotation>
          <xs:documentation>Walmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG001">
        <xs:annotation>
          <xs:documentation>Cobham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG002">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG003">
        <xs:annotation>
          <xs:documentation>Luddesdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG004">
        <xs:annotation>
          <xs:documentation>Meopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG005">
        <xs:annotation>
          <xs:documentation>Shorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG006">
        <xs:annotation>
          <xs:documentation>Vigo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH001">
        <xs:annotation>
          <xs:documentation>Barming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH002">
        <xs:annotation>
          <xs:documentation>Bearsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH003">
        <xs:annotation>
          <xs:documentation>Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH004">
        <xs:annotation>
          <xs:documentation>Boughton Malherbe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH005">
        <xs:annotation>
          <xs:documentation>Boughton Monchelsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH006">
        <xs:annotation>
          <xs:documentation>Boxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH007">
        <xs:annotation>
          <xs:documentation>Bredhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH008">
        <xs:annotation>
          <xs:documentation>Broomfield and Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH009">
        <xs:annotation>
          <xs:documentation>Chart Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH010">
        <xs:annotation>
          <xs:documentation>Coxheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH011">
        <xs:annotation>
          <xs:documentation>Detling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH012">
        <xs:annotation>
          <xs:documentation>Downswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH013">
        <xs:annotation>
          <xs:documentation>East Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH014">
        <xs:annotation>
          <xs:documentation>East Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH015">
        <xs:annotation>
          <xs:documentation>Frinsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH016">
        <xs:annotation>
          <xs:documentation>Harrietsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH017">
        <xs:annotation>
          <xs:documentation>Headcorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH018">
        <xs:annotation>
          <xs:documentation>Hollingbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH019">
        <xs:annotation>
          <xs:documentation>Hucking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH020">
        <xs:annotation>
          <xs:documentation>Hunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH021">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH022">
        <xs:annotation>
          <xs:documentation>Leeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH023">
        <xs:annotation>
          <xs:documentation>Lenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH024">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH025">
        <xs:annotation>
          <xs:documentation>Loose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH026">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH027">
        <xs:annotation>
          <xs:documentation>Nettlestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH028">
        <xs:annotation>
          <xs:documentation>Otham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH029">
        <xs:annotation>
          <xs:documentation>Otterden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH030">
        <xs:annotation>
          <xs:documentation>Staplehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH031">
        <xs:annotation>
          <xs:documentation>Stockbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH032">
        <xs:annotation>
          <xs:documentation>Sutton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH033">
        <xs:annotation>
          <xs:documentation>Teston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH034">
        <xs:annotation>
          <xs:documentation>Thurnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH035">
        <xs:annotation>
          <xs:documentation>Tovil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH036">
        <xs:annotation>
          <xs:documentation>Ulcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH037">
        <xs:annotation>
          <xs:documentation>West Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH038">
        <xs:annotation>
          <xs:documentation>Wichling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH039">
        <xs:annotation>
          <xs:documentation>Wormshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH040">
        <xs:annotation>
          <xs:documentation>Yalding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH041">
        <xs:annotation>
          <xs:documentation>Collier Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK001">
        <xs:annotation>
          <xs:documentation>Ash-cum-Ridley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK002">
        <xs:annotation>
          <xs:documentation>Brasted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK003">
        <xs:annotation>
          <xs:documentation>Chevening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK004">
        <xs:annotation>
          <xs:documentation>Chiddingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK005">
        <xs:annotation>
          <xs:documentation>Cowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK006">
        <xs:annotation>
          <xs:documentation>Crockenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK007">
        <xs:annotation>
          <xs:documentation>Dunton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK008">
        <xs:annotation>
          <xs:documentation>Edenbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK009">
        <xs:annotation>
          <xs:documentation>Eynsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK010">
        <xs:annotation>
          <xs:documentation>Farningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK011">
        <xs:annotation>
          <xs:documentation>Fawkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK012">
        <xs:annotation>
          <xs:documentation>Halstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK013">
        <xs:annotation>
          <xs:documentation>Hartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK014">
        <xs:annotation>
          <xs:documentation>Hever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK015">
        <xs:annotation>
          <xs:documentation>Horton Kirby and South Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK016">
        <xs:annotation>
          <xs:documentation>Kemsing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK017">
        <xs:annotation>
          <xs:documentation>Knockholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK018">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK019">
        <xs:annotation>
          <xs:documentation>Otford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK020">
        <xs:annotation>
          <xs:documentation>Penshurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK021">
        <xs:annotation>
          <xs:documentation>Riverhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK022">
        <xs:annotation>
          <xs:documentation>Seal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK023">
        <xs:annotation>
          <xs:documentation>Sevenoaks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK024">
        <xs:annotation>
          <xs:documentation>Sevenoaks Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK025">
        <xs:annotation>
          <xs:documentation>Shoreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK026">
        <xs:annotation>
          <xs:documentation>Sundridge with Ide Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK027">
        <xs:annotation>
          <xs:documentation>Swanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK028">
        <xs:annotation>
          <xs:documentation>Westerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK029">
        <xs:annotation>
          <xs:documentation>West Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL001">
        <xs:annotation>
          <xs:documentation>Acrise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL002">
        <xs:annotation>
          <xs:documentation>Brenzett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL003">
        <xs:annotation>
          <xs:documentation>Brookland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL004">
        <xs:annotation>
          <xs:documentation>Burmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL005">
        <xs:annotation>
          <xs:documentation>Dymchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL006">
        <xs:annotation>
          <xs:documentation>Elham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL007">
        <xs:annotation>
          <xs:documentation>Elmsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL008">
        <xs:annotation>
          <xs:documentation>Hawkinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL009">
        <xs:annotation>
          <xs:documentation>Hythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL010">
        <xs:annotation>
          <xs:documentation>Ivychurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL011">
        <xs:annotation>
          <xs:documentation>Lydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL012">
        <xs:annotation>
          <xs:documentation>Lyminge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL013">
        <xs:annotation>
          <xs:documentation>Lympne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL014">
        <xs:annotation>
          <xs:documentation>Monks Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL015">
        <xs:annotation>
          <xs:documentation>Newchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL016">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL017">
        <xs:annotation>
          <xs:documentation>New Romney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL018">
        <xs:annotation>
          <xs:documentation>Old Romney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL019">
        <xs:annotation>
          <xs:documentation>Paddlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL020">
        <xs:annotation>
          <xs:documentation>Postling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL021">
        <xs:annotation>
          <xs:documentation>St. Mary in the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL022">
        <xs:annotation>
          <xs:documentation>Saltwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL023">
        <xs:annotation>
          <xs:documentation>Sellindge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL024">
        <xs:annotation>
          <xs:documentation>Snargate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL025">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL026">
        <xs:annotation>
          <xs:documentation>Stelling Minnis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL027">
        <xs:annotation>
          <xs:documentation>Stowting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL028">
        <xs:annotation>
          <xs:documentation>Swingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL029">
        <xs:annotation>
          <xs:documentation>Folkestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL030">
        <xs:annotation>
          <xs:documentation>Sandgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM001">
        <xs:annotation>
          <xs:documentation>Badlesmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM002">
        <xs:annotation>
          <xs:documentation>Bapchild</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM003">
        <xs:annotation>
          <xs:documentation>Bobbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM004">
        <xs:annotation>
          <xs:documentation>Borden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM005">
        <xs:annotation>
          <xs:documentation>Boughton under Blean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM006">
        <xs:annotation>
          <xs:documentation>Bredgar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM008">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM009">
        <xs:annotation>
          <xs:documentation>Dunkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM010">
        <xs:annotation>
          <xs:documentation>Eastchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM011">
        <xs:annotation>
          <xs:documentation>Eastling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM012">
        <xs:annotation>
          <xs:documentation>Faversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM013">
        <xs:annotation>
          <xs:documentation>Graveney with Goodnestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM014">
        <xs:annotation>
          <xs:documentation>Hartlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM015">
        <xs:annotation>
          <xs:documentation>Hernhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM016">
        <xs:annotation>
          <xs:documentation>Iwade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM017">
        <xs:annotation>
          <xs:documentation>Leaveland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM018">
        <xs:annotation>
          <xs:documentation>Leysdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM019">
        <xs:annotation>
          <xs:documentation>Lower Halstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM020">
        <xs:annotation>
          <xs:documentation>Luddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM021">
        <xs:annotation>
          <xs:documentation>Lynsted with Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM022">
        <xs:annotation>
          <xs:documentation>Milstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM023">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM024">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM025">
        <xs:annotation>
          <xs:documentation>Norton, Buckland and Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM026">
        <xs:annotation>
          <xs:documentation>Oare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM027">
        <xs:annotation>
          <xs:documentation>Ospringe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM028">
        <xs:annotation>
          <xs:documentation>Queenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM029">
        <xs:annotation>
          <xs:documentation>Rodmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM030">
        <xs:annotation>
          <xs:documentation>Selling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM031">
        <xs:annotation>
          <xs:documentation>Sheldwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM032">
        <xs:annotation>
          <xs:documentation>Stalisfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM034">
        <xs:annotation>
          <xs:documentation>Teynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM035">
        <xs:annotation>
          <xs:documentation>Throwley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM036">
        <xs:annotation>
          <xs:documentation>Tonge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM037">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM038">
        <xs:annotation>
          <xs:documentation>Upchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM039">
        <xs:annotation>
          <xs:documentation>Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM040">
        <xs:annotation>
          <xs:documentation>Minster-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN001">
        <xs:annotation>
          <xs:documentation>Acol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN002">
        <xs:annotation>
          <xs:documentation>Birchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN003">
        <xs:annotation>
          <xs:documentation>Broadstairs and St. Peters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN004">
        <xs:annotation>
          <xs:documentation>Manston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN005">
        <xs:annotation>
          <xs:documentation>Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN006">
        <xs:annotation>
          <xs:documentation>Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN007">
        <xs:annotation>
          <xs:documentation>St. Nicholas at Wade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN008">
        <xs:annotation>
          <xs:documentation>Sarre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN009">
        <xs:annotation>
          <xs:documentation>Cliffsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP001">
        <xs:annotation>
          <xs:documentation>Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP002">
        <xs:annotation>
          <xs:documentation>Aylesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP003">
        <xs:annotation>
          <xs:documentation>Birling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP004">
        <xs:annotation>
          <xs:documentation>Borough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP005">
        <xs:annotation>
          <xs:documentation>Burham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP006">
        <xs:annotation>
          <xs:documentation>Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP007">
        <xs:annotation>
          <xs:documentation>East Malling and Larkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP008">
        <xs:annotation>
          <xs:documentation>East Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP009">
        <xs:annotation>
          <xs:documentation>Hadlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP010">
        <xs:annotation>
          <xs:documentation>Hildenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP011">
        <xs:annotation>
          <xs:documentation>Ightham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP012">
        <xs:annotation>
          <xs:documentation>Leybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP013">
        <xs:annotation>
          <xs:documentation>Mereworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP014">
        <xs:annotation>
          <xs:documentation>Offham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP015">
        <xs:annotation>
          <xs:documentation>Platt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP016">
        <xs:annotation>
          <xs:documentation>Plaxtol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP017">
        <xs:annotation>
          <xs:documentation>Ryarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP018">
        <xs:annotation>
          <xs:documentation>Shipbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP019">
        <xs:annotation>
          <xs:documentation>Snodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP020">
        <xs:annotation>
          <xs:documentation>Stansted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP021">
        <xs:annotation>
          <xs:documentation>Trottiscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP022">
        <xs:annotation>
          <xs:documentation>Wateringbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP023">
        <xs:annotation>
          <xs:documentation>West Malling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP024">
        <xs:annotation>
          <xs:documentation>West Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP025">
        <xs:annotation>
          <xs:documentation>Wouldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP026">
        <xs:annotation>
          <xs:documentation>Wrotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP027">
        <xs:annotation>
          <xs:documentation>Kings Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ001">
        <xs:annotation>
          <xs:documentation>Benenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ002">
        <xs:annotation>
          <xs:documentation>Bidborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ003">
        <xs:annotation>
          <xs:documentation>Brenchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ004">
        <xs:annotation>
          <xs:documentation>Capel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ005">
        <xs:annotation>
          <xs:documentation>Cranbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ006">
        <xs:annotation>
          <xs:documentation>Frittenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ007">
        <xs:annotation>
          <xs:documentation>Goudhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ008">
        <xs:annotation>
          <xs:documentation>Hawkhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ009">
        <xs:annotation>
          <xs:documentation>Horsmonden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ010">
        <xs:annotation>
          <xs:documentation>Lamberhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ011">
        <xs:annotation>
          <xs:documentation>Paddock Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ012">
        <xs:annotation>
          <xs:documentation>Pembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ013">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ014">
        <xs:annotation>
          <xs:documentation>Southborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ015">
        <xs:annotation>
          <xs:documentation>Speldhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD001">
        <xs:annotation>
          <xs:documentation>Briercliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD002">
        <xs:annotation>
          <xs:documentation>Cliviger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD003">
        <xs:annotation>
          <xs:documentation>Dunnockshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD004">
        <xs:annotation>
          <xs:documentation>Habergham Eaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD005">
        <xs:annotation>
          <xs:documentation>Hapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD006">
        <xs:annotation>
          <xs:documentation>Ightenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD007">
        <xs:annotation>
          <xs:documentation>Worsthorne-with-Hurstwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD008">
        <xs:annotation>
          <xs:documentation>Padiham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE001">
        <xs:annotation>
          <xs:documentation>Adlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE002">
        <xs:annotation>
          <xs:documentation>Anderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE003">
        <xs:annotation>
          <xs:documentation>Anglezarke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE004">
        <xs:annotation>
          <xs:documentation>Astley Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE005">
        <xs:annotation>
          <xs:documentation>Bretherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE006">
        <xs:annotation>
          <xs:documentation>Brindle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE007">
        <xs:annotation>
          <xs:documentation>Charnock Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE008">
        <xs:annotation>
          <xs:documentation>Clayton-le-Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE009">
        <xs:annotation>
          <xs:documentation>Coppull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE010">
        <xs:annotation>
          <xs:documentation>Croston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE011">
        <xs:annotation>
          <xs:documentation>Cuerden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE012">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE013">
        <xs:annotation>
          <xs:documentation>Euxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE014">
        <xs:annotation>
          <xs:documentation>Heapey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE015">
        <xs:annotation>
          <xs:documentation>Heath Charnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE016">
        <xs:annotation>
          <xs:documentation>Heskin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE017">
        <xs:annotation>
          <xs:documentation>Hoghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE018">
        <xs:annotation>
          <xs:documentation>Mawdesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE019">
        <xs:annotation>
          <xs:documentation>Rivington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE020">
        <xs:annotation>
          <xs:documentation>Ulnes Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE021">
        <xs:annotation>
          <xs:documentation>Wheelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE022">
        <xs:annotation>
          <xs:documentation>Whittle-le-Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE023">
        <xs:annotation>
          <xs:documentation>Withnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF001">
        <xs:annotation>
          <xs:documentation>Bryning-with-Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF002">
        <xs:annotation>
          <xs:documentation>Elswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF003">
        <xs:annotation>
          <xs:documentation>Freckleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF004">
        <xs:annotation>
          <xs:documentation>Greenhalgh-with-Thistleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF005">
        <xs:annotation>
          <xs:documentation>Kirkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF006">
        <xs:annotation>
          <xs:documentation>Little Eccleston-with-Larbreck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF007">
        <xs:annotation>
          <xs:documentation>Medlar-with-Wesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF008">
        <xs:annotation>
          <xs:documentation>Newton-with-Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF009">
        <xs:annotation>
          <xs:documentation>Ribby-with-Wrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF010">
        <xs:annotation>
          <xs:documentation>Singleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF011">
        <xs:annotation>
          <xs:documentation>Staining</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF012">
        <xs:annotation>
          <xs:documentation>Treales, Roseacre and Wharles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF013">
        <xs:annotation>
          <xs:documentation>Weeton-with-Preese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF014">
        <xs:annotation>
          <xs:documentation>Westby-with-Plumptons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UG001">
        <xs:annotation>
          <xs:documentation>Altham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH001">
        <xs:annotation>
          <xs:documentation>Arkholme-with-Cawood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH002">
        <xs:annotation>
          <xs:documentation>Bolton-le-Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH003">
        <xs:annotation>
          <xs:documentation>Borwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH004">
        <xs:annotation>
          <xs:documentation>Burrow-with-Burrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH005">
        <xs:annotation>
          <xs:documentation>Cantsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH006">
        <xs:annotation>
          <xs:documentation>Carnforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH007">
        <xs:annotation>
          <xs:documentation>Caton-with-Littledale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH008">
        <xs:annotation>
          <xs:documentation>Claughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH009">
        <xs:annotation>
          <xs:documentation>Cockerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH010">
        <xs:annotation>
          <xs:documentation>Ellel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH011">
        <xs:annotation>
          <xs:documentation>Gressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH012">
        <xs:annotation>
          <xs:documentation>Halton-with-Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH013">
        <xs:annotation>
          <xs:documentation>Heaton-with-Oxcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH014">
        <xs:annotation>
          <xs:documentation>Hornby-with-Farleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH015">
        <xs:annotation>
          <xs:documentation>Ireby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH016">
        <xs:annotation>
          <xs:documentation>Leck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH017">
        <xs:annotation>
          <xs:documentation>Melling-with-Wrayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH018">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH019">
        <xs:annotation>
          <xs:documentation>Nether Kellet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH020">
        <xs:annotation>
          <xs:documentation>Over Kellet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH021">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH022">
        <xs:annotation>
          <xs:documentation>Over Wyresdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH023">
        <xs:annotation>
          <xs:documentation>Priest Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH024">
        <xs:annotation>
          <xs:documentation>Quernmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH025">
        <xs:annotation>
          <xs:documentation>Roeburndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH026">
        <xs:annotation>
          <xs:documentation>Scotforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH027">
        <xs:annotation>
          <xs:documentation>Silverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH028">
        <xs:annotation>
          <xs:documentation>Slyne-with-Hest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH029">
        <xs:annotation>
          <xs:documentation>Tatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH030">
        <xs:annotation>
          <xs:documentation>Thurnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH031">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH032">
        <xs:annotation>
          <xs:documentation>Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH033">
        <xs:annotation>
          <xs:documentation>Wennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH034">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH035">
        <xs:annotation>
          <xs:documentation>Wray-with-Botton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH036">
        <xs:annotation>
          <xs:documentation>Yealand Conyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH037">
        <xs:annotation>
          <xs:documentation>Yealand Redmayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ001">
        <xs:annotation>
          <xs:documentation>Barley-with-Wheatley Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ002">
        <xs:annotation>
          <xs:documentation>Barnoldswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ003">
        <xs:annotation>
          <xs:documentation>Barrowford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ004">
        <xs:annotation>
          <xs:documentation>Blacko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ005">
        <xs:annotation>
          <xs:documentation>Bracewell and Brogden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ006">
        <xs:annotation>
          <xs:documentation>Foulridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ007">
        <xs:annotation>
          <xs:documentation>Goldshaw Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ008">
        <xs:annotation>
          <xs:documentation>Higham-with-West Close Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ009">
        <xs:annotation>
          <xs:documentation>Old Laund Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ010">
        <xs:annotation>
          <xs:documentation>Reedley Hallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ011">
        <xs:annotation>
          <xs:documentation>Roughlee Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ012">
        <xs:annotation>
          <xs:documentation>Salterforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ013">
        <xs:annotation>
          <xs:documentation>Trawden Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ014">
        <xs:annotation>
          <xs:documentation>Brierfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ015">
        <xs:annotation>
          <xs:documentation>Earby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ016">
        <xs:annotation>
          <xs:documentation>Kelbrook and Sough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ017">
        <xs:annotation>
          <xs:documentation>Laneshaw Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK001">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK002">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK003">
        <xs:annotation>
          <xs:documentation>Goosnargh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK004">
        <xs:annotation>
          <xs:documentation>Grimsargh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK005">
        <xs:annotation>
          <xs:documentation>Haighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK006">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK007">
        <xs:annotation>
          <xs:documentation>Whittingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK008">
        <xs:annotation>
          <xs:documentation>Woodplumpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL001">
        <xs:annotation>
          <xs:documentation>Aighton, Bailey and Chaigley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL002">
        <xs:annotation>
          <xs:documentation>Balderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL003">
        <xs:annotation>
          <xs:documentation>Bashall Eaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL004">
        <xs:annotation>
          <xs:documentation>Billington and Langho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL005">
        <xs:annotation>
          <xs:documentation>Bolton-by-Bowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL006">
        <xs:annotation>
          <xs:documentation>Bowland Forest High</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL007">
        <xs:annotation>
          <xs:documentation>Bowland Forest Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL008">
        <xs:annotation>
          <xs:documentation>Bowland-with-Leagram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL009">
        <xs:annotation>
          <xs:documentation>Chatburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL010">
        <xs:annotation>
          <xs:documentation>Chipping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL011">
        <xs:annotation>
          <xs:documentation>Clayton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL012">
        <xs:annotation>
          <xs:documentation>Clitheroe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL013">
        <xs:annotation>
          <xs:documentation>Dinckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL014">
        <xs:annotation>
          <xs:documentation>Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL015">
        <xs:annotation>
          <xs:documentation>Dutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL016">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL017">
        <xs:annotation>
          <xs:documentation>Gisburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL018">
        <xs:annotation>
          <xs:documentation>Gisburn Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL019">
        <xs:annotation>
          <xs:documentation>Great Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL020">
        <xs:annotation>
          <xs:documentation>Grindleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL021">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL022">
        <xs:annotation>
          <xs:documentation>Hothersall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL023">
        <xs:annotation>
          <xs:documentation>Little Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL024">
        <xs:annotation>
          <xs:documentation>Longridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL025">
        <xs:annotation>
          <xs:documentation>Mearley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL026">
        <xs:annotation>
          <xs:documentation>Mellor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL027">
        <xs:annotation>
          <xs:documentation>Middop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL028">
        <xs:annotation>
          <xs:documentation>Newsholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL029">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL030">
        <xs:annotation>
          <xs:documentation>Osbaldeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL031">
        <xs:annotation>
          <xs:documentation>Paythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL032">
        <xs:annotation>
          <xs:documentation>Pendleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL033">
        <xs:annotation>
          <xs:documentation>Ramsgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL034">
        <xs:annotation>
          <xs:documentation>Read</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL035">
        <xs:annotation>
          <xs:documentation>Ribchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL036">
        <xs:annotation>
          <xs:documentation>Rimington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL037">
        <xs:annotation>
          <xs:documentation>Sabden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL038">
        <xs:annotation>
          <xs:documentation>Salesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL039">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL040">
        <xs:annotation>
          <xs:documentation>Simonstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL041">
        <xs:annotation>
          <xs:documentation>Slaidburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL042">
        <xs:annotation>
          <xs:documentation>Thornley-with-Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL043">
        <xs:annotation>
          <xs:documentation>Twiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL044">
        <xs:annotation>
          <xs:documentation>Waddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL045">
        <xs:annotation>
          <xs:documentation>West Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL046">
        <xs:annotation>
          <xs:documentation>Whalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL047">
        <xs:annotation>
          <xs:documentation>Wilpshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL048">
        <xs:annotation>
          <xs:documentation>Wiswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL049">
        <xs:annotation>
          <xs:documentation>Worston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UM001">
        <xs:annotation>
          <xs:documentation>Whitworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN001">
        <xs:annotation>
          <xs:documentation>Cuerdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN002">
        <xs:annotation>
          <xs:documentation>Farington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN003">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN004">
        <xs:annotation>
          <xs:documentation>Little Hoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN005">
        <xs:annotation>
          <xs:documentation>Longton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN006">
        <xs:annotation>
          <xs:documentation>Much Hoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN007">
        <xs:annotation>
          <xs:documentation>Penwortham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN008">
        <xs:annotation>
          <xs:documentation>Samlesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP001">
        <xs:annotation>
          <xs:documentation>Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP002">
        <xs:annotation>
          <xs:documentation>Bickerstaffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP003">
        <xs:annotation>
          <xs:documentation>Bispham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP004">
        <xs:annotation>
          <xs:documentation>Burscough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP005">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP006">
        <xs:annotation>
          <xs:documentation>Downholland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP007">
        <xs:annotation>
          <xs:documentation>Great Altcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP008">
        <xs:annotation>
          <xs:documentation>Halsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP009">
        <xs:annotation>
          <xs:documentation>Hesketh-with-Becconsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP010">
        <xs:annotation>
          <xs:documentation>Lathom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP011">
        <xs:annotation>
          <xs:documentation>Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP012">
        <xs:annotation>
          <xs:documentation>North Meols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP013">
        <xs:annotation>
          <xs:documentation>Parbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP014">
        <xs:annotation>
          <xs:documentation>Rufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP015">
        <xs:annotation>
          <xs:documentation>Scarisbrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP016">
        <xs:annotation>
          <xs:documentation>Tarleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP017">
        <xs:annotation>
          <xs:documentation>Up Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP018">
        <xs:annotation>
          <xs:documentation>Wrightington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP019">
        <xs:annotation>
          <xs:documentation>Simonswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP020">
        <xs:annotation>
          <xs:documentation>Hilldale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ001">
        <xs:annotation>
          <xs:documentation>Barnacre-with-Bonds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ003">
        <xs:annotation>
          <xs:documentation>Bleasdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ004">
        <xs:annotation>
          <xs:documentation>Cabus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ005">
        <xs:annotation>
          <xs:documentation>Catterall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ006">
        <xs:annotation>
          <xs:documentation>Claughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ007">
        <xs:annotation>
          <xs:documentation>Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ008">
        <xs:annotation>
          <xs:documentation>Garstang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ009">
        <xs:annotation>
          <xs:documentation>Great Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ010">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ011">
        <xs:annotation>
          <xs:documentation>Inskip-with-Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ012">
        <xs:annotation>
          <xs:documentation>Kirkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ014">
        <xs:annotation>
          <xs:documentation>Nateby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ015">
        <xs:annotation>
          <xs:documentation>Nether Wyersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ016">
        <xs:annotation>
          <xs:documentation>Out Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ017">
        <xs:annotation>
          <xs:documentation>Pilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ018">
        <xs:annotation>
          <xs:documentation>Preesall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ019">
        <xs:annotation>
          <xs:documentation>Stalmine-with-Staynall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ020">
        <xs:annotation>
          <xs:documentation>Upper Rawcliffe-with-Tarnacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ021">
        <xs:annotation>
          <xs:documentation>Winmarleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ022">
        <xs:annotation>
          <xs:documentation>Myerscough and Bilsborrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB001">
        <xs:annotation>
          <xs:documentation>Aston Flamville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB002">
        <xs:annotation>
          <xs:documentation>Blaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB003">
        <xs:annotation>
          <xs:documentation>Braunstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB004">
        <xs:annotation>
          <xs:documentation>Cosby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB005">
        <xs:annotation>
          <xs:documentation>Countesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB006">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB007">
        <xs:annotation>
          <xs:documentation>Elmesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB008">
        <xs:annotation>
          <xs:documentation>Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB009">
        <xs:annotation>
          <xs:documentation>Glenfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB010">
        <xs:annotation>
          <xs:documentation>Glen Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB011">
        <xs:annotation>
          <xs:documentation>Huncote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB012">
        <xs:annotation>
          <xs:documentation>Kilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB013">
        <xs:annotation>
          <xs:documentation>Kirby Muxloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB014">
        <xs:annotation>
          <xs:documentation>Leicester Forest East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB015">
        <xs:annotation>
          <xs:documentation>Leicester Forest West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB016">
        <xs:annotation>
          <xs:documentation>Lubbesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB017">
        <xs:annotation>
          <xs:documentation>Narborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB018">
        <xs:annotation>
          <xs:documentation>Potters Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB019">
        <xs:annotation>
          <xs:documentation>Sapcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB020">
        <xs:annotation>
          <xs:documentation>Sharnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB021">
        <xs:annotation>
          <xs:documentation>Stoney Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB022">
        <xs:annotation>
          <xs:documentation>Thurlaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB023">
        <xs:annotation>
          <xs:documentation>Whetstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB024">
        <xs:annotation>
          <xs:documentation>Wigston Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC001">
        <xs:annotation>
          <xs:documentation>Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC002">
        <xs:annotation>
          <xs:documentation>Barkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC003">
        <xs:annotation>
          <xs:documentation>Barkby Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC004">
        <xs:annotation>
          <xs:documentation>Barrow upon Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC005">
        <xs:annotation>
          <xs:documentation>Beeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC006">
        <xs:annotation>
          <xs:documentation>Birstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC007">
        <xs:annotation>
          <xs:documentation>Burton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC008">
        <xs:annotation>
          <xs:documentation>Cossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC009">
        <xs:annotation>
          <xs:documentation>Cotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC010">
        <xs:annotation>
          <xs:documentation>East Goscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC011">
        <xs:annotation>
          <xs:documentation>Hathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC012">
        <xs:annotation>
          <xs:documentation>Hoton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC013">
        <xs:annotation>
          <xs:documentation>Mountsorrel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC014">
        <xs:annotation>
          <xs:documentation>Newtown Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC015">
        <xs:annotation>
          <xs:documentation>Prestwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC016">
        <xs:annotation>
          <xs:documentation>Queniborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC017">
        <xs:annotation>
          <xs:documentation>Quorndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC018">
        <xs:annotation>
          <xs:documentation>Ratcliffe on the Wreake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC019">
        <xs:annotation>
          <xs:documentation>Rearsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC020">
        <xs:annotation>
          <xs:documentation>Rothley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC021">
        <xs:annotation>
          <xs:documentation>Seagrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC022">
        <xs:annotation>
          <xs:documentation>Shepshed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC023">
        <xs:annotation>
          <xs:documentation>Sileby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC024">
        <xs:annotation>
          <xs:documentation>South Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC025">
        <xs:annotation>
          <xs:documentation>Swithland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC026">
        <xs:annotation>
          <xs:documentation>Syston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC027">
        <xs:annotation>
          <xs:documentation>Thrussington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC028">
        <xs:annotation>
          <xs:documentation>Thurcaston and Cropston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC029">
        <xs:annotation>
          <xs:documentation>Thurmaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC030">
        <xs:annotation>
          <xs:documentation>Ulverscroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC031">
        <xs:annotation>
          <xs:documentation>Walton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC032">
        <xs:annotation>
          <xs:documentation>Wanlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC033">
        <xs:annotation>
          <xs:documentation>Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC034">
        <xs:annotation>
          <xs:documentation>Wymeswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD001">
        <xs:annotation>
          <xs:documentation>Allexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD002">
        <xs:annotation>
          <xs:documentation>Arnesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD003">
        <xs:annotation>
          <xs:documentation>Ashby Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD004">
        <xs:annotation>
          <xs:documentation>Ashby Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD005">
        <xs:annotation>
          <xs:documentation>Billesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD006">
        <xs:annotation>
          <xs:documentation>Bittesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD007">
        <xs:annotation>
          <xs:documentation>Bitteswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD008">
        <xs:annotation>
          <xs:documentation>Blaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD009">
        <xs:annotation>
          <xs:documentation>Bringhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD010">
        <xs:annotation>
          <xs:documentation>Broughton Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD011">
        <xs:annotation>
          <xs:documentation>Bruntingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD012">
        <xs:annotation>
          <xs:documentation>Burton Overy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD013">
        <xs:annotation>
          <xs:documentation>Carlton Curlieu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD014">
        <xs:annotation>
          <xs:documentation>Catthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD015">
        <xs:annotation>
          <xs:documentation>Claybrooke Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD016">
        <xs:annotation>
          <xs:documentation>Claybrooke Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD017">
        <xs:annotation>
          <xs:documentation>Cold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD018">
        <xs:annotation>
          <xs:documentation>Cotesbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD019">
        <xs:annotation>
          <xs:documentation>Cranoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD020">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD021">
        <xs:annotation>
          <xs:documentation>Dunton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD022">
        <xs:annotation>
          <xs:documentation>East Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD023">
        <xs:annotation>
          <xs:documentation>East Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD024">
        <xs:annotation>
          <xs:documentation>Fleckney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD025">
        <xs:annotation>
          <xs:documentation>Foxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD026">
        <xs:annotation>
          <xs:documentation>Frisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD027">
        <xs:annotation>
          <xs:documentation>Frolesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD028">
        <xs:annotation>
          <xs:documentation>Gaulby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD029">
        <xs:annotation>
          <xs:documentation>Gilmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD030">
        <xs:annotation>
          <xs:documentation>Glooston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD031">
        <xs:annotation>
          <xs:documentation>Goadby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD032">
        <xs:annotation>
          <xs:documentation>Great Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD033">
        <xs:annotation>
          <xs:documentation>Great Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD034">
        <xs:annotation>
          <xs:documentation>Gumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD035">
        <xs:annotation>
          <xs:documentation>Hallaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD036">
        <xs:annotation>
          <xs:documentation>Horninghold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD037">
        <xs:annotation>
          <xs:documentation>Houghton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD038">
        <xs:annotation>
          <xs:documentation>Hungarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD039">
        <xs:annotation>
          <xs:documentation>Husbands Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD040">
        <xs:annotation>
          <xs:documentation>Illston on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD041">
        <xs:annotation>
          <xs:documentation>Keyham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD042">
        <xs:annotation>
          <xs:documentation>Kibworth Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD043">
        <xs:annotation>
          <xs:documentation>Kibworth Harcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD044">
        <xs:annotation>
          <xs:documentation>Kimcote and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD045">
        <xs:annotation>
          <xs:documentation>King's Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD046">
        <xs:annotation>
          <xs:documentation>Knaptoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD047">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD048">
        <xs:annotation>
          <xs:documentation>Launde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD049">
        <xs:annotation>
          <xs:documentation>Leire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD050">
        <xs:annotation>
          <xs:documentation>Little Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD051">
        <xs:annotation>
          <xs:documentation>Loddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD052">
        <xs:annotation>
          <xs:documentation>Lowesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD053">
        <xs:annotation>
          <xs:documentation>Lubenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD054">
        <xs:annotation>
          <xs:documentation>Lutterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD055">
        <xs:annotation>
          <xs:documentation>Marefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD056">
        <xs:annotation>
          <xs:documentation>Medbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD057">
        <xs:annotation>
          <xs:documentation>Misterton with Walcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD058">
        <xs:annotation>
          <xs:documentation>Mowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD059">
        <xs:annotation>
          <xs:documentation>Nevill Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD060">
        <xs:annotation>
          <xs:documentation>North Kilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD061">
        <xs:annotation>
          <xs:documentation>Noseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD062">
        <xs:annotation>
          <xs:documentation>Owston and Newbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD063">
        <xs:annotation>
          <xs:documentation>Peatling Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD064">
        <xs:annotation>
          <xs:documentation>Peatling Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD065">
        <xs:annotation>
          <xs:documentation>Rolleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD066">
        <xs:annotation>
          <xs:documentation>Saddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD067">
        <xs:annotation>
          <xs:documentation>Scraptoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD068">
        <xs:annotation>
          <xs:documentation>Shangton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD069">
        <xs:annotation>
          <xs:documentation>Shawell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD070">
        <xs:annotation>
          <xs:documentation>Shearsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD071">
        <xs:annotation>
          <xs:documentation>Skeffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD072">
        <xs:annotation>
          <xs:documentation>Slawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD073">
        <xs:annotation>
          <xs:documentation>Smeeton Westerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD074">
        <xs:annotation>
          <xs:documentation>South Kilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD075">
        <xs:annotation>
          <xs:documentation>Stockerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD076">
        <xs:annotation>
          <xs:documentation>Stonton Wyville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD077">
        <xs:annotation>
          <xs:documentation>Stoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD079">
        <xs:annotation>
          <xs:documentation>Swinford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD080">
        <xs:annotation>
          <xs:documentation>Theddingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD081">
        <xs:annotation>
          <xs:documentation>Thorpe Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD082">
        <xs:annotation>
          <xs:documentation>Thurnby and Bushby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD083">
        <xs:annotation>
          <xs:documentation>Tilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD084">
        <xs:annotation>
          <xs:documentation>Tugby and Keythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD085">
        <xs:annotation>
          <xs:documentation>Tur Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD086">
        <xs:annotation>
          <xs:documentation>Ullesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD087">
        <xs:annotation>
          <xs:documentation>Welham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD088">
        <xs:annotation>
          <xs:documentation>West Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD089">
        <xs:annotation>
          <xs:documentation>Westrill and Starmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD091">
        <xs:annotation>
          <xs:documentation>Willoughby Waterleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD092">
        <xs:annotation>
          <xs:documentation>Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD093">
        <xs:annotation>
          <xs:documentation>Withcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD094">
        <xs:annotation>
          <xs:documentation>Great Bowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE001">
        <xs:annotation>
          <xs:documentation>Bagworth &amp; Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE002">
        <xs:annotation>
          <xs:documentation>Barlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE003">
        <xs:annotation>
          <xs:documentation>Burbage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE004">
        <xs:annotation>
          <xs:documentation>Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE005">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE006">
        <xs:annotation>
          <xs:documentation>Desford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE007">
        <xs:annotation>
          <xs:documentation>Groby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE008">
        <xs:annotation>
          <xs:documentation>Higham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE009">
        <xs:annotation>
          <xs:documentation>Market Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE010">
        <xs:annotation>
          <xs:documentation>Markfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE011">
        <xs:annotation>
          <xs:documentation>Nailstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE012">
        <xs:annotation>
          <xs:documentation>Newbold Verdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE013">
        <xs:annotation>
          <xs:documentation>Osbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE014">
        <xs:annotation>
          <xs:documentation>Peckleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE015">
        <xs:annotation>
          <xs:documentation>Ratby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE016">
        <xs:annotation>
          <xs:documentation>Shackerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE017">
        <xs:annotation>
          <xs:documentation>Sheepy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE018">
        <xs:annotation>
          <xs:documentation>Stanton-under-Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE019">
        <xs:annotation>
          <xs:documentation>Stoke Golding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE020">
        <xs:annotation>
          <xs:documentation>Sutton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE021">
        <xs:annotation>
          <xs:documentation>Twycross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE022">
        <xs:annotation>
          <xs:documentation>Witherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE023">
        <xs:annotation>
          <xs:documentation>Earl Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG001">
        <xs:annotation>
          <xs:documentation>Ab Kettleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG002">
        <xs:annotation>
          <xs:documentation>Asfordby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG003">
        <xs:annotation>
          <xs:documentation>Belvoir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG004">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG005">
        <xs:annotation>
          <xs:documentation>Broughton and Old Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG006">
        <xs:annotation>
          <xs:documentation>Buckminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG007">
        <xs:annotation>
          <xs:documentation>Burton and Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG008">
        <xs:annotation>
          <xs:documentation>Clawson, Hose and Harby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG009">
        <xs:annotation>
          <xs:documentation>Croxton Kerrial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG010">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG011">
        <xs:annotation>
          <xs:documentation>Freeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG012">
        <xs:annotation>
          <xs:documentation>Frisby and Kirby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG013">
        <xs:annotation>
          <xs:documentation>Gaddesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG014">
        <xs:annotation>
          <xs:documentation>Garthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG015">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG016">
        <xs:annotation>
          <xs:documentation>Hoby with Rotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG017">
        <xs:annotation>
          <xs:documentation>Knossington and Cold Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG018">
        <xs:annotation>
          <xs:documentation>Redmile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG019">
        <xs:annotation>
          <xs:documentation>Scalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG020">
        <xs:annotation>
          <xs:documentation>Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG021">
        <xs:annotation>
          <xs:documentation>Sproxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG022">
        <xs:annotation>
          <xs:documentation>Stathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG023">
        <xs:annotation>
          <xs:documentation>Twyford and Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG024">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG025">
        <xs:annotation>
          <xs:documentation>Wymondham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH001">
        <xs:annotation>
          <xs:documentation>Appleby Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH002">
        <xs:annotation>
          <xs:documentation>Ashby-de-la-Zouch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH003">
        <xs:annotation>
          <xs:documentation>Ashby Woulds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH004">
        <xs:annotation>
          <xs:documentation>Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH005">
        <xs:annotation>
          <xs:documentation>Belton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH006">
        <xs:annotation>
          <xs:documentation>Breedon on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH007">
        <xs:annotation>
          <xs:documentation>Castle Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH008">
        <xs:annotation>
          <xs:documentation>Charley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH009">
        <xs:annotation>
          <xs:documentation>Chilcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH010">
        <xs:annotation>
          <xs:documentation>Coleorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH011">
        <xs:annotation>
          <xs:documentation>Heather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH012">
        <xs:annotation>
          <xs:documentation>Ibstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH013">
        <xs:annotation>
          <xs:documentation>Isley cum Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH014">
        <xs:annotation>
          <xs:documentation>Kegworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH015">
        <xs:annotation>
          <xs:documentation>Lockington-Hemington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH016">
        <xs:annotation>
          <xs:documentation>Long Whatton and Diseworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH017">
        <xs:annotation>
          <xs:documentation>Measham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH018">
        <xs:annotation>
          <xs:documentation>Normanton le Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH019">
        <xs:annotation>
          <xs:documentation>Oakthorpe and Donisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH020">
        <xs:annotation>
          <xs:documentation>Osgathorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH021">
        <xs:annotation>
          <xs:documentation>Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH022">
        <xs:annotation>
          <xs:documentation>Ravenstone with Snibstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH023">
        <xs:annotation>
          <xs:documentation>Snarestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH024">
        <xs:annotation>
          <xs:documentation>Staunton Harold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH025">
        <xs:annotation>
          <xs:documentation>Stretton en le Field</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH026">
        <xs:annotation>
          <xs:documentation>Swannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH027">
        <xs:annotation>
          <xs:documentation>Swepstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH028">
        <xs:annotation>
          <xs:documentation>Worthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH029">
        <xs:annotation>
          <xs:documentation>Ellistown and Battleflat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB001">
        <xs:annotation>
          <xs:documentation>Algarkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB002">
        <xs:annotation>
          <xs:documentation>Amber Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB003">
        <xs:annotation>
          <xs:documentation>Benington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB004">
        <xs:annotation>
          <xs:documentation>Bicker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB005">
        <xs:annotation>
          <xs:documentation>Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB006">
        <xs:annotation>
          <xs:documentation>Fishtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB007">
        <xs:annotation>
          <xs:documentation>Fosdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB008">
        <xs:annotation>
          <xs:documentation>Frampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB009">
        <xs:annotation>
          <xs:documentation>Freiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB010">
        <xs:annotation>
          <xs:documentation>Holland Fen with Brothertoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB011">
        <xs:annotation>
          <xs:documentation>Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB012">
        <xs:annotation>
          <xs:documentation>Leverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB013">
        <xs:annotation>
          <xs:documentation>Old Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB014">
        <xs:annotation>
          <xs:documentation>Sutterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB015">
        <xs:annotation>
          <xs:documentation>Swineshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB016">
        <xs:annotation>
          <xs:documentation>Wigtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB017">
        <xs:annotation>
          <xs:documentation>Wrangle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB018">
        <xs:annotation>
          <xs:documentation>Wyberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC001">
        <xs:annotation>
          <xs:documentation>Aby with Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC002">
        <xs:annotation>
          <xs:documentation>Addlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC003">
        <xs:annotation>
          <xs:documentation>Alford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC004">
        <xs:annotation>
          <xs:documentation>Alvingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC005">
        <xs:annotation>
          <xs:documentation>Anderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC006">
        <xs:annotation>
          <xs:documentation>Ashby with Scremby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC007">
        <xs:annotation>
          <xs:documentation>Asterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC008">
        <xs:annotation>
          <xs:documentation>Aswardby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC009">
        <xs:annotation>
          <xs:documentation>Authorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC010">
        <xs:annotation>
          <xs:documentation>Baumber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC011">
        <xs:annotation>
          <xs:documentation>Beesby with Saleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC012">
        <xs:annotation>
          <xs:documentation>Belchford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC013">
        <xs:annotation>
          <xs:documentation>Belleau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC014">
        <xs:annotation>
          <xs:documentation>Benniworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC015">
        <xs:annotation>
          <xs:documentation>Bilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC016">
        <xs:annotation>
          <xs:documentation>Binbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC017">
        <xs:annotation>
          <xs:documentation>Bolingbroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC018">
        <xs:annotation>
          <xs:documentation>Brackenborough with Little Grimsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC019">
        <xs:annotation>
          <xs:documentation>Bratoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC020">
        <xs:annotation>
          <xs:documentation>Brinkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC021">
        <xs:annotation>
          <xs:documentation>Bucknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC022">
        <xs:annotation>
          <xs:documentation>Burgh le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC023">
        <xs:annotation>
          <xs:documentation>Burgh on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC024">
        <xs:annotation>
          <xs:documentation>Burwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC025">
        <xs:annotation>
          <xs:documentation>Calcethorpe with Kelstern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC026">
        <xs:annotation>
          <xs:documentation>Candlesby with Gunby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC027">
        <xs:annotation>
          <xs:documentation>Carrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC028">
        <xs:annotation>
          <xs:documentation>Chapel St. Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC029">
        <xs:annotation>
          <xs:documentation>Claxby St Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC030">
        <xs:annotation>
          <xs:documentation>Claxby with Moorby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC031">
        <xs:annotation>
          <xs:documentation>Claythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC032">
        <xs:annotation>
          <xs:documentation>Coningsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC033">
        <xs:annotation>
          <xs:documentation>Conisholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC034">
        <xs:annotation>
          <xs:documentation>Covenham St Bartholomew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC035">
        <xs:annotation>
          <xs:documentation>Covenham St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC036">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC037">
        <xs:annotation>
          <xs:documentation>Cumberworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC038">
        <xs:annotation>
          <xs:documentation>Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC039">
        <xs:annotation>
          <xs:documentation>Donington on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC040">
        <xs:annotation>
          <xs:documentation>East Barkwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC041">
        <xs:annotation>
          <xs:documentation>East Keal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC042">
        <xs:annotation>
          <xs:documentation>East Kirkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC043">
        <xs:annotation>
          <xs:documentation>Eastville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC044">
        <xs:annotation>
          <xs:documentation>Edlington with Wispington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC045">
        <xs:annotation>
          <xs:documentation>Elkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC046">
        <xs:annotation>
          <xs:documentation>Farlesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC047">
        <xs:annotation>
          <xs:documentation>Firsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC048">
        <xs:annotation>
          <xs:documentation>Fotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC049">
        <xs:annotation>
          <xs:documentation>Friskney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC050">
        <xs:annotation>
          <xs:documentation>Frithville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC051">
        <xs:annotation>
          <xs:documentation>Fulletby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC052">
        <xs:annotation>
          <xs:documentation>Fulstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC053">
        <xs:annotation>
          <xs:documentation>Gautby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC054">
        <xs:annotation>
          <xs:documentation>Gayton le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC055">
        <xs:annotation>
          <xs:documentation>Gayton le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC056">
        <xs:annotation>
          <xs:documentation>Goulceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC057">
        <xs:annotation>
          <xs:documentation>Grainsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC058">
        <xs:annotation>
          <xs:documentation>Grainthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC059">
        <xs:annotation>
          <xs:documentation>Great Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC060">
        <xs:annotation>
          <xs:documentation>Great Steeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC061">
        <xs:annotation>
          <xs:documentation>Great Sturton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC062">
        <xs:annotation>
          <xs:documentation>Greetham with Somersby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC063">
        <xs:annotation>
          <xs:documentation>Grimoldby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC064">
        <xs:annotation>
          <xs:documentation>Hagworthingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC065">
        <xs:annotation>
          <xs:documentation>Hainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC066">
        <xs:annotation>
          <xs:documentation>Hallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC067">
        <xs:annotation>
          <xs:documentation>Haltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC068">
        <xs:annotation>
          <xs:documentation>Halton Holegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC069">
        <xs:annotation>
          <xs:documentation>Hameringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC070">
        <xs:annotation>
          <xs:documentation>Hannah cum Hagnaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC071">
        <xs:annotation>
          <xs:documentation>Harrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC072">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC073">
        <xs:annotation>
          <xs:documentation>Haugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC074">
        <xs:annotation>
          <xs:documentation>Haugham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC075">
        <xs:annotation>
          <xs:documentation>Hemingby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC076">
        <xs:annotation>
          <xs:documentation>High Toynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC077">
        <xs:annotation>
          <xs:documentation>Hogsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC078">
        <xs:annotation>
          <xs:documentation>Holton le Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC079">
        <xs:annotation>
          <xs:documentation>Horncastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC080">
        <xs:annotation>
          <xs:documentation>Horsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC081">
        <xs:annotation>
          <xs:documentation>Hundleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC082">
        <xs:annotation>
          <xs:documentation>Huttoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC083">
        <xs:annotation>
          <xs:documentation>Ingoldmells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC084">
        <xs:annotation>
          <xs:documentation>Irby in the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC085">
        <xs:annotation>
          <xs:documentation>Keddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC086">
        <xs:annotation>
          <xs:documentation>Kirkby on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC087">
        <xs:annotation>
          <xs:documentation>Langriville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC088">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC089">
        <xs:annotation>
          <xs:documentation>Langton by Spilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC090">
        <xs:annotation>
          <xs:documentation>Langton by Wragby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC091">
        <xs:annotation>
          <xs:documentation>Legbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC092">
        <xs:annotation>
          <xs:documentation>Little Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC093">
        <xs:annotation>
          <xs:documentation>Little Cawthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC094">
        <xs:annotation>
          <xs:documentation>Little Steeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC095">
        <xs:annotation>
          <xs:documentation>Louth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC096">
        <xs:annotation>
          <xs:documentation>Low Toynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC097">
        <xs:annotation>
          <xs:documentation>Ludborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC098">
        <xs:annotation>
          <xs:documentation>Ludford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC099">
        <xs:annotation>
          <xs:documentation>Lusby with Winceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC100">
        <xs:annotation>
          <xs:documentation>Mablethorpe and Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC101">
        <xs:annotation>
          <xs:documentation>Maidenwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC102">
        <xs:annotation>
          <xs:documentation>Maltby le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC103">
        <xs:annotation>
          <xs:documentation>Manby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC104">
        <xs:annotation>
          <xs:documentation>Mareham le Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC105">
        <xs:annotation>
          <xs:documentation>Mareham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC106">
        <xs:annotation>
          <xs:documentation>Markby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC107">
        <xs:annotation>
          <xs:documentation>Market Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC108">
        <xs:annotation>
          <xs:documentation>Marshchapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC109">
        <xs:annotation>
          <xs:documentation>Mavis Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC110">
        <xs:annotation>
          <xs:documentation>Midville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC111">
        <xs:annotation>
          <xs:documentation>Minting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC112">
        <xs:annotation>
          <xs:documentation>Muckton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC113">
        <xs:annotation>
          <xs:documentation>Mumby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC114">
        <xs:annotation>
          <xs:documentation>New Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC115">
        <xs:annotation>
          <xs:documentation>North Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC116">
        <xs:annotation>
          <xs:documentation>North Cockerington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC117">
        <xs:annotation>
          <xs:documentation>North Ormsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC118">
        <xs:annotation>
          <xs:documentation>North Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC119">
        <xs:annotation>
          <xs:documentation>North Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC120">
        <xs:annotation>
          <xs:documentation>Orby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC121">
        <xs:annotation>
          <xs:documentation>Partney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC122">
        <xs:annotation>
          <xs:documentation>Raithby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC123">
        <xs:annotation>
          <xs:documentation>Raithby cum Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC124">
        <xs:annotation>
          <xs:documentation>Ranby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC125">
        <xs:annotation>
          <xs:documentation>Reston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC126">
        <xs:annotation>
          <xs:documentation>Revesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC127">
        <xs:annotation>
          <xs:documentation>Rigsby with Ailby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC128">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC132">
        <xs:annotation>
          <xs:documentation>Sausthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC133">
        <xs:annotation>
          <xs:documentation>Scamblesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC134">
        <xs:annotation>
          <xs:documentation>Scrivelsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC135">
        <xs:annotation>
          <xs:documentation>Sibsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC136">
        <xs:annotation>
          <xs:documentation>Skegness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC137">
        <xs:annotation>
          <xs:documentation>Skendleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC138">
        <xs:annotation>
          <xs:documentation>Skidbrooke with Saltfleet Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC139">
        <xs:annotation>
          <xs:documentation>Sotby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC140">
        <xs:annotation>
          <xs:documentation>South Cockerington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC141">
        <xs:annotation>
          <xs:documentation>South Ormsby cum Ketsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC142">
        <xs:annotation>
          <xs:documentation>South Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC143">
        <xs:annotation>
          <xs:documentation>South Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC144">
        <xs:annotation>
          <xs:documentation>South Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC145">
        <xs:annotation>
          <xs:documentation>Spilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC146">
        <xs:annotation>
          <xs:documentation>Stenigot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC147">
        <xs:annotation>
          <xs:documentation>Stewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC148">
        <xs:annotation>
          <xs:documentation>Stickford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC149">
        <xs:annotation>
          <xs:documentation>Stickney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC150">
        <xs:annotation>
          <xs:documentation>Stixwould and Woodhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC151">
        <xs:annotation>
          <xs:documentation>Strubby with Woodthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC152">
        <xs:annotation>
          <xs:documentation>Swaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC153">
        <xs:annotation>
          <xs:documentation>Tathwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC154">
        <xs:annotation>
          <xs:documentation>Tattershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC155">
        <xs:annotation>
          <xs:documentation>Tattershall Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC156">
        <xs:annotation>
          <xs:documentation>Tetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC157">
        <xs:annotation>
          <xs:documentation>Tetney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC158">
        <xs:annotation>
          <xs:documentation>Theddlethorpe All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC159">
        <xs:annotation>
          <xs:documentation>Theddlethorpe St Helen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC160">
        <xs:annotation>
          <xs:documentation>Thimbleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC161">
        <xs:annotation>
          <xs:documentation>Thornton le Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC162">
        <xs:annotation>
          <xs:documentation>Thorpe St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC163">
        <xs:annotation>
          <xs:documentation>Toynton All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC164">
        <xs:annotation>
          <xs:documentation>Toynton St Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC165">
        <xs:annotation>
          <xs:documentation>Tumby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC166">
        <xs:annotation>
          <xs:documentation>Tupholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC167">
        <xs:annotation>
          <xs:documentation>Ulceby with Fordington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC168">
        <xs:annotation>
          <xs:documentation>Utterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC169">
        <xs:annotation>
          <xs:documentation>Waddingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC170">
        <xs:annotation>
          <xs:documentation>Wainfleet All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC171">
        <xs:annotation>
          <xs:documentation>Wainfleet St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC172">
        <xs:annotation>
          <xs:documentation>Waithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC173">
        <xs:annotation>
          <xs:documentation>Walmsgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC174">
        <xs:annotation>
          <xs:documentation>Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC175">
        <xs:annotation>
          <xs:documentation>Welton le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC176">
        <xs:annotation>
          <xs:documentation>Welton le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC177">
        <xs:annotation>
          <xs:documentation>West Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC178">
        <xs:annotation>
          <xs:documentation>West Barkwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC179">
        <xs:annotation>
          <xs:documentation>West Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC180">
        <xs:annotation>
          <xs:documentation>West Keal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC181">
        <xs:annotation>
          <xs:documentation>West Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC182">
        <xs:annotation>
          <xs:documentation>Westville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC183">
        <xs:annotation>
          <xs:documentation>Wildmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC184">
        <xs:annotation>
          <xs:documentation>Willoughby with Sloothby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC185">
        <xs:annotation>
          <xs:documentation>Withcall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC186">
        <xs:annotation>
          <xs:documentation>Withern with Stain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC187">
        <xs:annotation>
          <xs:documentation>Wood Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC188">
        <xs:annotation>
          <xs:documentation>Woodhall Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC189">
        <xs:annotation>
          <xs:documentation>Wragby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC190">
        <xs:annotation>
          <xs:documentation>Wyham cum Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC191">
        <xs:annotation>
          <xs:documentation>Yarburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC192">
        <xs:annotation>
          <xs:documentation>Saltfleetby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE001">
        <xs:annotation>
          <xs:documentation>Anwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE002">
        <xs:annotation>
          <xs:documentation>Asgarby and Howell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE003">
        <xs:annotation>
          <xs:documentation>Ashby de la Launde and Bloxholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE004">
        <xs:annotation>
          <xs:documentation>Aswarby and Swarby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE005">
        <xs:annotation>
          <xs:documentation>Aubourn Haddington and South Hykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE006">
        <xs:annotation>
          <xs:documentation>Aunsby and Dembleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE007">
        <xs:annotation>
          <xs:documentation>Bassingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE008">
        <xs:annotation>
          <xs:documentation>Beckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE009">
        <xs:annotation>
          <xs:documentation>Billinghay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE010">
        <xs:annotation>
          <xs:documentation>Blankney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE011">
        <xs:annotation>
          <xs:documentation>Boothby Graffoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE012">
        <xs:annotation>
          <xs:documentation>Bracebridge Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE013">
        <xs:annotation>
          <xs:documentation>Branston and Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE014">
        <xs:annotation>
          <xs:documentation>Brant Broughton and Stragglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE015">
        <xs:annotation>
          <xs:documentation>Brauncewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE016">
        <xs:annotation>
          <xs:documentation>Burton Pedwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE017">
        <xs:annotation>
          <xs:documentation>Canwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE018">
        <xs:annotation>
          <xs:documentation>Carlton-le-Moorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE019">
        <xs:annotation>
          <xs:documentation>Coleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE020">
        <xs:annotation>
          <xs:documentation>Cranwell and Byard's Leap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE021">
        <xs:annotation>
          <xs:documentation>Culverthorpe and Kelby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE022">
        <xs:annotation>
          <xs:documentation>Digby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE023">
        <xs:annotation>
          <xs:documentation>Doddington and Whisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE024">
        <xs:annotation>
          <xs:documentation>Dogdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE025">
        <xs:annotation>
          <xs:documentation>Dorrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE026">
        <xs:annotation>
          <xs:documentation>Dunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE027">
        <xs:annotation>
          <xs:documentation>Eagle and Swinethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE028">
        <xs:annotation>
          <xs:documentation>Ewerby and Evedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE029">
        <xs:annotation>
          <xs:documentation>Great Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE030">
        <xs:annotation>
          <xs:documentation>Harmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE031">
        <xs:annotation>
          <xs:documentation>Heckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE032">
        <xs:annotation>
          <xs:documentation>Heighington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE033">
        <xs:annotation>
          <xs:documentation>Helpringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE034">
        <xs:annotation>
          <xs:documentation>Kirkby la Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE035">
        <xs:annotation>
          <xs:documentation>Leadenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE036">
        <xs:annotation>
          <xs:documentation>Leasingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE037">
        <xs:annotation>
          <xs:documentation>Little Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE038">
        <xs:annotation>
          <xs:documentation>Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE039">
        <xs:annotation>
          <xs:documentation>Metheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE040">
        <xs:annotation>
          <xs:documentation>Navenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE041">
        <xs:annotation>
          <xs:documentation>Newton and Haceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE042">
        <xs:annotation>
          <xs:documentation>Nocton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE043">
        <xs:annotation>
          <xs:documentation>North Hykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE044">
        <xs:annotation>
          <xs:documentation>North Kyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE045">
        <xs:annotation>
          <xs:documentation>North Rauceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE046">
        <xs:annotation>
          <xs:documentation>North Scarle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE047">
        <xs:annotation>
          <xs:documentation>Norton Disney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE048">
        <xs:annotation>
          <xs:documentation>Osbournby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE049">
        <xs:annotation>
          <xs:documentation>Potter Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE050">
        <xs:annotation>
          <xs:documentation>Rowston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE051">
        <xs:annotation>
          <xs:documentation>Roxholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE052">
        <xs:annotation>
          <xs:documentation>Ruskington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE053">
        <xs:annotation>
          <xs:documentation>Scopwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE054">
        <xs:annotation>
          <xs:documentation>Scredington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE055">
        <xs:annotation>
          <xs:documentation>Silk Willoughby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE056">
        <xs:annotation>
          <xs:documentation>Skellingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE057">
        <xs:annotation>
          <xs:documentation>Sleaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE058">
        <xs:annotation>
          <xs:documentation>South Kyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE059">
        <xs:annotation>
          <xs:documentation>South Rauceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE060">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE061">
        <xs:annotation>
          <xs:documentation>Swaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE062">
        <xs:annotation>
          <xs:documentation>Swinderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE063">
        <xs:annotation>
          <xs:documentation>Temple Bruer with Temple High Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE064">
        <xs:annotation>
          <xs:documentation>Thorpe on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE065">
        <xs:annotation>
          <xs:documentation>Threekingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE066">
        <xs:annotation>
          <xs:documentation>Thurlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE067">
        <xs:annotation>
          <xs:documentation>Timberland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE068">
        <xs:annotation>
          <xs:documentation>Waddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE069">
        <xs:annotation>
          <xs:documentation>Walcot near Folkingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE070">
        <xs:annotation>
          <xs:documentation>Walcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE071">
        <xs:annotation>
          <xs:documentation>Washingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE072">
        <xs:annotation>
          <xs:documentation>Welbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE073">
        <xs:annotation>
          <xs:documentation>Wellingore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE074">
        <xs:annotation>
          <xs:documentation>Wilsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE075">
        <xs:annotation>
          <xs:documentation>Witham St. Hughs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF001">
        <xs:annotation>
          <xs:documentation>Cowbit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF002">
        <xs:annotation>
          <xs:documentation>Crowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF003">
        <xs:annotation>
          <xs:documentation>Deeping St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF004">
        <xs:annotation>
          <xs:documentation>Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF005">
        <xs:annotation>
          <xs:documentation>Fleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF006">
        <xs:annotation>
          <xs:documentation>Gedney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF007">
        <xs:annotation>
          <xs:documentation>Gedney Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF008">
        <xs:annotation>
          <xs:documentation>Gosberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF009">
        <xs:annotation>
          <xs:documentation>Holbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF010">
        <xs:annotation>
          <xs:documentation>Little Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF011">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF012">
        <xs:annotation>
          <xs:documentation>Lutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF013">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF014">
        <xs:annotation>
          <xs:documentation>Pinchbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF015">
        <xs:annotation>
          <xs:documentation>Quadring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF016">
        <xs:annotation>
          <xs:documentation>Surfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF017">
        <xs:annotation>
          <xs:documentation>Sutton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF018">
        <xs:annotation>
          <xs:documentation>Sutton St Edmund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF019">
        <xs:annotation>
          <xs:documentation>Sutton St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF020">
        <xs:annotation>
          <xs:documentation>Tydd St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF021">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF022">
        <xs:annotation>
          <xs:documentation>Whaplode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG001">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG002">
        <xs:annotation>
          <xs:documentation>Ancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG003">
        <xs:annotation>
          <xs:documentation>Aslackby and Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG004">
        <xs:annotation>
          <xs:documentation>Barholm and Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG005">
        <xs:annotation>
          <xs:documentation>Barkston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG006">
        <xs:annotation>
          <xs:documentation>Barrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG007">
        <xs:annotation>
          <xs:documentation>Baston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG008">
        <xs:annotation>
          <xs:documentation>Belton and Manthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG009">
        <xs:annotation>
          <xs:documentation>Billingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG010">
        <xs:annotation>
          <xs:documentation>Bitchfield and Bassingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG011">
        <xs:annotation>
          <xs:documentation>Boothby Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG012">
        <xs:annotation>
          <xs:documentation>Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG013">
        <xs:annotation>
          <xs:documentation>Braceborough and Wilsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG014">
        <xs:annotation>
          <xs:documentation>Braceby and Sapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG015">
        <xs:annotation>
          <xs:documentation>Burton Coggles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG016">
        <xs:annotation>
          <xs:documentation>Careby Aunby and Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG017">
        <xs:annotation>
          <xs:documentation>Carlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG018">
        <xs:annotation>
          <xs:documentation>Carlton Scroop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG019">
        <xs:annotation>
          <xs:documentation>Castle Bytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG020">
        <xs:annotation>
          <xs:documentation>Caythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG021">
        <xs:annotation>
          <xs:documentation>Claypole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG022">
        <xs:annotation>
          <xs:documentation>Colsterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG023">
        <xs:annotation>
          <xs:documentation>Corby Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG024">
        <xs:annotation>
          <xs:documentation>Counthorpe and Creeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG025">
        <xs:annotation>
          <xs:documentation>Deeping St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG026">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG027">
        <xs:annotation>
          <xs:documentation>Dowsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG028">
        <xs:annotation>
          <xs:documentation>Dunsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG029">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG030">
        <xs:annotation>
          <xs:documentation>Edenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG031">
        <xs:annotation>
          <xs:documentation>Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG032">
        <xs:annotation>
          <xs:documentation>Folkingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG033">
        <xs:annotation>
          <xs:documentation>Foston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG034">
        <xs:annotation>
          <xs:documentation>Fulbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG035">
        <xs:annotation>
          <xs:documentation>Great Gonerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG036">
        <xs:annotation>
          <xs:documentation>Great Ponton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG037">
        <xs:annotation>
          <xs:documentation>Greatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG038">
        <xs:annotation>
          <xs:documentation>Gunby and Stainby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG039">
        <xs:annotation>
          <xs:documentation>Haconby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG040">
        <xs:annotation>
          <xs:documentation>Harlaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG041">
        <xs:annotation>
          <xs:documentation>Heydour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG042">
        <xs:annotation>
          <xs:documentation>Honington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG043">
        <xs:annotation>
          <xs:documentation>Horbling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG044">
        <xs:annotation>
          <xs:documentation>Hough-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG045">
        <xs:annotation>
          <xs:documentation>Hougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG046">
        <xs:annotation>
          <xs:documentation>Ingoldsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG047">
        <xs:annotation>
          <xs:documentation>Irnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG048">
        <xs:annotation>
          <xs:documentation>Kirkby Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG049">
        <xs:annotation>
          <xs:documentation>Langtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG050">
        <xs:annotation>
          <xs:documentation>Lenton Keisby and Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG051">
        <xs:annotation>
          <xs:documentation>Little Bytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG052">
        <xs:annotation>
          <xs:documentation>Little Ponton and Stroxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG053">
        <xs:annotation>
          <xs:documentation>Londonthorpe and Harrowby Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG054">
        <xs:annotation>
          <xs:documentation>Long Bennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG055">
        <xs:annotation>
          <xs:documentation>Market Deeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG056">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG057">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG058">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG059">
        <xs:annotation>
          <xs:documentation>North Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG060">
        <xs:annotation>
          <xs:documentation>Old Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG061">
        <xs:annotation>
          <xs:documentation>Pickworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG062">
        <xs:annotation>
          <xs:documentation>Pointon and Sempringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG063">
        <xs:annotation>
          <xs:documentation>Rippingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG064">
        <xs:annotation>
          <xs:documentation>Ropsley and Humby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG065">
        <xs:annotation>
          <xs:documentation>Sedgebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG066">
        <xs:annotation>
          <xs:documentation>Skillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG067">
        <xs:annotation>
          <xs:documentation>South Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG068">
        <xs:annotation>
          <xs:documentation>Stamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG069">
        <xs:annotation>
          <xs:documentation>Stoke Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG070">
        <xs:annotation>
          <xs:documentation>Stubton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG071">
        <xs:annotation>
          <xs:documentation>Swayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG072">
        <xs:annotation>
          <xs:documentation>Swinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG073">
        <xs:annotation>
          <xs:documentation>Syston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG074">
        <xs:annotation>
          <xs:documentation>Tallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG075">
        <xs:annotation>
          <xs:documentation>Thurlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG076">
        <xs:annotation>
          <xs:documentation>Toft with Lound and Manthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG077">
        <xs:annotation>
          <xs:documentation>Uffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG078">
        <xs:annotation>
          <xs:documentation>Welby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG079">
        <xs:annotation>
          <xs:documentation>West Deeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG080">
        <xs:annotation>
          <xs:documentation>Westborough and Dry Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG081">
        <xs:annotation>
          <xs:documentation>Witham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG082">
        <xs:annotation>
          <xs:documentation>Woolsthorpe By Belvoir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG083">
        <xs:annotation>
          <xs:documentation>Wyville cum Hungerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH001">
        <xs:annotation>
          <xs:documentation>Aisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH002">
        <xs:annotation>
          <xs:documentation>Apley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH003">
        <xs:annotation>
          <xs:documentation>Bardney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH004">
        <xs:annotation>
          <xs:documentation>Barlings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH005">
        <xs:annotation>
          <xs:documentation>Bigby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH006">
        <xs:annotation>
          <xs:documentation>Bishop Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH007">
        <xs:annotation>
          <xs:documentation>Blyborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH008">
        <xs:annotation>
          <xs:documentation>Blyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH009">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH010">
        <xs:annotation>
          <xs:documentation>Brattleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH011">
        <xs:annotation>
          <xs:documentation>Broadholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH012">
        <xs:annotation>
          <xs:documentation>Brocklesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH013">
        <xs:annotation>
          <xs:documentation>Broxholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH014">
        <xs:annotation>
          <xs:documentation>Bullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH015">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH016">
        <xs:annotation>
          <xs:documentation>Buslingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH017">
        <xs:annotation>
          <xs:documentation>Cabourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH018">
        <xs:annotation>
          <xs:documentation>Caenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH019">
        <xs:annotation>
          <xs:documentation>Caistor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH020">
        <xs:annotation>
          <xs:documentation>Cammeringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH021">
        <xs:annotation>
          <xs:documentation>Cherry Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH022">
        <xs:annotation>
          <xs:documentation>Claxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH023">
        <xs:annotation>
          <xs:documentation>Cold Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH024">
        <xs:annotation>
          <xs:documentation>Corringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH025">
        <xs:annotation>
          <xs:documentation>Dunholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH026">
        <xs:annotation>
          <xs:documentation>East Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH027">
        <xs:annotation>
          <xs:documentation>East Stockwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH028">
        <xs:annotation>
          <xs:documentation>Faldingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH029">
        <xs:annotation>
          <xs:documentation>Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH030">
        <xs:annotation>
          <xs:documentation>Fillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH031">
        <xs:annotation>
          <xs:documentation>Fiskerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH032">
        <xs:annotation>
          <xs:documentation>Friesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH033">
        <xs:annotation>
          <xs:documentation>Fulnetby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH034">
        <xs:annotation>
          <xs:documentation>Gate Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH035">
        <xs:annotation>
          <xs:documentation>Glentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH036">
        <xs:annotation>
          <xs:documentation>Glentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH037">
        <xs:annotation>
          <xs:documentation>Goltho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH038">
        <xs:annotation>
          <xs:documentation>Grange de Lings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH039">
        <xs:annotation>
          <xs:documentation>Grasby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH040">
        <xs:annotation>
          <xs:documentation>Grayingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH041">
        <xs:annotation>
          <xs:documentation>Great Limber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH042">
        <xs:annotation>
          <xs:documentation>Greetwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH043">
        <xs:annotation>
          <xs:documentation>Hackthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH044">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH045">
        <xs:annotation>
          <xs:documentation>Harpswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH046">
        <xs:annotation>
          <xs:documentation>Heapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH047">
        <xs:annotation>
          <xs:documentation>Hemswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH048">
        <xs:annotation>
          <xs:documentation>Holton cum Beckering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH049">
        <xs:annotation>
          <xs:documentation>Holton le Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH050">
        <xs:annotation>
          <xs:documentation>Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH051">
        <xs:annotation>
          <xs:documentation>Keelby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH052">
        <xs:annotation>
          <xs:documentation>Kettlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH053">
        <xs:annotation>
          <xs:documentation>Kexby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH054">
        <xs:annotation>
          <xs:documentation>Kirmond le Mire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH055">
        <xs:annotation>
          <xs:documentation>Knaith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH056">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH057">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH058">
        <xs:annotation>
          <xs:documentation>Legsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH059">
        <xs:annotation>
          <xs:documentation>Linwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH060">
        <xs:annotation>
          <xs:documentation>Lissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH061">
        <xs:annotation>
          <xs:documentation>Market Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH062">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH063">
        <xs:annotation>
          <xs:documentation>Middle Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH064">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH065">
        <xs:annotation>
          <xs:documentation>Nettleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH066">
        <xs:annotation>
          <xs:documentation>Nettleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH067">
        <xs:annotation>
          <xs:documentation>Newball</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH068">
        <xs:annotation>
          <xs:documentation>Newton on Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH069">
        <xs:annotation>
          <xs:documentation>Normanby by Spital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH070">
        <xs:annotation>
          <xs:documentation>Normanby le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH071">
        <xs:annotation>
          <xs:documentation>North Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH072">
        <xs:annotation>
          <xs:documentation>North Kelsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH073">
        <xs:annotation>
          <xs:documentation>North Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH074">
        <xs:annotation>
          <xs:documentation>Northorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH075">
        <xs:annotation>
          <xs:documentation>Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH076">
        <xs:annotation>
          <xs:documentation>Owersby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH077">
        <xs:annotation>
          <xs:documentation>Owmby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH078">
        <xs:annotation>
          <xs:documentation>Pilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH079">
        <xs:annotation>
          <xs:documentation>Rand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH080">
        <xs:annotation>
          <xs:documentation>Reepham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH081">
        <xs:annotation>
          <xs:documentation>Riby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH082">
        <xs:annotation>
          <xs:documentation>Riseholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH083">
        <xs:annotation>
          <xs:documentation>Rothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH084">
        <xs:annotation>
          <xs:documentation>Saxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH085">
        <xs:annotation>
          <xs:documentation>Saxilby with Ingleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH086">
        <xs:annotation>
          <xs:documentation>Scampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH087">
        <xs:annotation>
          <xs:documentation>Scothern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH088">
        <xs:annotation>
          <xs:documentation>Scotter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH089">
        <xs:annotation>
          <xs:documentation>Scotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH090">
        <xs:annotation>
          <xs:documentation>Searby cum Owmby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH091">
        <xs:annotation>
          <xs:documentation>Sixhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH092">
        <xs:annotation>
          <xs:documentation>Snarford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH093">
        <xs:annotation>
          <xs:documentation>Snelland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH094">
        <xs:annotation>
          <xs:documentation>Snitterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH095">
        <xs:annotation>
          <xs:documentation>Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH096">
        <xs:annotation>
          <xs:documentation>South Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH097">
        <xs:annotation>
          <xs:documentation>South Kelsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH098">
        <xs:annotation>
          <xs:documentation>Spridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH099">
        <xs:annotation>
          <xs:documentation>Springthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH100">
        <xs:annotation>
          <xs:documentation>Stainfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH101">
        <xs:annotation>
          <xs:documentation>Stainton by Langworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH102">
        <xs:annotation>
          <xs:documentation>Stainton le Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH103">
        <xs:annotation>
          <xs:documentation>Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH104">
        <xs:annotation>
          <xs:documentation>Sturton by Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH105">
        <xs:annotation>
          <xs:documentation>Sudbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH106">
        <xs:annotation>
          <xs:documentation>Swallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH107">
        <xs:annotation>
          <xs:documentation>Swinhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH108">
        <xs:annotation>
          <xs:documentation>Tealby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH109">
        <xs:annotation>
          <xs:documentation>Thonock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH110">
        <xs:annotation>
          <xs:documentation>Thoresway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH111">
        <xs:annotation>
          <xs:documentation>Thorganby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH112">
        <xs:annotation>
          <xs:documentation>Thorpe in the Fallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH113">
        <xs:annotation>
          <xs:documentation>Toft Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH114">
        <xs:annotation>
          <xs:documentation>Torksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH115">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH116">
        <xs:annotation>
          <xs:documentation>Waddingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH117">
        <xs:annotation>
          <xs:documentation>Walesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH118">
        <xs:annotation>
          <xs:documentation>Walkerith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH119">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH120">
        <xs:annotation>
          <xs:documentation>West Firsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH121">
        <xs:annotation>
          <xs:documentation>West Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH122">
        <xs:annotation>
          <xs:documentation>Wickenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH123">
        <xs:annotation>
          <xs:documentation>Wildsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH124">
        <xs:annotation>
          <xs:documentation>Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH125">
        <xs:annotation>
          <xs:documentation>Willoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH126">
        <xs:annotation>
          <xs:documentation>Gainsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH127">
        <xs:annotation>
          <xs:documentation>Hemswell Cliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH128">
        <xs:annotation>
          <xs:documentation>Brookenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB001">
        <xs:annotation>
          <xs:documentation>Ashill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB002">
        <xs:annotation>
          <xs:documentation>Attleborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB003">
        <xs:annotation>
          <xs:documentation>Banham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB004">
        <xs:annotation>
          <xs:documentation>Bawdeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB005">
        <xs:annotation>
          <xs:documentation>Beachamwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB006">
        <xs:annotation>
          <xs:documentation>Beeston with Bittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB007">
        <xs:annotation>
          <xs:documentation>Beetley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB008">
        <xs:annotation>
          <xs:documentation>Besthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB009">
        <xs:annotation>
          <xs:documentation>Billingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB010">
        <xs:annotation>
          <xs:documentation>Bintree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB011">
        <xs:annotation>
          <xs:documentation>Blo' Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB012">
        <xs:annotation>
          <xs:documentation>Bradenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB013">
        <xs:annotation>
          <xs:documentation>Brettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB014">
        <xs:annotation>
          <xs:documentation>Bridgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB015">
        <xs:annotation>
          <xs:documentation>Brisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB016">
        <xs:annotation>
          <xs:documentation>Bylaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB017">
        <xs:annotation>
          <xs:documentation>Carbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB018">
        <xs:annotation>
          <xs:documentation>Caston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB019">
        <xs:annotation>
          <xs:documentation>Cockley Cley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB020">
        <xs:annotation>
          <xs:documentation>Colkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB021">
        <xs:annotation>
          <xs:documentation>Cranwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB022">
        <xs:annotation>
          <xs:documentation>Cranworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB023">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB024">
        <xs:annotation>
          <xs:documentation>Didlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB025">
        <xs:annotation>
          <xs:documentation>Dereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB026">
        <xs:annotation>
          <xs:documentation>East Tuddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB027">
        <xs:annotation>
          <xs:documentation>Elsing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB028">
        <xs:annotation>
          <xs:documentation>Foulden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB029">
        <xs:annotation>
          <xs:documentation>Foxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB030">
        <xs:annotation>
          <xs:documentation>Fransham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB031">
        <xs:annotation>
          <xs:documentation>Garboldisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB032">
        <xs:annotation>
          <xs:documentation>Garvestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB033">
        <xs:annotation>
          <xs:documentation>Gateley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB034">
        <xs:annotation>
          <xs:documentation>Gooderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB035">
        <xs:annotation>
          <xs:documentation>Great Cressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB036">
        <xs:annotation>
          <xs:documentation>Great Dunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB037">
        <xs:annotation>
          <xs:documentation>Great Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB038">
        <xs:annotation>
          <xs:documentation>Gressenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB039">
        <xs:annotation>
          <xs:documentation>Griston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB040">
        <xs:annotation>
          <xs:documentation>Guist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB041">
        <xs:annotation>
          <xs:documentation>Hardingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB042">
        <xs:annotation>
          <xs:documentation>Harling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB043">
        <xs:annotation>
          <xs:documentation>Hilborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB044">
        <xs:annotation>
          <xs:documentation>Hockering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB045">
        <xs:annotation>
          <xs:documentation>Hockham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB046">
        <xs:annotation>
          <xs:documentation>Hoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB047">
        <xs:annotation>
          <xs:documentation>Holme Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB048">
        <xs:annotation>
          <xs:documentation>Horningtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB049">
        <xs:annotation>
          <xs:documentation>Ickburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB050">
        <xs:annotation>
          <xs:documentation>Kempstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB051">
        <xs:annotation>
          <xs:documentation>Kenninghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB052">
        <xs:annotation>
          <xs:documentation>Kilverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB053">
        <xs:annotation>
          <xs:documentation>Lexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB054">
        <xs:annotation>
          <xs:documentation>Litcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB055">
        <xs:annotation>
          <xs:documentation>Little Cressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB056">
        <xs:annotation>
          <xs:documentation>Little Dunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB057">
        <xs:annotation>
          <xs:documentation>Little Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB058">
        <xs:annotation>
          <xs:documentation>Longham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB059">
        <xs:annotation>
          <xs:documentation>Lynford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB060">
        <xs:annotation>
          <xs:documentation>Lyng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB061">
        <xs:annotation>
          <xs:documentation>Mattishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB062">
        <xs:annotation>
          <xs:documentation>Merton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB063">
        <xs:annotation>
          <xs:documentation>Mileham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB064">
        <xs:annotation>
          <xs:documentation>Mundford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB065">
        <xs:annotation>
          <xs:documentation>Narborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB066">
        <xs:annotation>
          <xs:documentation>Narford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB067">
        <xs:annotation>
          <xs:documentation>Necton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB068">
        <xs:annotation>
          <xs:documentation>New Buckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB069">
        <xs:annotation>
          <xs:documentation>Newton by Castle Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB070">
        <xs:annotation>
          <xs:documentation>North Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB071">
        <xs:annotation>
          <xs:documentation>North Lopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB072">
        <xs:annotation>
          <xs:documentation>North Pickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB073">
        <xs:annotation>
          <xs:documentation>North Tuddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB074">
        <xs:annotation>
          <xs:documentation>Old Buckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB075">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB076">
        <xs:annotation>
          <xs:documentation>Oxborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB077">
        <xs:annotation>
          <xs:documentation>Quidenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB078">
        <xs:annotation>
          <xs:documentation>Riddlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB079">
        <xs:annotation>
          <xs:documentation>Rocklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB080">
        <xs:annotation>
          <xs:documentation>Roudham and Larling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB081">
        <xs:annotation>
          <xs:documentation>Rougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB082">
        <xs:annotation>
          <xs:documentation>Saham Toney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB083">
        <xs:annotation>
          <xs:documentation>Scarning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB084">
        <xs:annotation>
          <xs:documentation>Scoulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB085">
        <xs:annotation>
          <xs:documentation>Shipdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB086">
        <xs:annotation>
          <xs:documentation>Shropham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB087">
        <xs:annotation>
          <xs:documentation>Snetterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB088">
        <xs:annotation>
          <xs:documentation>South Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB089">
        <xs:annotation>
          <xs:documentation>South Lopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB090">
        <xs:annotation>
          <xs:documentation>South Pickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB091">
        <xs:annotation>
          <xs:documentation>Sparham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB092">
        <xs:annotation>
          <xs:documentation>Sporle with Palgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB093">
        <xs:annotation>
          <xs:documentation>Stanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB094">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB095">
        <xs:annotation>
          <xs:documentation>Stow Bedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB096">
        <xs:annotation>
          <xs:documentation>Sturston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB097">
        <xs:annotation>
          <xs:documentation>Swaffham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB098">
        <xs:annotation>
          <xs:documentation>Swanton Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB099">
        <xs:annotation>
          <xs:documentation>Thetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB100">
        <xs:annotation>
          <xs:documentation>Thompson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB101">
        <xs:annotation>
          <xs:documentation>Tittleshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB102">
        <xs:annotation>
          <xs:documentation>Tottington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB103">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB104">
        <xs:annotation>
          <xs:documentation>Watton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB105">
        <xs:annotation>
          <xs:documentation>Weasenham All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB106">
        <xs:annotation>
          <xs:documentation>Weasenham St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB107">
        <xs:annotation>
          <xs:documentation>Weeting-with-Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB108">
        <xs:annotation>
          <xs:documentation>Wellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB109">
        <xs:annotation>
          <xs:documentation>Wendling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB110">
        <xs:annotation>
          <xs:documentation>Whinburgh and Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB111">
        <xs:annotation>
          <xs:documentation>Whissonsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB112">
        <xs:annotation>
          <xs:documentation>Wretham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB113">
        <xs:annotation>
          <xs:documentation>Yaxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC001">
        <xs:annotation>
          <xs:documentation>Acle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC002">
        <xs:annotation>
          <xs:documentation>Alderford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC003">
        <xs:annotation>
          <xs:documentation>Attlebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC004">
        <xs:annotation>
          <xs:documentation>Aylsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC005">
        <xs:annotation>
          <xs:documentation>Beeston St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC006">
        <xs:annotation>
          <xs:documentation>Beighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC007">
        <xs:annotation>
          <xs:documentation>Belaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC008">
        <xs:annotation>
          <xs:documentation>Blickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC009">
        <xs:annotation>
          <xs:documentation>Blofield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC010">
        <xs:annotation>
          <xs:documentation>Booton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC011">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC012">
        <xs:annotation>
          <xs:documentation>Brandiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC013">
        <xs:annotation>
          <xs:documentation>Brundall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC014">
        <xs:annotation>
          <xs:documentation>Burgh and Tuttington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC015">
        <xs:annotation>
          <xs:documentation>Buxton with Lammas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC016">
        <xs:annotation>
          <xs:documentation>Cantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC017">
        <xs:annotation>
          <xs:documentation>Cawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC018">
        <xs:annotation>
          <xs:documentation>Coltishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC019">
        <xs:annotation>
          <xs:documentation>Crostwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC020">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC021">
        <xs:annotation>
          <xs:documentation>Felthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC022">
        <xs:annotation>
          <xs:documentation>Foulsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC023">
        <xs:annotation>
          <xs:documentation>Freethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC024">
        <xs:annotation>
          <xs:documentation>Frettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC025">
        <xs:annotation>
          <xs:documentation>Great and Little Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC026">
        <xs:annotation>
          <xs:documentation>Great Witchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC027">
        <xs:annotation>
          <xs:documentation>Guestwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC028">
        <xs:annotation>
          <xs:documentation>Hainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC029">
        <xs:annotation>
          <xs:documentation>Halvergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC030">
        <xs:annotation>
          <xs:documentation>Haveringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC031">
        <xs:annotation>
          <xs:documentation>Hellesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC032">
        <xs:annotation>
          <xs:documentation>Hemblington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC033">
        <xs:annotation>
          <xs:documentation>Hevingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC034">
        <xs:annotation>
          <xs:documentation>Heydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC035">
        <xs:annotation>
          <xs:documentation>Honingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC036">
        <xs:annotation>
          <xs:documentation>Horsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC037">
        <xs:annotation>
          <xs:documentation>Horsham St. Faith and Newton St. Faith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC038">
        <xs:annotation>
          <xs:documentation>Horstead with Stanninghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC039">
        <xs:annotation>
          <xs:documentation>Lingwood and Burlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC040">
        <xs:annotation>
          <xs:documentation>Little Witchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC041">
        <xs:annotation>
          <xs:documentation>Marsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC042">
        <xs:annotation>
          <xs:documentation>Morton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC043">
        <xs:annotation>
          <xs:documentation>Old Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC044">
        <xs:annotation>
          <xs:documentation>Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC045">
        <xs:annotation>
          <xs:documentation>Postwick with Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC046">
        <xs:annotation>
          <xs:documentation>Rackheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC047">
        <xs:annotation>
          <xs:documentation>Reedham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC048">
        <xs:annotation>
          <xs:documentation>Reepham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC049">
        <xs:annotation>
          <xs:documentation>Ringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC050">
        <xs:annotation>
          <xs:documentation>Salhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC051">
        <xs:annotation>
          <xs:documentation>Salle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC052">
        <xs:annotation>
          <xs:documentation>South Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC053">
        <xs:annotation>
          <xs:documentation>Spixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC054">
        <xs:annotation>
          <xs:documentation>Sprowston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC055">
        <xs:annotation>
          <xs:documentation>Stratton Strawless</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC056">
        <xs:annotation>
          <xs:documentation>Strumpshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC057">
        <xs:annotation>
          <xs:documentation>Swannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC058">
        <xs:annotation>
          <xs:documentation>Taverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC059">
        <xs:annotation>
          <xs:documentation>Themelthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC060">
        <xs:annotation>
          <xs:documentation>Thorpe St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC061">
        <xs:annotation>
          <xs:documentation>Upton with Fishley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC062">
        <xs:annotation>
          <xs:documentation>Weston Longville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC063">
        <xs:annotation>
          <xs:documentation>Woodbastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC064">
        <xs:annotation>
          <xs:documentation>Wood Dalling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC065">
        <xs:annotation>
          <xs:documentation>Wroxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD001">
        <xs:annotation>
          <xs:documentation>Ashby with Oby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD002">
        <xs:annotation>
          <xs:documentation>Belton with Browston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD003">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD004">
        <xs:annotation>
          <xs:documentation>Burgh Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD005">
        <xs:annotation>
          <xs:documentation>Caister-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD006">
        <xs:annotation>
          <xs:documentation>Filby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD007">
        <xs:annotation>
          <xs:documentation>Fleggburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD008">
        <xs:annotation>
          <xs:documentation>Fritton and St. Olaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD009">
        <xs:annotation>
          <xs:documentation>Hemsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD010">
        <xs:annotation>
          <xs:documentation>Hopton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD011">
        <xs:annotation>
          <xs:documentation>Martham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD012">
        <xs:annotation>
          <xs:documentation>Mautby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD013">
        <xs:annotation>
          <xs:documentation>Ormesby St. Margaret with Scratby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD014">
        <xs:annotation>
          <xs:documentation>Ormesby St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD015">
        <xs:annotation>
          <xs:documentation>Repps with Bastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD016">
        <xs:annotation>
          <xs:documentation>Rollesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD017">
        <xs:annotation>
          <xs:documentation>Somerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD018">
        <xs:annotation>
          <xs:documentation>Stokesby with Herringby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD019">
        <xs:annotation>
          <xs:documentation>Thurne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD020">
        <xs:annotation>
          <xs:documentation>West Caister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD021">
        <xs:annotation>
          <xs:documentation>Winterton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE001">
        <xs:annotation>
          <xs:documentation>Anmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE002">
        <xs:annotation>
          <xs:documentation>Bagthorpe with Barmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE003">
        <xs:annotation>
          <xs:documentation>Barton Bendish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE004">
        <xs:annotation>
          <xs:documentation>Barwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE005">
        <xs:annotation>
          <xs:documentation>Bawsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE006">
        <xs:annotation>
          <xs:documentation>Bircham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE007">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE008">
        <xs:annotation>
          <xs:documentation>Brancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE009">
        <xs:annotation>
          <xs:documentation>Burnham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE010">
        <xs:annotation>
          <xs:documentation>Burnham Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE011">
        <xs:annotation>
          <xs:documentation>Burnham Overy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE012">
        <xs:annotation>
          <xs:documentation>Burnham Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE013">
        <xs:annotation>
          <xs:documentation>Castle Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE014">
        <xs:annotation>
          <xs:documentation>Castle Rising</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE015">
        <xs:annotation>
          <xs:documentation>Choseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE016">
        <xs:annotation>
          <xs:documentation>Clenchwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE017">
        <xs:annotation>
          <xs:documentation>Congham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE018">
        <xs:annotation>
          <xs:documentation>Crimplesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE019">
        <xs:annotation>
          <xs:documentation>Denver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE020">
        <xs:annotation>
          <xs:documentation>Dersingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE021">
        <xs:annotation>
          <xs:documentation>Docking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE022">
        <xs:annotation>
          <xs:documentation>Downham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE023">
        <xs:annotation>
          <xs:documentation>Downham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE024">
        <xs:annotation>
          <xs:documentation>East Rudham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE025">
        <xs:annotation>
          <xs:documentation>East Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE026">
        <xs:annotation>
          <xs:documentation>East Winch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE027">
        <xs:annotation>
          <xs:documentation>Emneth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE028">
        <xs:annotation>
          <xs:documentation>Feltwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE029">
        <xs:annotation>
          <xs:documentation>Fincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE030">
        <xs:annotation>
          <xs:documentation>Flitcham with Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE031">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE032">
        <xs:annotation>
          <xs:documentation>Fring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE033">
        <xs:annotation>
          <xs:documentation>Gayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE034">
        <xs:annotation>
          <xs:documentation>Great Massingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE035">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE036">
        <xs:annotation>
          <xs:documentation>Harpley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE037">
        <xs:annotation>
          <xs:documentation>Heacham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE038">
        <xs:annotation>
          <xs:documentation>Hilgay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE039">
        <xs:annotation>
          <xs:documentation>Hillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE040">
        <xs:annotation>
          <xs:documentation>Hockwold cum Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE041">
        <xs:annotation>
          <xs:documentation>Holme next the Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE042">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE043">
        <xs:annotation>
          <xs:documentation>Hunstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE044">
        <xs:annotation>
          <xs:documentation>Ingoldisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE045">
        <xs:annotation>
          <xs:documentation>Leziate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE046">
        <xs:annotation>
          <xs:documentation>Little Massingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE047">
        <xs:annotation>
          <xs:documentation>Marham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE048">
        <xs:annotation>
          <xs:documentation>Marshland St. James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE049">
        <xs:annotation>
          <xs:documentation>Methwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE050">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE051">
        <xs:annotation>
          <xs:documentation>Nordelph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE052">
        <xs:annotation>
          <xs:documentation>North Creake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE053">
        <xs:annotation>
          <xs:documentation>North Runcton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE054">
        <xs:annotation>
          <xs:documentation>Northwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE055">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE056">
        <xs:annotation>
          <xs:documentation>Old Hunstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE057">
        <xs:annotation>
          <xs:documentation>Outwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE058">
        <xs:annotation>
          <xs:documentation>Pentney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE059">
        <xs:annotation>
          <xs:documentation>Ringstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE060">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE061">
        <xs:annotation>
          <xs:documentation>Runcton Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE062">
        <xs:annotation>
          <xs:documentation>Ryston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE063">
        <xs:annotation>
          <xs:documentation>Sandringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE064">
        <xs:annotation>
          <xs:documentation>Sedgeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE065">
        <xs:annotation>
          <xs:documentation>Shernborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE066">
        <xs:annotation>
          <xs:documentation>Shouldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE067">
        <xs:annotation>
          <xs:documentation>Shouldham Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE068">
        <xs:annotation>
          <xs:documentation>Snettisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE069">
        <xs:annotation>
          <xs:documentation>South Creake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE070">
        <xs:annotation>
          <xs:documentation>Southery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE071">
        <xs:annotation>
          <xs:documentation>South Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE072">
        <xs:annotation>
          <xs:documentation>Stanhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE073">
        <xs:annotation>
          <xs:documentation>Stoke Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE074">
        <xs:annotation>
          <xs:documentation>Stow Bardolph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE075">
        <xs:annotation>
          <xs:documentation>Stradsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE076">
        <xs:annotation>
          <xs:documentation>Syderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE077">
        <xs:annotation>
          <xs:documentation>Terrington St. Clement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE078">
        <xs:annotation>
          <xs:documentation>Terrington St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE079">
        <xs:annotation>
          <xs:documentation>Thornham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE080">
        <xs:annotation>
          <xs:documentation>Tilney All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE081">
        <xs:annotation>
          <xs:documentation>Tilney St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE082">
        <xs:annotation>
          <xs:documentation>Titchwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE083">
        <xs:annotation>
          <xs:documentation>Tottenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE084">
        <xs:annotation>
          <xs:documentation>Upwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE085">
        <xs:annotation>
          <xs:documentation>Walpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE086">
        <xs:annotation>
          <xs:documentation>Walpole Cross Keys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE087">
        <xs:annotation>
          <xs:documentation>Walpole Highway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE088">
        <xs:annotation>
          <xs:documentation>Walsoken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE089">
        <xs:annotation>
          <xs:documentation>Watlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE090">
        <xs:annotation>
          <xs:documentation>Welney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE091">
        <xs:annotation>
          <xs:documentation>Wereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE092">
        <xs:annotation>
          <xs:documentation>West Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE093">
        <xs:annotation>
          <xs:documentation>West Dereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE094">
        <xs:annotation>
          <xs:documentation>West Rudham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE095">
        <xs:annotation>
          <xs:documentation>West Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE096">
        <xs:annotation>
          <xs:documentation>West Winch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE097">
        <xs:annotation>
          <xs:documentation>Wiggenhall St. Germans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE098">
        <xs:annotation>
          <xs:documentation>Wiggenhall St. Mary Magdalen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE099">
        <xs:annotation>
          <xs:documentation>Wimbotsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE100">
        <xs:annotation>
          <xs:documentation>Wormegay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE101">
        <xs:annotation>
          <xs:documentation>Wretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF001">
        <xs:annotation>
          <xs:documentation>Alby with Thwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF002">
        <xs:annotation>
          <xs:documentation>Aldborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF003">
        <xs:annotation>
          <xs:documentation>Antingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF004">
        <xs:annotation>
          <xs:documentation>Ashmanhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF005">
        <xs:annotation>
          <xs:documentation>Aylmerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF006">
        <xs:annotation>
          <xs:documentation>Baconsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF007">
        <xs:annotation>
          <xs:documentation>Bacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF008">
        <xs:annotation>
          <xs:documentation>Barsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF009">
        <xs:annotation>
          <xs:documentation>Barton Turf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF010">
        <xs:annotation>
          <xs:documentation>Beeston Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF011">
        <xs:annotation>
          <xs:documentation>Binham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF012">
        <xs:annotation>
          <xs:documentation>Blakeney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF013">
        <xs:annotation>
          <xs:documentation>Bodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF014">
        <xs:annotation>
          <xs:documentation>Briningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF015">
        <xs:annotation>
          <xs:documentation>Brinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF016">
        <xs:annotation>
          <xs:documentation>Briston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF017">
        <xs:annotation>
          <xs:documentation>Brumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF018">
        <xs:annotation>
          <xs:documentation>Catfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF019">
        <xs:annotation>
          <xs:documentation>Cley Next The Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF020">
        <xs:annotation>
          <xs:documentation>Colby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF021">
        <xs:annotation>
          <xs:documentation>Corpusty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF022">
        <xs:annotation>
          <xs:documentation>Cromer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF023">
        <xs:annotation>
          <xs:documentation>Dilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF024">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF025">
        <xs:annotation>
          <xs:documentation>East Beckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF026">
        <xs:annotation>
          <xs:documentation>East Ruston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF027">
        <xs:annotation>
          <xs:documentation>Edgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF028">
        <xs:annotation>
          <xs:documentation>Erpingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF029">
        <xs:annotation>
          <xs:documentation>Fakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF030">
        <xs:annotation>
          <xs:documentation>Felbrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF031">
        <xs:annotation>
          <xs:documentation>Felmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF032">
        <xs:annotation>
          <xs:documentation>Field Dalling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF033">
        <xs:annotation>
          <xs:documentation>Fulmodeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF034">
        <xs:annotation>
          <xs:documentation>Gimingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF035">
        <xs:annotation>
          <xs:documentation>Great Snoring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF036">
        <xs:annotation>
          <xs:documentation>Gresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF037">
        <xs:annotation>
          <xs:documentation>Gunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF038">
        <xs:annotation>
          <xs:documentation>Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF039">
        <xs:annotation>
          <xs:documentation>Happisburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF040">
        <xs:annotation>
          <xs:documentation>Helhoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF041">
        <xs:annotation>
          <xs:documentation>Hempstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF042">
        <xs:annotation>
          <xs:documentation>Hempton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF043">
        <xs:annotation>
          <xs:documentation>Hickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF044">
        <xs:annotation>
          <xs:documentation>High Kelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF045">
        <xs:annotation>
          <xs:documentation>Hindolveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF046">
        <xs:annotation>
          <xs:documentation>Hindringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF047">
        <xs:annotation>
          <xs:documentation>Holkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF048">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF049">
        <xs:annotation>
          <xs:documentation>Honing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF050">
        <xs:annotation>
          <xs:documentation>Horning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF051">
        <xs:annotation>
          <xs:documentation>Horsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF052">
        <xs:annotation>
          <xs:documentation>Hoveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF053">
        <xs:annotation>
          <xs:documentation>Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF054">
        <xs:annotation>
          <xs:documentation>Ingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF055">
        <xs:annotation>
          <xs:documentation>Itteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF056">
        <xs:annotation>
          <xs:documentation>Kelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF057">
        <xs:annotation>
          <xs:documentation>Kettlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF058">
        <xs:annotation>
          <xs:documentation>Knapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF059">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF060">
        <xs:annotation>
          <xs:documentation>Lessingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF061">
        <xs:annotation>
          <xs:documentation>Letheringsett with Glandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF062">
        <xs:annotation>
          <xs:documentation>Little Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF063">
        <xs:annotation>
          <xs:documentation>Little Snoring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF064">
        <xs:annotation>
          <xs:documentation>Ludham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF065">
        <xs:annotation>
          <xs:documentation>Matlask</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF066">
        <xs:annotation>
          <xs:documentation>Melton Constable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF067">
        <xs:annotation>
          <xs:documentation>Morston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF068">
        <xs:annotation>
          <xs:documentation>Mundesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF069">
        <xs:annotation>
          <xs:documentation>Neatishead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF070">
        <xs:annotation>
          <xs:documentation>Northrepps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF071">
        <xs:annotation>
          <xs:documentation>North Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF072">
        <xs:annotation>
          <xs:documentation>Overstrand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF073">
        <xs:annotation>
          <xs:documentation>Paston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF074">
        <xs:annotation>
          <xs:documentation>Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF075">
        <xs:annotation>
          <xs:documentation>Potter Heigham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF076">
        <xs:annotation>
          <xs:documentation>Pudding Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF077">
        <xs:annotation>
          <xs:documentation>Raynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF078">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF079">
        <xs:annotation>
          <xs:documentation>Runton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF080">
        <xs:annotation>
          <xs:documentation>Ryburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF081">
        <xs:annotation>
          <xs:documentation>Salthouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF082">
        <xs:annotation>
          <xs:documentation>Scottow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF083">
        <xs:annotation>
          <xs:documentation>Sculthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF084">
        <xs:annotation>
          <xs:documentation>Sea Palling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF085">
        <xs:annotation>
          <xs:documentation>Sheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF086">
        <xs:annotation>
          <xs:documentation>Sidestrand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF087">
        <xs:annotation>
          <xs:documentation>Skeyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF088">
        <xs:annotation>
          <xs:documentation>Sloley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF089">
        <xs:annotation>
          <xs:documentation>Smallburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF090">
        <xs:annotation>
          <xs:documentation>Southrepps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF091">
        <xs:annotation>
          <xs:documentation>Stalham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF092">
        <xs:annotation>
          <xs:documentation>Stibbard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF093">
        <xs:annotation>
          <xs:documentation>Stiffkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF094">
        <xs:annotation>
          <xs:documentation>Stody</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF095">
        <xs:annotation>
          <xs:documentation>Suffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF096">
        <xs:annotation>
          <xs:documentation>Sustead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF097">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF098">
        <xs:annotation>
          <xs:documentation>Swafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF099">
        <xs:annotation>
          <xs:documentation>Swanton Abbott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF100">
        <xs:annotation>
          <xs:documentation>Swanton Novers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF101">
        <xs:annotation>
          <xs:documentation>Tattersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF102">
        <xs:annotation>
          <xs:documentation>Thornage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF103">
        <xs:annotation>
          <xs:documentation>Thorpe Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF104">
        <xs:annotation>
          <xs:documentation>Thurning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF105">
        <xs:annotation>
          <xs:documentation>Thursford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF106">
        <xs:annotation>
          <xs:documentation>Trimingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF107">
        <xs:annotation>
          <xs:documentation>Trunch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF108">
        <xs:annotation>
          <xs:documentation>Tunstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF109">
        <xs:annotation>
          <xs:documentation>Upper Sheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF110">
        <xs:annotation>
          <xs:documentation>Walsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF111">
        <xs:annotation>
          <xs:documentation>Warham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF112">
        <xs:annotation>
          <xs:documentation>Wells-next-the-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF113">
        <xs:annotation>
          <xs:documentation>West Beckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF114">
        <xs:annotation>
          <xs:documentation>Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF115">
        <xs:annotation>
          <xs:documentation>Weybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF116">
        <xs:annotation>
          <xs:documentation>Wickmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF117">
        <xs:annotation>
          <xs:documentation>Wighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF118">
        <xs:annotation>
          <xs:documentation>Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF119">
        <xs:annotation>
          <xs:documentation>Wiveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF120">
        <xs:annotation>
          <xs:documentation>Wood Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF121">
        <xs:annotation>
          <xs:documentation>Worstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH001">
        <xs:annotation>
          <xs:documentation>Alburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH002">
        <xs:annotation>
          <xs:documentation>Aldeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH003">
        <xs:annotation>
          <xs:documentation>Alpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH004">
        <xs:annotation>
          <xs:documentation>Ashby St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH005">
        <xs:annotation>
          <xs:documentation>Ashwellthorpe and Fundenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH006">
        <xs:annotation>
          <xs:documentation>Aslacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH007">
        <xs:annotation>
          <xs:documentation>Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH008">
        <xs:annotation>
          <xs:documentation>Barnham Broom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH009">
        <xs:annotation>
          <xs:documentation>Bawburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH010">
        <xs:annotation>
          <xs:documentation>Bedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH011">
        <xs:annotation>
          <xs:documentation>Bergh Apton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH012">
        <xs:annotation>
          <xs:documentation>Bixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH013">
        <xs:annotation>
          <xs:documentation>Bracon Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH014">
        <xs:annotation>
          <xs:documentation>Bramerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH015">
        <xs:annotation>
          <xs:documentation>Bressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH016">
        <xs:annotation>
          <xs:documentation>Brockdish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH017">
        <xs:annotation>
          <xs:documentation>Brooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH018">
        <xs:annotation>
          <xs:documentation>Broome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH019">
        <xs:annotation>
          <xs:documentation>Bunwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH020">
        <xs:annotation>
          <xs:documentation>Burgh St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH021">
        <xs:annotation>
          <xs:documentation>Burston and Shimpling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH022">
        <xs:annotation>
          <xs:documentation>Caistor St. Edmund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH023">
        <xs:annotation>
          <xs:documentation>Carleton Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH024">
        <xs:annotation>
          <xs:documentation>Carleton St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH025">
        <xs:annotation>
          <xs:documentation>Chedgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH026">
        <xs:annotation>
          <xs:documentation>Claxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH027">
        <xs:annotation>
          <xs:documentation>Colney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH028">
        <xs:annotation>
          <xs:documentation>Costessey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH029">
        <xs:annotation>
          <xs:documentation>Cringleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH030">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH031">
        <xs:annotation>
          <xs:documentation>Deopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH032">
        <xs:annotation>
          <xs:documentation>Dickleburgh and Rushall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH033">
        <xs:annotation>
          <xs:documentation>Diss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH034">
        <xs:annotation>
          <xs:documentation>Ditchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH035">
        <xs:annotation>
          <xs:documentation>Earsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH036">
        <xs:annotation>
          <xs:documentation>East Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH037">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH038">
        <xs:annotation>
          <xs:documentation>Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH039">
        <xs:annotation>
          <xs:documentation>Flordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH040">
        <xs:annotation>
          <xs:documentation>Forncett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH041">
        <xs:annotation>
          <xs:documentation>Framingham Earl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH042">
        <xs:annotation>
          <xs:documentation>Framingham Pigot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH043">
        <xs:annotation>
          <xs:documentation>Geldeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH044">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH045">
        <xs:annotation>
          <xs:documentation>Gissing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH046">
        <xs:annotation>
          <xs:documentation>Great Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH047">
        <xs:annotation>
          <xs:documentation>Great Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH048">
        <xs:annotation>
          <xs:documentation>Haddiscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH049">
        <xs:annotation>
          <xs:documentation>Hales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH050">
        <xs:annotation>
          <xs:documentation>Heckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH051">
        <xs:annotation>
          <xs:documentation>Hedenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH052">
        <xs:annotation>
          <xs:documentation>Hellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH053">
        <xs:annotation>
          <xs:documentation>Hempnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH054">
        <xs:annotation>
          <xs:documentation>Hethersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH055">
        <xs:annotation>
          <xs:documentation>Hingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH056">
        <xs:annotation>
          <xs:documentation>Holverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH057">
        <xs:annotation>
          <xs:documentation>Howe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH058">
        <xs:annotation>
          <xs:documentation>Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH059">
        <xs:annotation>
          <xs:documentation>Ketteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH060">
        <xs:annotation>
          <xs:documentation>Kimberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH061">
        <xs:annotation>
          <xs:documentation>Kirby Bedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH062">
        <xs:annotation>
          <xs:documentation>Kirby Cane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH063">
        <xs:annotation>
          <xs:documentation>Kirstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH064">
        <xs:annotation>
          <xs:documentation>Langley with Hardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH065">
        <xs:annotation>
          <xs:documentation>Little Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH066">
        <xs:annotation>
          <xs:documentation>Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH067">
        <xs:annotation>
          <xs:documentation>Long Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH068">
        <xs:annotation>
          <xs:documentation>Marlingford and Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH069">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH070">
        <xs:annotation>
          <xs:documentation>Morning Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH071">
        <xs:annotation>
          <xs:documentation>Mulbarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH072">
        <xs:annotation>
          <xs:documentation>Mundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH073">
        <xs:annotation>
          <xs:documentation>Needham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH074">
        <xs:annotation>
          <xs:documentation>Newton Flotman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH075">
        <xs:annotation>
          <xs:documentation>Norton Subcourse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH076">
        <xs:annotation>
          <xs:documentation>Poringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH077">
        <xs:annotation>
          <xs:documentation>Pulham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH078">
        <xs:annotation>
          <xs:documentation>Pulham St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH079">
        <xs:annotation>
          <xs:documentation>Raveningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH080">
        <xs:annotation>
          <xs:documentation>Redenhall with Harleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH081">
        <xs:annotation>
          <xs:documentation>Rockland St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH082">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH083">
        <xs:annotation>
          <xs:documentation>Runhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH084">
        <xs:annotation>
          <xs:documentation>Saxlingham Nethergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH085">
        <xs:annotation>
          <xs:documentation>Scole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH086">
        <xs:annotation>
          <xs:documentation>Seething</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH087">
        <xs:annotation>
          <xs:documentation>Shelfanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH088">
        <xs:annotation>
          <xs:documentation>Shelton and Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH089">
        <xs:annotation>
          <xs:documentation>Shotesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH090">
        <xs:annotation>
          <xs:documentation>Sisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH091">
        <xs:annotation>
          <xs:documentation>Starston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH092">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH093">
        <xs:annotation>
          <xs:documentation>Stoke Holy Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH094">
        <xs:annotation>
          <xs:documentation>Surlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH095">
        <xs:annotation>
          <xs:documentation>Swainsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH096">
        <xs:annotation>
          <xs:documentation>Swardeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH097">
        <xs:annotation>
          <xs:documentation>Tacolneston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH098">
        <xs:annotation>
          <xs:documentation>Tasburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH099">
        <xs:annotation>
          <xs:documentation>Tharston and Hapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH100">
        <xs:annotation>
          <xs:documentation>Thurlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH101">
        <xs:annotation>
          <xs:documentation>Thurton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH102">
        <xs:annotation>
          <xs:documentation>Thwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH103">
        <xs:annotation>
          <xs:documentation>Tibenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH104">
        <xs:annotation>
          <xs:documentation>Tivetshall St. Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH105">
        <xs:annotation>
          <xs:documentation>Tivetshall St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH106">
        <xs:annotation>
          <xs:documentation>Toft Monks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH107">
        <xs:annotation>
          <xs:documentation>Topcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH108">
        <xs:annotation>
          <xs:documentation>Trowse with Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH109">
        <xs:annotation>
          <xs:documentation>Wacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH110">
        <xs:annotation>
          <xs:documentation>Wheatacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH111">
        <xs:annotation>
          <xs:documentation>Wicklewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH112">
        <xs:annotation>
          <xs:documentation>Winfarthing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH113">
        <xs:annotation>
          <xs:documentation>Woodton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH114">
        <xs:annotation>
          <xs:documentation>Wortwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH115">
        <xs:annotation>
          <xs:documentation>Wramplingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH116">
        <xs:annotation>
          <xs:documentation>Wreningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH117">
        <xs:annotation>
          <xs:documentation>Wymondham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH118">
        <xs:annotation>
          <xs:documentation>Yelverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH119">
        <xs:annotation>
          <xs:documentation>Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB001">
        <xs:annotation>
          <xs:documentation>Cottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB002">
        <xs:annotation>
          <xs:documentation>East Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB003">
        <xs:annotation>
          <xs:documentation>Gretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB004">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB005">
        <xs:annotation>
          <xs:documentation>Rockingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB006">
        <xs:annotation>
          <xs:documentation>Stanion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB007">
        <xs:annotation>
          <xs:documentation>Weldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC001">
        <xs:annotation>
          <xs:documentation>Althorp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC002">
        <xs:annotation>
          <xs:documentation>Arthingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC003">
        <xs:annotation>
          <xs:documentation>Ashby St Ledgers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC004">
        <xs:annotation>
          <xs:documentation>Badby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC005">
        <xs:annotation>
          <xs:documentation>Barby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC006">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC007">
        <xs:annotation>
          <xs:documentation>Braunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC008">
        <xs:annotation>
          <xs:documentation>Brington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC009">
        <xs:annotation>
          <xs:documentation>Brixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC010">
        <xs:annotation>
          <xs:documentation>Brockhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC011">
        <xs:annotation>
          <xs:documentation>Byfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC012">
        <xs:annotation>
          <xs:documentation>Canons Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC013">
        <xs:annotation>
          <xs:documentation>Catesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC014">
        <xs:annotation>
          <xs:documentation>Chapel Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC015">
        <xs:annotation>
          <xs:documentation>Charwelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC016">
        <xs:annotation>
          <xs:documentation>Church Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC017">
        <xs:annotation>
          <xs:documentation>Clay Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC018">
        <xs:annotation>
          <xs:documentation>Clipston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC019">
        <xs:annotation>
          <xs:documentation>Cold Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC020">
        <xs:annotation>
          <xs:documentation>Cottesbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC021">
        <xs:annotation>
          <xs:documentation>Creaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC022">
        <xs:annotation>
          <xs:documentation>Crick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC023">
        <xs:annotation>
          <xs:documentation>Dodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC024">
        <xs:annotation>
          <xs:documentation>Draughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC025">
        <xs:annotation>
          <xs:documentation>East Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC026">
        <xs:annotation>
          <xs:documentation>East Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC027">
        <xs:annotation>
          <xs:documentation>Elkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC028">
        <xs:annotation>
          <xs:documentation>Everdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC029">
        <xs:annotation>
          <xs:documentation>Farthingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC030">
        <xs:annotation>
          <xs:documentation>Fawsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC031">
        <xs:annotation>
          <xs:documentation>Flore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC032">
        <xs:annotation>
          <xs:documentation>Great Oxendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC033">
        <xs:annotation>
          <xs:documentation>Guilsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC034">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC035">
        <xs:annotation>
          <xs:documentation>Harlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC036">
        <xs:annotation>
          <xs:documentation>Haselbech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC037">
        <xs:annotation>
          <xs:documentation>Hellidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC038">
        <xs:annotation>
          <xs:documentation>Holcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC039">
        <xs:annotation>
          <xs:documentation>Holdenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC040">
        <xs:annotation>
          <xs:documentation>Hollowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC041">
        <xs:annotation>
          <xs:documentation>Kelmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC042">
        <xs:annotation>
          <xs:documentation>Kilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC043">
        <xs:annotation>
          <xs:documentation>Lamport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC044">
        <xs:annotation>
          <xs:documentation>Lilbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC045">
        <xs:annotation>
          <xs:documentation>Long Buckby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC046">
        <xs:annotation>
          <xs:documentation>Maidwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC047">
        <xs:annotation>
          <xs:documentation>Marston Trussell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC048">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC049">
        <xs:annotation>
          <xs:documentation>Naseby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC050">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC051">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC052">
        <xs:annotation>
          <xs:documentation>Old</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC053">
        <xs:annotation>
          <xs:documentation>Overstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC054">
        <xs:annotation>
          <xs:documentation>Pitsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC055">
        <xs:annotation>
          <xs:documentation>Preston Capes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC056">
        <xs:annotation>
          <xs:documentation>Ravensthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC057">
        <xs:annotation>
          <xs:documentation>Scaldwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC058">
        <xs:annotation>
          <xs:documentation>Sibbertoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC059">
        <xs:annotation>
          <xs:documentation>Spratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC060">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC061">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC062">
        <xs:annotation>
          <xs:documentation>Stowe IX Churches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC063">
        <xs:annotation>
          <xs:documentation>Sulby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC064">
        <xs:annotation>
          <xs:documentation>Thornby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC065">
        <xs:annotation>
          <xs:documentation>Walgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC066">
        <xs:annotation>
          <xs:documentation>Watford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC067">
        <xs:annotation>
          <xs:documentation>Weedon Bec</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC068">
        <xs:annotation>
          <xs:documentation>Welford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC069">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC070">
        <xs:annotation>
          <xs:documentation>West Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC071">
        <xs:annotation>
          <xs:documentation>Whilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC072">
        <xs:annotation>
          <xs:documentation>Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC073">
        <xs:annotation>
          <xs:documentation>Woodford cum Membris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC074">
        <xs:annotation>
          <xs:documentation>Yelvertoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC075">
        <xs:annotation>
          <xs:documentation>Daventry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD001">
        <xs:annotation>
          <xs:documentation>Aldwincle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD002">
        <xs:annotation>
          <xs:documentation>Apethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD003">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD004">
        <xs:annotation>
          <xs:documentation>Barnwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD005">
        <xs:annotation>
          <xs:documentation>Benefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD006">
        <xs:annotation>
          <xs:documentation>Blatherwycke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD007">
        <xs:annotation>
          <xs:documentation>Brigstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD008">
        <xs:annotation>
          <xs:documentation>Bulwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD009">
        <xs:annotation>
          <xs:documentation>Chelveston cum Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD010">
        <xs:annotation>
          <xs:documentation>Clopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD011">
        <xs:annotation>
          <xs:documentation>Collyweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD012">
        <xs:annotation>
          <xs:documentation>Cotterstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD013">
        <xs:annotation>
          <xs:documentation>Deene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD014">
        <xs:annotation>
          <xs:documentation>Deenethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD015">
        <xs:annotation>
          <xs:documentation>Denford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD016">
        <xs:annotation>
          <xs:documentation>Duddington-with-Fineshade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD017">
        <xs:annotation>
          <xs:documentation>Easton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD018">
        <xs:annotation>
          <xs:documentation>Fotheringhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD019">
        <xs:annotation>
          <xs:documentation>Glapthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD020">
        <xs:annotation>
          <xs:documentation>Great Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD021">
        <xs:annotation>
          <xs:documentation>Hargrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD022">
        <xs:annotation>
          <xs:documentation>Harringworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD023">
        <xs:annotation>
          <xs:documentation>Hemington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD024">
        <xs:annotation>
          <xs:documentation>Higham Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD025">
        <xs:annotation>
          <xs:documentation>Irthlingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD026">
        <xs:annotation>
          <xs:documentation>Islip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD027">
        <xs:annotation>
          <xs:documentation>King's Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD028">
        <xs:annotation>
          <xs:documentation>Laxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD029">
        <xs:annotation>
          <xs:documentation>Lilford-cum-Wigsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD030">
        <xs:annotation>
          <xs:documentation>Little Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD031">
        <xs:annotation>
          <xs:documentation>Lowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD032">
        <xs:annotation>
          <xs:documentation>Luddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD033">
        <xs:annotation>
          <xs:documentation>Lutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD034">
        <xs:annotation>
          <xs:documentation>Nassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD035">
        <xs:annotation>
          <xs:documentation>Newton Bromswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD036">
        <xs:annotation>
          <xs:documentation>Oundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD037">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD038">
        <xs:annotation>
          <xs:documentation>Polebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD039">
        <xs:annotation>
          <xs:documentation>Raunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD040">
        <xs:annotation>
          <xs:documentation>Ringstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD041">
        <xs:annotation>
          <xs:documentation>Southwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD042">
        <xs:annotation>
          <xs:documentation>Stoke Doyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD043">
        <xs:annotation>
          <xs:documentation>Sudborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD044">
        <xs:annotation>
          <xs:documentation>Tansor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD045">
        <xs:annotation>
          <xs:documentation>Thorpe Achurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD046">
        <xs:annotation>
          <xs:documentation>Thrapston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD047">
        <xs:annotation>
          <xs:documentation>Thurning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD048">
        <xs:annotation>
          <xs:documentation>Titchmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD049">
        <xs:annotation>
          <xs:documentation>Twywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD050">
        <xs:annotation>
          <xs:documentation>Wadenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD051">
        <xs:annotation>
          <xs:documentation>Wakerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD052">
        <xs:annotation>
          <xs:documentation>Warmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD053">
        <xs:annotation>
          <xs:documentation>Woodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD054">
        <xs:annotation>
          <xs:documentation>Woodnewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD055">
        <xs:annotation>
          <xs:documentation>Yarwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD056">
        <xs:annotation>
          <xs:documentation>Rushden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UD057">
        <xs:annotation>
          <xs:documentation>Stanwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE001">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE002">
        <xs:annotation>
          <xs:documentation>Brampton Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE003">
        <xs:annotation>
          <xs:documentation>Braybrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE004">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE005">
        <xs:annotation>
          <xs:documentation>Burton Latimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE006">
        <xs:annotation>
          <xs:documentation>Cranford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE007">
        <xs:annotation>
          <xs:documentation>Cransley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE008">
        <xs:annotation>
          <xs:documentation>Desborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE009">
        <xs:annotation>
          <xs:documentation>Dingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE010">
        <xs:annotation>
          <xs:documentation>Geddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE011">
        <xs:annotation>
          <xs:documentation>Grafton Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE012">
        <xs:annotation>
          <xs:documentation>Harrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE013">
        <xs:annotation>
          <xs:documentation>Loddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE014">
        <xs:annotation>
          <xs:documentation>Newton and Little Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE015">
        <xs:annotation>
          <xs:documentation>Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE016">
        <xs:annotation>
          <xs:documentation>Pytchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE017">
        <xs:annotation>
          <xs:documentation>Rothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE018">
        <xs:annotation>
          <xs:documentation>Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE019">
        <xs:annotation>
          <xs:documentation>Stoke Albany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE020">
        <xs:annotation>
          <xs:documentation>Sutton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE021">
        <xs:annotation>
          <xs:documentation>Thorpe Malsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE022">
        <xs:annotation>
          <xs:documentation>Warkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE023">
        <xs:annotation>
          <xs:documentation>Weekley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE024">
        <xs:annotation>
          <xs:documentation>Weston by Welland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE025">
        <xs:annotation>
          <xs:documentation>Wilbarston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE026">
        <xs:annotation>
          <xs:documentation>Barton Seagrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UE027">
        <xs:annotation>
          <xs:documentation>Mawsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF001">
        <xs:annotation>
          <xs:documentation>Billing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF002">
        <xs:annotation>
          <xs:documentation>Collingtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF003">
        <xs:annotation>
          <xs:documentation>Duston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF004">
        <xs:annotation>
          <xs:documentation>Great Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF005">
        <xs:annotation>
          <xs:documentation>Hardingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF006">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UF007">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG001">
        <xs:annotation>
          <xs:documentation>Abthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG002">
        <xs:annotation>
          <xs:documentation>Adstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG003">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG004">
        <xs:annotation>
          <xs:documentation>Aston le Walls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG005">
        <xs:annotation>
          <xs:documentation>Aynho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG006">
        <xs:annotation>
          <xs:documentation>Blakesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG007">
        <xs:annotation>
          <xs:documentation>Blisworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG008">
        <xs:annotation>
          <xs:documentation>Boddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG009">
        <xs:annotation>
          <xs:documentation>Brackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG010">
        <xs:annotation>
          <xs:documentation>Bradden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG011">
        <xs:annotation>
          <xs:documentation>Brafield on the Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG012">
        <xs:annotation>
          <xs:documentation>Bugbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG013">
        <xs:annotation>
          <xs:documentation>Castle Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG014">
        <xs:annotation>
          <xs:documentation>Chacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG015">
        <xs:annotation>
          <xs:documentation>Chipping Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG016">
        <xs:annotation>
          <xs:documentation>Cogenhoe and Whiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG017">
        <xs:annotation>
          <xs:documentation>Cold Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG018">
        <xs:annotation>
          <xs:documentation>Cosgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG019">
        <xs:annotation>
          <xs:documentation>Courteenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG020">
        <xs:annotation>
          <xs:documentation>Croughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG021">
        <xs:annotation>
          <xs:documentation>Culworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG022">
        <xs:annotation>
          <xs:documentation>Deanshanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG023">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG024">
        <xs:annotation>
          <xs:documentation>Easton Neston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG025">
        <xs:annotation>
          <xs:documentation>Edgcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG026">
        <xs:annotation>
          <xs:documentation>Evenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG027">
        <xs:annotation>
          <xs:documentation>Eydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG028">
        <xs:annotation>
          <xs:documentation>Farthinghoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG029">
        <xs:annotation>
          <xs:documentation>Gayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG030">
        <xs:annotation>
          <xs:documentation>Grafton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG031">
        <xs:annotation>
          <xs:documentation>Greatworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG032">
        <xs:annotation>
          <xs:documentation>Greens Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG033">
        <xs:annotation>
          <xs:documentation>Hackleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG034">
        <xs:annotation>
          <xs:documentation>Harpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG035">
        <xs:annotation>
          <xs:documentation>Hartwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG036">
        <xs:annotation>
          <xs:documentation>Helmdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG037">
        <xs:annotation>
          <xs:documentation>Hinton-in-the Hedges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG038">
        <xs:annotation>
          <xs:documentation>Kings Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG039">
        <xs:annotation>
          <xs:documentation>Kislingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG040">
        <xs:annotation>
          <xs:documentation>Litchborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG041">
        <xs:annotation>
          <xs:documentation>Little Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG042">
        <xs:annotation>
          <xs:documentation>Maidford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG043">
        <xs:annotation>
          <xs:documentation>Marston St Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG044">
        <xs:annotation>
          <xs:documentation>Middleton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG045">
        <xs:annotation>
          <xs:documentation>Milton Malsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG046">
        <xs:annotation>
          <xs:documentation>Moreton Pinkney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG047">
        <xs:annotation>
          <xs:documentation>Nether Heyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG048">
        <xs:annotation>
          <xs:documentation>Newbottle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG049">
        <xs:annotation>
          <xs:documentation>Old Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG050">
        <xs:annotation>
          <xs:documentation>Pattishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG051">
        <xs:annotation>
          <xs:documentation>Paulerspury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG052">
        <xs:annotation>
          <xs:documentation>Potterspury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG053">
        <xs:annotation>
          <xs:documentation>Quinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG054">
        <xs:annotation>
          <xs:documentation>Radstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG055">
        <xs:annotation>
          <xs:documentation>Roade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG056">
        <xs:annotation>
          <xs:documentation>Rothersthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG057">
        <xs:annotation>
          <xs:documentation>Shutlanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG058">
        <xs:annotation>
          <xs:documentation>Silverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG059">
        <xs:annotation>
          <xs:documentation>Slapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG060">
        <xs:annotation>
          <xs:documentation>Stoke Bruerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG061">
        <xs:annotation>
          <xs:documentation>Sulgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG062">
        <xs:annotation>
          <xs:documentation>Syresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG063">
        <xs:annotation>
          <xs:documentation>Thenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG064">
        <xs:annotation>
          <xs:documentation>Thorpe Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG065">
        <xs:annotation>
          <xs:documentation>Tiffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG066">
        <xs:annotation>
          <xs:documentation>Towcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG067">
        <xs:annotation>
          <xs:documentation>Upper Heyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG068">
        <xs:annotation>
          <xs:documentation>Wappenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG069">
        <xs:annotation>
          <xs:documentation>Warkworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG070">
        <xs:annotation>
          <xs:documentation>Weston and Weedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG071">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG072">
        <xs:annotation>
          <xs:documentation>Whittlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG073">
        <xs:annotation>
          <xs:documentation>Wicken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG074">
        <xs:annotation>
          <xs:documentation>Woodend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG075">
        <xs:annotation>
          <xs:documentation>Yardley Gobion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG076">
        <xs:annotation>
          <xs:documentation>Yardley Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG077">
        <xs:annotation>
          <xs:documentation>Overthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG078">
        <xs:annotation>
          <xs:documentation>Grange Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UG079">
        <xs:annotation>
          <xs:documentation>Alderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH001">
        <xs:annotation>
          <xs:documentation>Bozeat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH002">
        <xs:annotation>
          <xs:documentation>Earls Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH003">
        <xs:annotation>
          <xs:documentation>Easton Maudit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH004">
        <xs:annotation>
          <xs:documentation>Ecton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH005">
        <xs:annotation>
          <xs:documentation>Finedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH006">
        <xs:annotation>
          <xs:documentation>Great Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH007">
        <xs:annotation>
          <xs:documentation>Great Harrowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH008">
        <xs:annotation>
          <xs:documentation>Grendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH009">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH010">
        <xs:annotation>
          <xs:documentation>Irchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH011">
        <xs:annotation>
          <xs:documentation>Isham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH012">
        <xs:annotation>
          <xs:documentation>Little Harrowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH013">
        <xs:annotation>
          <xs:documentation>Mears Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH014">
        <xs:annotation>
          <xs:documentation>Orlingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH015">
        <xs:annotation>
          <xs:documentation>Strixton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH016">
        <xs:annotation>
          <xs:documentation>Sywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH017">
        <xs:annotation>
          <xs:documentation>Wilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UH018">
        <xs:annotation>
          <xs:documentation>Wollaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB001">
        <xs:annotation>
          <xs:documentation>Acklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB002">
        <xs:annotation>
          <xs:documentation>Alnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB003">
        <xs:annotation>
          <xs:documentation>Alnmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB004">
        <xs:annotation>
          <xs:documentation>Alnwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB005">
        <xs:annotation>
          <xs:documentation>Alwinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB006">
        <xs:annotation>
          <xs:documentation>Amble by the Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB007">
        <xs:annotation>
          <xs:documentation>Biddlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB008">
        <xs:annotation>
          <xs:documentation>Brinkburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB009">
        <xs:annotation>
          <xs:documentation>Callaly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB010">
        <xs:annotation>
          <xs:documentation>Cartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB011">
        <xs:annotation>
          <xs:documentation>Craster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB012">
        <xs:annotation>
          <xs:documentation>Denwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB013">
        <xs:annotation>
          <xs:documentation>Edlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB014">
        <xs:annotation>
          <xs:documentation>Eglingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB015">
        <xs:annotation>
          <xs:documentation>Elsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB016">
        <xs:annotation>
          <xs:documentation>Embleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB017">
        <xs:annotation>
          <xs:documentation>Felton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB018">
        <xs:annotation>
          <xs:documentation>Glanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB019">
        <xs:annotation>
          <xs:documentation>Harbottle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB020">
        <xs:annotation>
          <xs:documentation>Hauxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB021">
        <xs:annotation>
          <xs:documentation>Hedgeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB022">
        <xs:annotation>
          <xs:documentation>Hepple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB023">
        <xs:annotation>
          <xs:documentation>Hesleyhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB024">
        <xs:annotation>
          <xs:documentation>Hollinghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB025">
        <xs:annotation>
          <xs:documentation>Lesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB026">
        <xs:annotation>
          <xs:documentation>Longframlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB027">
        <xs:annotation>
          <xs:documentation>Longhoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB028">
        <xs:annotation>
          <xs:documentation>Netherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB029">
        <xs:annotation>
          <xs:documentation>Newton-by-the-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB030">
        <xs:annotation>
          <xs:documentation>Newton-on-the-Moor and Swarland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB031">
        <xs:annotation>
          <xs:documentation>Nunnykirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB032">
        <xs:annotation>
          <xs:documentation>Rennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB033">
        <xs:annotation>
          <xs:documentation>Rothbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB034">
        <xs:annotation>
          <xs:documentation>Rothley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB035">
        <xs:annotation>
          <xs:documentation>Shilbottle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB036">
        <xs:annotation>
          <xs:documentation>Snitter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB037">
        <xs:annotation>
          <xs:documentation>Thropton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB038">
        <xs:annotation>
          <xs:documentation>Togston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB039">
        <xs:annotation>
          <xs:documentation>Whitton and Tosson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB040">
        <xs:annotation>
          <xs:documentation>Warkworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UB041">
        <xs:annotation>
          <xs:documentation>Whittingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC001">
        <xs:annotation>
          <xs:documentation>Adderstone with Lucker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC002">
        <xs:annotation>
          <xs:documentation>Akeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC003">
        <xs:annotation>
          <xs:documentation>Ancroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC004">
        <xs:annotation>
          <xs:documentation>Bamburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC005">
        <xs:annotation>
          <xs:documentation>Beadnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC006">
        <xs:annotation>
          <xs:documentation>Belford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC007">
        <xs:annotation>
          <xs:documentation>Bewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC008">
        <xs:annotation>
          <xs:documentation>Bowsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC009">
        <xs:annotation>
          <xs:documentation>Branxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC010">
        <xs:annotation>
          <xs:documentation>Carham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC011">
        <xs:annotation>
          <xs:documentation>Chatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC012">
        <xs:annotation>
          <xs:documentation>Chillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC013">
        <xs:annotation>
          <xs:documentation>Cornhill-on-Tweed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC014">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC015">
        <xs:annotation>
          <xs:documentation>Duddo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC016">
        <xs:annotation>
          <xs:documentation>Earle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC017">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC018">
        <xs:annotation>
          <xs:documentation>Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC019">
        <xs:annotation>
          <xs:documentation>Ewart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC020">
        <xs:annotation>
          <xs:documentation>Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC021">
        <xs:annotation>
          <xs:documentation>Holy Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC022">
        <xs:annotation>
          <xs:documentation>Horncliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC023">
        <xs:annotation>
          <xs:documentation>Ilderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC024">
        <xs:annotation>
          <xs:documentation>Ingram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC025">
        <xs:annotation>
          <xs:documentation>Kilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC026">
        <xs:annotation>
          <xs:documentation>Kirknewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC027">
        <xs:annotation>
          <xs:documentation>Kyloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC028">
        <xs:annotation>
          <xs:documentation>Lilburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC029">
        <xs:annotation>
          <xs:documentation>Lowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC030">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC031">
        <xs:annotation>
          <xs:documentation>Milfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC032">
        <xs:annotation>
          <xs:documentation>Norham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC033">
        <xs:annotation>
          <xs:documentation>North Sunderland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC034">
        <xs:annotation>
          <xs:documentation>Ord</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC035">
        <xs:annotation>
          <xs:documentation>Roddam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC036">
        <xs:annotation>
          <xs:documentation>Shoreswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UC037">
        <xs:annotation>
          <xs:documentation>Wooler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE001">
        <xs:annotation>
          <xs:documentation>Belsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE002">
        <xs:annotation>
          <xs:documentation>Capheaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE003">
        <xs:annotation>
          <xs:documentation>Cresswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE004">
        <xs:annotation>
          <xs:documentation>East Chevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE005">
        <xs:annotation>
          <xs:documentation>Ellington and Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE006">
        <xs:annotation>
          <xs:documentation>Hartburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE007">
        <xs:annotation>
          <xs:documentation>Hebron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE008">
        <xs:annotation>
          <xs:documentation>Heddon-on-the-Wall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE009">
        <xs:annotation>
          <xs:documentation>Hepscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE010">
        <xs:annotation>
          <xs:documentation>Longhirst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE011">
        <xs:annotation>
          <xs:documentation>Longhorsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE012">
        <xs:annotation>
          <xs:documentation>Lynemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE013">
        <xs:annotation>
          <xs:documentation>Matfen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE014">
        <xs:annotation>
          <xs:documentation>Meldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE015">
        <xs:annotation>
          <xs:documentation>Mitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE016">
        <xs:annotation>
          <xs:documentation>Morpeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE017">
        <xs:annotation>
          <xs:documentation>Netherwitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE018">
        <xs:annotation>
          <xs:documentation>Pegswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE019">
        <xs:annotation>
          <xs:documentation>Ponteland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE020">
        <xs:annotation>
          <xs:documentation>Stamfordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE021">
        <xs:annotation>
          <xs:documentation>Stannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE022">
        <xs:annotation>
          <xs:documentation>Thirston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE024">
        <xs:annotation>
          <xs:documentation>Ulgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE025">
        <xs:annotation>
          <xs:documentation>Wallington Demesne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE027">
        <xs:annotation>
          <xs:documentation>Whalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE028">
        <xs:annotation>
          <xs:documentation>Widdrington Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE029">
        <xs:annotation>
          <xs:documentation>Tritlington and West Chevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UE030">
        <xs:annotation>
          <xs:documentation>Widdrington Station and Stobswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF001">
        <xs:annotation>
          <xs:documentation>Acomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF002">
        <xs:annotation>
          <xs:documentation>Allendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF003">
        <xs:annotation>
          <xs:documentation>Bardon Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF004">
        <xs:annotation>
          <xs:documentation>Bavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF005">
        <xs:annotation>
          <xs:documentation>Bellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF006">
        <xs:annotation>
          <xs:documentation>Birtley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF007">
        <xs:annotation>
          <xs:documentation>Blanchland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF008">
        <xs:annotation>
          <xs:documentation>Broomhaugh and Riding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF009">
        <xs:annotation>
          <xs:documentation>Broomley and Stocksfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF010">
        <xs:annotation>
          <xs:documentation>Bywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF011">
        <xs:annotation>
          <xs:documentation>Chollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF012">
        <xs:annotation>
          <xs:documentation>Coanwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF013">
        <xs:annotation>
          <xs:documentation>Corbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF014">
        <xs:annotation>
          <xs:documentation>Corsenside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF015">
        <xs:annotation>
          <xs:documentation>Falstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF016">
        <xs:annotation>
          <xs:documentation>Featherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF017">
        <xs:annotation>
          <xs:documentation>Greenhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF018">
        <xs:annotation>
          <xs:documentation>Greystead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF019">
        <xs:annotation>
          <xs:documentation>Haltwhistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF020">
        <xs:annotation>
          <xs:documentation>Hartleyburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF021">
        <xs:annotation>
          <xs:documentation>Haydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF022">
        <xs:annotation>
          <xs:documentation>Healey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF023">
        <xs:annotation>
          <xs:documentation>Hedley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF024">
        <xs:annotation>
          <xs:documentation>Henshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF025">
        <xs:annotation>
          <xs:documentation>Hexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF026">
        <xs:annotation>
          <xs:documentation>Hexhamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF027">
        <xs:annotation>
          <xs:documentation>Hexhamshire Low Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF028">
        <xs:annotation>
          <xs:documentation>Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF029">
        <xs:annotation>
          <xs:documentation>Humshaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF030">
        <xs:annotation>
          <xs:documentation>Kielder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF031">
        <xs:annotation>
          <xs:documentation>Kirkwhelpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF032">
        <xs:annotation>
          <xs:documentation>Knaresdale with Kirkhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF033">
        <xs:annotation>
          <xs:documentation>Melkridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF034">
        <xs:annotation>
          <xs:documentation>Newbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF035">
        <xs:annotation>
          <xs:documentation>Otterburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF036">
        <xs:annotation>
          <xs:documentation>Ovingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF037">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF038">
        <xs:annotation>
          <xs:documentation>Plenmeller with Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF039">
        <xs:annotation>
          <xs:documentation>Prudhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF040">
        <xs:annotation>
          <xs:documentation>Rochester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF041">
        <xs:annotation>
          <xs:documentation>Sandhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF042">
        <xs:annotation>
          <xs:documentation>Shotley Low Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF043">
        <xs:annotation>
          <xs:documentation>Simonburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF044">
        <xs:annotation>
          <xs:documentation>Slaley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF045">
        <xs:annotation>
          <xs:documentation>Tarset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF046">
        <xs:annotation>
          <xs:documentation>Thirlwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF047">
        <xs:annotation>
          <xs:documentation>Wall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF048">
        <xs:annotation>
          <xs:documentation>Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF049">
        <xs:annotation>
          <xs:documentation>Wark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF050">
        <xs:annotation>
          <xs:documentation>West Allen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF051">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UF052">
        <xs:annotation>
          <xs:documentation>Wylam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB001">
        <xs:annotation>
          <xs:documentation>Airton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB002">
        <xs:annotation>
          <xs:documentation>Appletreewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB003">
        <xs:annotation>
          <xs:documentation>Arncliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB004">
        <xs:annotation>
          <xs:documentation>Austwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB005">
        <xs:annotation>
          <xs:documentation>Bank Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB006">
        <xs:annotation>
          <xs:documentation>Barden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB007">
        <xs:annotation>
          <xs:documentation>Beamsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB008">
        <xs:annotation>
          <xs:documentation>Bentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB009">
        <xs:annotation>
          <xs:documentation>Bolton Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB010">
        <xs:annotation>
          <xs:documentation>Bordley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB011">
        <xs:annotation>
          <xs:documentation>Bradleys Both</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB012">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB013">
        <xs:annotation>
          <xs:documentation>Buckden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB014">
        <xs:annotation>
          <xs:documentation>Burnsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB015">
        <xs:annotation>
          <xs:documentation>Burton in Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB016">
        <xs:annotation>
          <xs:documentation>Calton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB017">
        <xs:annotation>
          <xs:documentation>Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB018">
        <xs:annotation>
          <xs:documentation>Clapham cum Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB019">
        <xs:annotation>
          <xs:documentation>Coniston Cold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB020">
        <xs:annotation>
          <xs:documentation>Conistone with Kilnsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB021">
        <xs:annotation>
          <xs:documentation>Cononley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB022">
        <xs:annotation>
          <xs:documentation>Cowling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB023">
        <xs:annotation>
          <xs:documentation>Cracoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB024">
        <xs:annotation>
          <xs:documentation>Draughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB025">
        <xs:annotation>
          <xs:documentation>Elslack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB026">
        <xs:annotation>
          <xs:documentation>Embsay with Eastby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB027">
        <xs:annotation>
          <xs:documentation>Eshton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB028">
        <xs:annotation>
          <xs:documentation>Farnhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB029">
        <xs:annotation>
          <xs:documentation>Flasby with Winterburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB030">
        <xs:annotation>
          <xs:documentation>Gargrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB031">
        <xs:annotation>
          <xs:documentation>Giggleswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB032">
        <xs:annotation>
          <xs:documentation>Glusburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB033">
        <xs:annotation>
          <xs:documentation>Grassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB034">
        <xs:annotation>
          <xs:documentation>Halton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB035">
        <xs:annotation>
          <xs:documentation>Halton Gill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB036">
        <xs:annotation>
          <xs:documentation>Halton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB037">
        <xs:annotation>
          <xs:documentation>Hanlith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB038">
        <xs:annotation>
          <xs:documentation>Hartlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB039">
        <xs:annotation>
          <xs:documentation>Hawkswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB040">
        <xs:annotation>
          <xs:documentation>Hazlewood with Storiths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB041">
        <xs:annotation>
          <xs:documentation>Hebden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB042">
        <xs:annotation>
          <xs:documentation>Hellifield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB043">
        <xs:annotation>
          <xs:documentation>Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB044">
        <xs:annotation>
          <xs:documentation>Horton in Ribblesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB045">
        <xs:annotation>
          <xs:documentation>Ingleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB046">
        <xs:annotation>
          <xs:documentation>Kettlewell with Starbotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB047">
        <xs:annotation>
          <xs:documentation>Kildwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB048">
        <xs:annotation>
          <xs:documentation>Kirkby Malham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB049">
        <xs:annotation>
          <xs:documentation>Langcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB050">
        <xs:annotation>
          <xs:documentation>Lawkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB051">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB052">
        <xs:annotation>
          <xs:documentation>Litton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB053">
        <xs:annotation>
          <xs:documentation>Long Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB054">
        <xs:annotation>
          <xs:documentation>Lothersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB055">
        <xs:annotation>
          <xs:documentation>Malham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB056">
        <xs:annotation>
          <xs:documentation>Malham Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB057">
        <xs:annotation>
          <xs:documentation>Martons Both</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB058">
        <xs:annotation>
          <xs:documentation>Nappa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB059">
        <xs:annotation>
          <xs:documentation>Otterburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB060">
        <xs:annotation>
          <xs:documentation>Rathmell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB061">
        <xs:annotation>
          <xs:documentation>Rylstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB062">
        <xs:annotation>
          <xs:documentation>Scosthrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB063">
        <xs:annotation>
          <xs:documentation>Settle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB064">
        <xs:annotation>
          <xs:documentation>Skipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB065">
        <xs:annotation>
          <xs:documentation>Stainforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB066">
        <xs:annotation>
          <xs:documentation>Stirton with Thorlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB067">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB068">
        <xs:annotation>
          <xs:documentation>Swinden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB069">
        <xs:annotation>
          <xs:documentation>Thornton in Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB070">
        <xs:annotation>
          <xs:documentation>Thornton in Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB071">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB072">
        <xs:annotation>
          <xs:documentation>Threshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UB073">
        <xs:annotation>
          <xs:documentation>Wigglesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC001">
        <xs:annotation>
          <xs:documentation>Ainderby Mires with Holtby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC002">
        <xs:annotation>
          <xs:documentation>Ainderby Quernhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC003">
        <xs:annotation>
          <xs:documentation>Ainderby Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC004">
        <xs:annotation>
          <xs:documentation>Aiskew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC005">
        <xs:annotation>
          <xs:documentation>Aldwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC006">
        <xs:annotation>
          <xs:documentation>Alne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC007">
        <xs:annotation>
          <xs:documentation>Angram Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC008">
        <xs:annotation>
          <xs:documentation>Appleton Wiske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC009">
        <xs:annotation>
          <xs:documentation>Bagby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC010">
        <xs:annotation>
          <xs:documentation>Balk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC011">
        <xs:annotation>
          <xs:documentation>Bedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC012">
        <xs:annotation>
          <xs:documentation>Beningbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC013">
        <xs:annotation>
          <xs:documentation>Bilsdale Midcable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC014">
        <xs:annotation>
          <xs:documentation>Birdforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC015">
        <xs:annotation>
          <xs:documentation>Birkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC016">
        <xs:annotation>
          <xs:documentation>Boltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC017">
        <xs:annotation>
          <xs:documentation>Borrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC018">
        <xs:annotation>
          <xs:documentation>Brafferton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC019">
        <xs:annotation>
          <xs:documentation>Brandsby-cum-Stearsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC020">
        <xs:annotation>
          <xs:documentation>Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC021">
        <xs:annotation>
          <xs:documentation>Burneston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC022">
        <xs:annotation>
          <xs:documentation>Burrill with Cowling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC023">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC024">
        <xs:annotation>
          <xs:documentation>Carlton Husthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC025">
        <xs:annotation>
          <xs:documentation>Carlton Miniott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC026">
        <xs:annotation>
          <xs:documentation>Carthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC027">
        <xs:annotation>
          <xs:documentation>Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC028">
        <xs:annotation>
          <xs:documentation>Clifton-on-Yore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC029">
        <xs:annotation>
          <xs:documentation>Cotcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC030">
        <xs:annotation>
          <xs:documentation>Cowesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC031">
        <xs:annotation>
          <xs:documentation>Coxwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC032">
        <xs:annotation>
          <xs:documentation>Crakehall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC033">
        <xs:annotation>
          <xs:documentation>Crathorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC034">
        <xs:annotation>
          <xs:documentation>Crayke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC035">
        <xs:annotation>
          <xs:documentation>Crosby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC036">
        <xs:annotation>
          <xs:documentation>Dalby-cum-Skewsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC037">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC039">
        <xs:annotation>
          <xs:documentation>Deighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC040">
        <xs:annotation>
          <xs:documentation>Easby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC041">
        <xs:annotation>
          <xs:documentation>Easingwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC042">
        <xs:annotation>
          <xs:documentation>East Cowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC043">
        <xs:annotation>
          <xs:documentation>East Harlsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC044">
        <xs:annotation>
          <xs:documentation>East Rounton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC045">
        <xs:annotation>
          <xs:documentation>East Tanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC046">
        <xs:annotation>
          <xs:documentation>Eldmire with Crakehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC047">
        <xs:annotation>
          <xs:documentation>Ellerbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC048">
        <xs:annotation>
          <xs:documentation>Exelby, Leeming and Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC049">
        <xs:annotation>
          <xs:documentation>Faceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC050">
        <xs:annotation>
          <xs:documentation>Farlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC051">
        <xs:annotation>
          <xs:documentation>Fawdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC052">
        <xs:annotation>
          <xs:documentation>Felixkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC053">
        <xs:annotation>
          <xs:documentation>Firby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC054">
        <xs:annotation>
          <xs:documentation>Flawith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC055">
        <xs:annotation>
          <xs:documentation>Gatenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC056">
        <xs:annotation>
          <xs:documentation>Girsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC057">
        <xs:annotation>
          <xs:documentation>Great and Little Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC058">
        <xs:annotation>
          <xs:documentation>Great Ayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC059">
        <xs:annotation>
          <xs:documentation>Great Busby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC060">
        <xs:annotation>
          <xs:documentation>Great Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC061">
        <xs:annotation>
          <xs:documentation>Great Smeaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC062">
        <xs:annotation>
          <xs:documentation>Hackforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC063">
        <xs:annotation>
          <xs:documentation>Helperby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC064">
        <xs:annotation>
          <xs:documentation>High Worsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC065">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC066">
        <xs:annotation>
          <xs:documentation>Hood Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC067">
        <xs:annotation>
          <xs:documentation>Hornby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC068">
        <xs:annotation>
          <xs:documentation>Howe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC069">
        <xs:annotation>
          <xs:documentation>Howgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC070">
        <xs:annotation>
          <xs:documentation>Huby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC071">
        <xs:annotation>
          <xs:documentation>Husthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC072">
        <xs:annotation>
          <xs:documentation>Hutton Bonville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC073">
        <xs:annotation>
          <xs:documentation>Hutton Rudby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC074">
        <xs:annotation>
          <xs:documentation>Hutton-Sessay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC075">
        <xs:annotation>
          <xs:documentation>Ingleby Arncliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC076">
        <xs:annotation>
          <xs:documentation>Ingleby Greenhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC077">
        <xs:annotation>
          <xs:documentation>Kepwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC078">
        <xs:annotation>
          <xs:documentation>Kilburn High and Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC079">
        <xs:annotation>
          <xs:documentation>Kildale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC080">
        <xs:annotation>
          <xs:documentation>Killerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC081">
        <xs:annotation>
          <xs:documentation>Kiplin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC082">
        <xs:annotation>
          <xs:documentation>Kirby Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC083">
        <xs:annotation>
          <xs:documentation>Kirby Sigston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC084">
        <xs:annotation>
          <xs:documentation>Kirby Wiske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC085">
        <xs:annotation>
          <xs:documentation>Kirkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC086">
        <xs:annotation>
          <xs:documentation>Kirkby Fleetham with Fencote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC087">
        <xs:annotation>
          <xs:documentation>Kirklington-cum-Upsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC088">
        <xs:annotation>
          <xs:documentation>Knayton with Brawith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC089">
        <xs:annotation>
          <xs:documentation>Landmoth-cum-Catto</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC090">
        <xs:annotation>
          <xs:documentation>Langthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC092">
        <xs:annotation>
          <xs:documentation>Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC093">
        <xs:annotation>
          <xs:documentation>Linton-on-Ouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC094">
        <xs:annotation>
          <xs:documentation>Little Ayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC095">
        <xs:annotation>
          <xs:documentation>Little Busby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC096">
        <xs:annotation>
          <xs:documentation>Little Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC097">
        <xs:annotation>
          <xs:documentation>Little Smeaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC098">
        <xs:annotation>
          <xs:documentation>Low Worsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC099">
        <xs:annotation>
          <xs:documentation>Marton-cum-Moxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC100">
        <xs:annotation>
          <xs:documentation>Maunby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC101">
        <xs:annotation>
          <xs:documentation>Middleton-on-Leven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC102">
        <xs:annotation>
          <xs:documentation>Morton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC103">
        <xs:annotation>
          <xs:documentation>Myton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC104">
        <xs:annotation>
          <xs:documentation>Nether Silton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC105">
        <xs:annotation>
          <xs:documentation>Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC106">
        <xs:annotation>
          <xs:documentation>Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC107">
        <xs:annotation>
          <xs:documentation>Newby Wiske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC108">
        <xs:annotation>
          <xs:documentation>Newsham with Breckenbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC109">
        <xs:annotation>
          <xs:documentation>Newton-on-Ouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC110">
        <xs:annotation>
          <xs:documentation>Northallerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC111">
        <xs:annotation>
          <xs:documentation>North Kilvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC112">
        <xs:annotation>
          <xs:documentation>North Otterington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC113">
        <xs:annotation>
          <xs:documentation>Osmotherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC114">
        <xs:annotation>
          <xs:documentation>Oulston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC115">
        <xs:annotation>
          <xs:documentation>Over Dinsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC116">
        <xs:annotation>
          <xs:documentation>Over Silton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC117">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC118">
        <xs:annotation>
          <xs:documentation>Pickhill with Roxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC119">
        <xs:annotation>
          <xs:documentation>Picton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC120">
        <xs:annotation>
          <xs:documentation>Potto</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC121">
        <xs:annotation>
          <xs:documentation>Rand Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC122">
        <xs:annotation>
          <xs:documentation>Raskelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC123">
        <xs:annotation>
          <xs:documentation>Romanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC124">
        <xs:annotation>
          <xs:documentation>Rookwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC125">
        <xs:annotation>
          <xs:documentation>Rudby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC126">
        <xs:annotation>
          <xs:documentation>Sandhutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC127">
        <xs:annotation>
          <xs:documentation>Scruton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC128">
        <xs:annotation>
          <xs:documentation>Seamer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC129">
        <xs:annotation>
          <xs:documentation>Sessay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC130">
        <xs:annotation>
          <xs:documentation>Sexhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC131">
        <xs:annotation>
          <xs:documentation>Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC132">
        <xs:annotation>
          <xs:documentation>Sinderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC133">
        <xs:annotation>
          <xs:documentation>Skipton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC134">
        <xs:annotation>
          <xs:documentation>Skutterskelfe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC135">
        <xs:annotation>
          <xs:documentation>Snape with Thorp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC136">
        <xs:annotation>
          <xs:documentation>South Cowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC137">
        <xs:annotation>
          <xs:documentation>South Kilvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC138">
        <xs:annotation>
          <xs:documentation>South Otterington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC139">
        <xs:annotation>
          <xs:documentation>Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC140">
        <xs:annotation>
          <xs:documentation>Sowerby-under-Cotcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC141">
        <xs:annotation>
          <xs:documentation>Stillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC142">
        <xs:annotation>
          <xs:documentation>Stokesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC143">
        <xs:annotation>
          <xs:documentation>Sutton-on-the-Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC144">
        <xs:annotation>
          <xs:documentation>Sutton-under-Whitestonecliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC145">
        <xs:annotation>
          <xs:documentation>Sutton with Howgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC146">
        <xs:annotation>
          <xs:documentation>Swainby with Allerthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC147">
        <xs:annotation>
          <xs:documentation>Theakston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC148">
        <xs:annotation>
          <xs:documentation>Thimbleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC149">
        <xs:annotation>
          <xs:documentation>Thirkleby High and Low with Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC150">
        <xs:annotation>
          <xs:documentation>Thirlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC151">
        <xs:annotation>
          <xs:documentation>Thirn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC152">
        <xs:annotation>
          <xs:documentation>Thirsk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC153">
        <xs:annotation>
          <xs:documentation>Tholthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC154">
        <xs:annotation>
          <xs:documentation>Thormanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC155">
        <xs:annotation>
          <xs:documentation>Thornbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC156">
        <xs:annotation>
          <xs:documentation>Thornton-le-Beans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC157">
        <xs:annotation>
          <xs:documentation>Thornton-le-Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC158">
        <xs:annotation>
          <xs:documentation>Thornton-le-Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC159">
        <xs:annotation>
          <xs:documentation>Thornton-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC160">
        <xs:annotation>
          <xs:documentation>Thornton Watlass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC161">
        <xs:annotation>
          <xs:documentation>Thrintoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC162">
        <xs:annotation>
          <xs:documentation>Tollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC163">
        <xs:annotation>
          <xs:documentation>Topcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC164">
        <xs:annotation>
          <xs:documentation>Upsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC165">
        <xs:annotation>
          <xs:documentation>Warlaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC166">
        <xs:annotation>
          <xs:documentation>Welbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC167">
        <xs:annotation>
          <xs:documentation>Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC168">
        <xs:annotation>
          <xs:documentation>West Harlsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC169">
        <xs:annotation>
          <xs:documentation>West Rounton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC170">
        <xs:annotation>
          <xs:documentation>West Tanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC171">
        <xs:annotation>
          <xs:documentation>Whenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC172">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC173">
        <xs:annotation>
          <xs:documentation>Whorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC174">
        <xs:annotation>
          <xs:documentation>Wildon Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC175">
        <xs:annotation>
          <xs:documentation>Winton, Stank and Hallikeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC176">
        <xs:annotation>
          <xs:documentation>Yafforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC177">
        <xs:annotation>
          <xs:documentation>Yearsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC178">
        <xs:annotation>
          <xs:documentation>Youlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UC179">
        <xs:annotation>
          <xs:documentation>Danby Wiske with Lazenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD001">
        <xs:annotation>
          <xs:documentation>Aldfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD002">
        <xs:annotation>
          <xs:documentation>Allerton Mauleverer with Hopperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD003">
        <xs:annotation>
          <xs:documentation>Arkendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD004">
        <xs:annotation>
          <xs:documentation>Asenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD005">
        <xs:annotation>
          <xs:documentation>Askwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD006">
        <xs:annotation>
          <xs:documentation>Azerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD007">
        <xs:annotation>
          <xs:documentation>Baldersby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD008">
        <xs:annotation>
          <xs:documentation>Bewerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD009">
        <xs:annotation>
          <xs:documentation>Bilton-in-Ainsty with Bickerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD010">
        <xs:annotation>
          <xs:documentation>Birstwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD011">
        <xs:annotation>
          <xs:documentation>Bishop Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD012">
        <xs:annotation>
          <xs:documentation>Bishop Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD013">
        <xs:annotation>
          <xs:documentation>Blubberhouses</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD014">
        <xs:annotation>
          <xs:documentation>Boroughbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD015">
        <xs:annotation>
          <xs:documentation>Brearton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD016">
        <xs:annotation>
          <xs:documentation>Bridge Hewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD017">
        <xs:annotation>
          <xs:documentation>Burton Leonard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD018">
        <xs:annotation>
          <xs:documentation>Burton-on-Yore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD019">
        <xs:annotation>
          <xs:documentation>Castley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD020">
        <xs:annotation>
          <xs:documentation>Cattal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD021">
        <xs:annotation>
          <xs:documentation>Clint cum Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD022">
        <xs:annotation>
          <xs:documentation>Colsterdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD023">
        <xs:annotation>
          <xs:documentation>Coneythorpe and Clareton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD024">
        <xs:annotation>
          <xs:documentation>Copgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD025">
        <xs:annotation>
          <xs:documentation>Copt Hewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD026">
        <xs:annotation>
          <xs:documentation>Cundall with Leckby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD027">
        <xs:annotation>
          <xs:documentation>Dacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD028">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD029">
        <xs:annotation>
          <xs:documentation>Dishforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD030">
        <xs:annotation>
          <xs:documentation>Dunsforths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD031">
        <xs:annotation>
          <xs:documentation>Eavestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD032">
        <xs:annotation>
          <xs:documentation>Ellenthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD033">
        <xs:annotation>
          <xs:documentation>Ellingstring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD034">
        <xs:annotation>
          <xs:documentation>Ellington High and Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD035">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD036">
        <xs:annotation>
          <xs:documentation>Farnley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD037">
        <xs:annotation>
          <xs:documentation>Fearby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD038">
        <xs:annotation>
          <xs:documentation>Felliscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD039">
        <xs:annotation>
          <xs:documentation>Ferrensby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD040">
        <xs:annotation>
          <xs:documentation>Fewston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD041">
        <xs:annotation>
          <xs:documentation>Flaxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD042">
        <xs:annotation>
          <xs:documentation>Follifoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD043">
        <xs:annotation>
          <xs:documentation>Fountains Earth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD044">
        <xs:annotation>
          <xs:documentation>Givendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD045">
        <xs:annotation>
          <xs:documentation>Goldsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD046">
        <xs:annotation>
          <xs:documentation>Grantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD047">
        <xs:annotation>
          <xs:documentation>Great Ouseburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD048">
        <xs:annotation>
          <xs:documentation>Great Ribston with Walshford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD049">
        <xs:annotation>
          <xs:documentation>Great Timble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD050">
        <xs:annotation>
          <xs:documentation>Green Hammerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD051">
        <xs:annotation>
          <xs:documentation>Grewelthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD052">
        <xs:annotation>
          <xs:documentation>Hampsthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD053">
        <xs:annotation>
          <xs:documentation>Hartwith cum Winsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD054">
        <xs:annotation>
          <xs:documentation>Haverah Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD055">
        <xs:annotation>
          <xs:documentation>Healey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD057">
        <xs:annotation>
          <xs:documentation>High and Low Bishopside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD058">
        <xs:annotation>
          <xs:documentation>Humberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD059">
        <xs:annotation>
          <xs:documentation>Hunsingore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD060">
        <xs:annotation>
          <xs:documentation>Hutton Conyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD061">
        <xs:annotation>
          <xs:documentation>Ilton-cum-Pott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD062">
        <xs:annotation>
          <xs:documentation>Kearby with Netherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD063">
        <xs:annotation>
          <xs:documentation>Killinghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD064">
        <xs:annotation>
          <xs:documentation>Kirby Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD065">
        <xs:annotation>
          <xs:documentation>Kirby Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD066">
        <xs:annotation>
          <xs:documentation>Kirkby Malzeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD067">
        <xs:annotation>
          <xs:documentation>Kirkby Overblow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD068">
        <xs:annotation>
          <xs:documentation>Kirk Deighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD069">
        <xs:annotation>
          <xs:documentation>Kirk Hammerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD070">
        <xs:annotation>
          <xs:documentation>Knaresborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD071">
        <xs:annotation>
          <xs:documentation>Langthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD072">
        <xs:annotation>
          <xs:documentation>Laverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD073">
        <xs:annotation>
          <xs:documentation>Leathley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD074">
        <xs:annotation>
          <xs:documentation>Lindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD075">
        <xs:annotation>
          <xs:documentation>Lindrick with Studley Royal and Fountains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD076">
        <xs:annotation>
          <xs:documentation>Little Ouseburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD077">
        <xs:annotation>
          <xs:documentation>Little Ribston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD078">
        <xs:annotation>
          <xs:documentation>Littlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD079">
        <xs:annotation>
          <xs:documentation>Little Timble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD080">
        <xs:annotation>
          <xs:documentation>Long Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD081">
        <xs:annotation>
          <xs:documentation>Markingfield Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD082">
        <xs:annotation>
          <xs:documentation>Markington with Wallerthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD083">
        <xs:annotation>
          <xs:documentation>Marton cum Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD084">
        <xs:annotation>
          <xs:documentation>Marton-le-Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD085">
        <xs:annotation>
          <xs:documentation>Masham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD086">
        <xs:annotation>
          <xs:documentation>Melmerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD087">
        <xs:annotation>
          <xs:documentation>Menwith with Darley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD088">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD089">
        <xs:annotation>
          <xs:documentation>Middleton Quernhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD090">
        <xs:annotation>
          <xs:documentation>Milby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD091">
        <xs:annotation>
          <xs:documentation>Moor Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD092">
        <xs:annotation>
          <xs:documentation>Nesfield with Langbar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD094">
        <xs:annotation>
          <xs:documentation>Newall with Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD095">
        <xs:annotation>
          <xs:documentation>Newby with Mulwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD096">
        <xs:annotation>
          <xs:documentation>Nidd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD097">
        <xs:annotation>
          <xs:documentation>North Deighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD098">
        <xs:annotation>
          <xs:documentation>North Rigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD099">
        <xs:annotation>
          <xs:documentation>North Stainley with Sleningford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD100">
        <xs:annotation>
          <xs:documentation>Norton Conyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD101">
        <xs:annotation>
          <xs:documentation>Norton-le-Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD102">
        <xs:annotation>
          <xs:documentation>Norwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD103">
        <xs:annotation>
          <xs:documentation>Nun Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD104">
        <xs:annotation>
          <xs:documentation>Pannal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD105">
        <xs:annotation>
          <xs:documentation>Plompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD106">
        <xs:annotation>
          <xs:documentation>Rainton with Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD107">
        <xs:annotation>
          <xs:documentation>Ripley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD108">
        <xs:annotation>
          <xs:documentation>Ripon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD109">
        <xs:annotation>
          <xs:documentation>Roecliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD111">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD112">
        <xs:annotation>
          <xs:documentation>Scotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD113">
        <xs:annotation>
          <xs:documentation>Scriven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD114">
        <xs:annotation>
          <xs:documentation>Sharow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD115">
        <xs:annotation>
          <xs:documentation>Sicklinghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD116">
        <xs:annotation>
          <xs:documentation>Skelding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD117">
        <xs:annotation>
          <xs:documentation>Skelton-on-Ure</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD118">
        <xs:annotation>
          <xs:documentation>South Stainley with Cayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD119">
        <xs:annotation>
          <xs:documentation>Spofforth with Stockeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD120">
        <xs:annotation>
          <xs:documentation>Stainburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD121">
        <xs:annotation>
          <xs:documentation>Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD122">
        <xs:annotation>
          <xs:documentation>Stonebeck Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD123">
        <xs:annotation>
          <xs:documentation>Stonebeck Up</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD124">
        <xs:annotation>
          <xs:documentation>Studley Roger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD125">
        <xs:annotation>
          <xs:documentation>Swinton with Warthermarske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD126">
        <xs:annotation>
          <xs:documentation>Thornthwaite with Padside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD127">
        <xs:annotation>
          <xs:documentation>Thornton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD128">
        <xs:annotation>
          <xs:documentation>Thornville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD129">
        <xs:annotation>
          <xs:documentation>Thorpe Underwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD130">
        <xs:annotation>
          <xs:documentation>Thruscross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD131">
        <xs:annotation>
          <xs:documentation>Tockwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD133">
        <xs:annotation>
          <xs:documentation>Walkingham Hill with Occaney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD134">
        <xs:annotation>
          <xs:documentation>Warsill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD135">
        <xs:annotation>
          <xs:documentation>Wath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD136">
        <xs:annotation>
          <xs:documentation>Weeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD137">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD138">
        <xs:annotation>
          <xs:documentation>Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD139">
        <xs:annotation>
          <xs:documentation>Whixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD140">
        <xs:annotation>
          <xs:documentation>Wighill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD141">
        <xs:annotation>
          <xs:documentation>Wilstrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UD142">
        <xs:annotation>
          <xs:documentation>Winksley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE001">
        <xs:annotation>
          <xs:documentation>Akebar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE002">
        <xs:annotation>
          <xs:documentation>Aldbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE003">
        <xs:annotation>
          <xs:documentation>Appleton East and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE004">
        <xs:annotation>
          <xs:documentation>Arkengarthdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE005">
        <xs:annotation>
          <xs:documentation>Arrathorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE006">
        <xs:annotation>
          <xs:documentation>Aske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE007">
        <xs:annotation>
          <xs:documentation>Askrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE008">
        <xs:annotation>
          <xs:documentation>Aysgarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE009">
        <xs:annotation>
          <xs:documentation>Bainbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE010">
        <xs:annotation>
          <xs:documentation>Barden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE011">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE012">
        <xs:annotation>
          <xs:documentation>Bellerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE013">
        <xs:annotation>
          <xs:documentation>Bishopdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE014">
        <xs:annotation>
          <xs:documentation>Bolton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE015">
        <xs:annotation>
          <xs:documentation>Brompton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE016">
        <xs:annotation>
          <xs:documentation>Brough with St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE017">
        <xs:annotation>
          <xs:documentation>Burton-cum-Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE018">
        <xs:annotation>
          <xs:documentation>Caldbergh with East Scrafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE019">
        <xs:annotation>
          <xs:documentation>Caldwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE020">
        <xs:annotation>
          <xs:documentation>Carlton Highdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE021">
        <xs:annotation>
          <xs:documentation>Carlton Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE022">
        <xs:annotation>
          <xs:documentation>Carperby-cum-Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE023">
        <xs:annotation>
          <xs:documentation>Castle Bolton with East and West Bolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE024">
        <xs:annotation>
          <xs:documentation>Catterick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE025">
        <xs:annotation>
          <xs:documentation>Cleasby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE026">
        <xs:annotation>
          <xs:documentation>Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE027">
        <xs:annotation>
          <xs:documentation>Colburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE028">
        <xs:annotation>
          <xs:documentation>Constable Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE029">
        <xs:annotation>
          <xs:documentation>Coverham with Agglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE030">
        <xs:annotation>
          <xs:documentation>Croft-on-Tees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE031">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE032">
        <xs:annotation>
          <xs:documentation>Dalton-on-Tees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE033">
        <xs:annotation>
          <xs:documentation>Downholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE034">
        <xs:annotation>
          <xs:documentation>Easby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE035">
        <xs:annotation>
          <xs:documentation>East Hauxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE036">
        <xs:annotation>
          <xs:documentation>East Layton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE039">
        <xs:annotation>
          <xs:documentation>Ellerton Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE040">
        <xs:annotation>
          <xs:documentation>Ellerton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE041">
        <xs:annotation>
          <xs:documentation>Eppleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE042">
        <xs:annotation>
          <xs:documentation>Eryholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE043">
        <xs:annotation>
          <xs:documentation>Finghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE044">
        <xs:annotation>
          <xs:documentation>Forcett and Carkin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE045">
        <xs:annotation>
          <xs:documentation>Garriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE046">
        <xs:annotation>
          <xs:documentation>Gayles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE047">
        <xs:annotation>
          <xs:documentation>Gilling with Hartforth and Sedbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE048">
        <xs:annotation>
          <xs:documentation>Grinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE049">
        <xs:annotation>
          <xs:documentation>Harmby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE050">
        <xs:annotation>
          <xs:documentation>Hawes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE051">
        <xs:annotation>
          <xs:documentation>High Abbotside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE052">
        <xs:annotation>
          <xs:documentation>Hipswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE053">
        <xs:annotation>
          <xs:documentation>Hornby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE054">
        <xs:annotation>
          <xs:documentation>Hudswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE055">
        <xs:annotation>
          <xs:documentation>Hunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE056">
        <xs:annotation>
          <xs:documentation>Hutton Hang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE057">
        <xs:annotation>
          <xs:documentation>Kirby Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE058">
        <xs:annotation>
          <xs:documentation>Leyburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE059">
        <xs:annotation>
          <xs:documentation>Low Abbotside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE060">
        <xs:annotation>
          <xs:documentation>Manfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE061">
        <xs:annotation>
          <xs:documentation>Marrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE062">
        <xs:annotation>
          <xs:documentation>Marske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE063">
        <xs:annotation>
          <xs:documentation>Melbecks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE064">
        <xs:annotation>
          <xs:documentation>Melmerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE065">
        <xs:annotation>
          <xs:documentation>Melsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE066">
        <xs:annotation>
          <xs:documentation>Middleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE067">
        <xs:annotation>
          <xs:documentation>Middleton Tyas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE068">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE069">
        <xs:annotation>
          <xs:documentation>Muker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE070">
        <xs:annotation>
          <xs:documentation>Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE071">
        <xs:annotation>
          <xs:documentation>New Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE072">
        <xs:annotation>
          <xs:documentation>Newsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE073">
        <xs:annotation>
          <xs:documentation>Newton-le-Willows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE074">
        <xs:annotation>
          <xs:documentation>Newton Morrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE075">
        <xs:annotation>
          <xs:documentation>North Cowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE076">
        <xs:annotation>
          <xs:documentation>Patrick Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE077">
        <xs:annotation>
          <xs:documentation>Preston-under-Scar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE078">
        <xs:annotation>
          <xs:documentation>Ravensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE079">
        <xs:annotation>
          <xs:documentation>Redmire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE080">
        <xs:annotation>
          <xs:documentation>Reeth, Fremington and Healaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE081">
        <xs:annotation>
          <xs:documentation>Richmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE082">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE083">
        <xs:annotation>
          <xs:documentation>Scorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE084">
        <xs:annotation>
          <xs:documentation>Scotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE085">
        <xs:annotation>
          <xs:documentation>Skeeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE086">
        <xs:annotation>
          <xs:documentation>Spennithorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE087">
        <xs:annotation>
          <xs:documentation>Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE088">
        <xs:annotation>
          <xs:documentation>Stanwick St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE089">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE090">
        <xs:annotation>
          <xs:documentation>Thoralby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE091">
        <xs:annotation>
          <xs:documentation>Thornton Rust</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE092">
        <xs:annotation>
          <xs:documentation>Thornton Steward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE093">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE094">
        <xs:annotation>
          <xs:documentation>Uckerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE095">
        <xs:annotation>
          <xs:documentation>Walburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE096">
        <xs:annotation>
          <xs:documentation>Wensley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE097">
        <xs:annotation>
          <xs:documentation>West Hauxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE098">
        <xs:annotation>
          <xs:documentation>West Layton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE099">
        <xs:annotation>
          <xs:documentation>West Scrafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE100">
        <xs:annotation>
          <xs:documentation>West Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE101">
        <xs:annotation>
          <xs:documentation>Whashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UE102">
        <xs:annotation>
          <xs:documentation>East Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF001">
        <xs:annotation>
          <xs:documentation>Acklam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF002">
        <xs:annotation>
          <xs:documentation>Aislaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF003">
        <xs:annotation>
          <xs:documentation>Allerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF004">
        <xs:annotation>
          <xs:documentation>Amotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF005">
        <xs:annotation>
          <xs:documentation>Ampleforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF006">
        <xs:annotation>
          <xs:documentation>Appleton-le-Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF007">
        <xs:annotation>
          <xs:documentation>Appleton-le-Street with Easthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF008">
        <xs:annotation>
          <xs:documentation>Barton-le-Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF009">
        <xs:annotation>
          <xs:documentation>Barton-le-Willows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF010">
        <xs:annotation>
          <xs:documentation>Barugh (Great and Little)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF011">
        <xs:annotation>
          <xs:documentation>Beadlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF012">
        <xs:annotation>
          <xs:documentation>Birdsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF013">
        <xs:annotation>
          <xs:documentation>Bransdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF014">
        <xs:annotation>
          <xs:documentation>Brawby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF015">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF016">
        <xs:annotation>
          <xs:documentation>Bulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF017">
        <xs:annotation>
          <xs:documentation>Burythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF018">
        <xs:annotation>
          <xs:documentation>Buttercrambe with Bossall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF019">
        <xs:annotation>
          <xs:documentation>Byland with Wass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF020">
        <xs:annotation>
          <xs:documentation>Cawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF021">
        <xs:annotation>
          <xs:documentation>Claxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF023">
        <xs:annotation>
          <xs:documentation>Cold Kirby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF024">
        <xs:annotation>
          <xs:documentation>Coneysthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF025">
        <xs:annotation>
          <xs:documentation>Coulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF026">
        <xs:annotation>
          <xs:documentation>Crambe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF027">
        <xs:annotation>
          <xs:documentation>Cropton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF029">
        <xs:annotation>
          <xs:documentation>Ebberston and Yedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF030">
        <xs:annotation>
          <xs:documentation>Edstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF031">
        <xs:annotation>
          <xs:documentation>Fadmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF032">
        <xs:annotation>
          <xs:documentation>Farndale East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF033">
        <xs:annotation>
          <xs:documentation>Farndale West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF034">
        <xs:annotation>
          <xs:documentation>Flaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF035">
        <xs:annotation>
          <xs:documentation>Foston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF036">
        <xs:annotation>
          <xs:documentation>Foxholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF037">
        <xs:annotation>
          <xs:documentation>Fryton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF038">
        <xs:annotation>
          <xs:documentation>Ganton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF039">
        <xs:annotation>
          <xs:documentation>Gate Helmsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF040">
        <xs:annotation>
          <xs:documentation>Gillamoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF041">
        <xs:annotation>
          <xs:documentation>Gilling East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF042">
        <xs:annotation>
          <xs:documentation>Grimstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF043">
        <xs:annotation>
          <xs:documentation>Habton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF044">
        <xs:annotation>
          <xs:documentation>Harome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF045">
        <xs:annotation>
          <xs:documentation>Hartoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF046">
        <xs:annotation>
          <xs:documentation>Harton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF047">
        <xs:annotation>
          <xs:documentation>Hawnby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF049">
        <xs:annotation>
          <xs:documentation>Helmsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF050">
        <xs:annotation>
          <xs:documentation>Henderskelfe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF051">
        <xs:annotation>
          <xs:documentation>Heslerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF054">
        <xs:annotation>
          <xs:documentation>Hovingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF055">
        <xs:annotation>
          <xs:documentation>Howsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF057">
        <xs:annotation>
          <xs:documentation>Hutton-le-Hole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF058">
        <xs:annotation>
          <xs:documentation>Huttons Ambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF059">
        <xs:annotation>
          <xs:documentation>Kirby Grindalythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF060">
        <xs:annotation>
          <xs:documentation>Kirby Misperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF061">
        <xs:annotation>
          <xs:documentation>Kirkbymoorside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF062">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF063">
        <xs:annotation>
          <xs:documentation>Lastingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF064">
        <xs:annotation>
          <xs:documentation>Leavening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF065">
        <xs:annotation>
          <xs:documentation>Levisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF066">
        <xs:annotation>
          <xs:documentation>Lillings Ambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF067">
        <xs:annotation>
          <xs:documentation>Lockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF068">
        <xs:annotation>
          <xs:documentation>Luttons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF069">
        <xs:annotation>
          <xs:documentation>Malton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF070">
        <xs:annotation>
          <xs:documentation>Marishes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF071">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF072">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF074">
        <xs:annotation>
          <xs:documentation>Nawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF076">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF077">
        <xs:annotation>
          <xs:documentation>Normanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF078">
        <xs:annotation>
          <xs:documentation>Norton-on-Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF079">
        <xs:annotation>
          <xs:documentation>Nunnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF080">
        <xs:annotation>
          <xs:documentation>Old Byland and Scawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF081">
        <xs:annotation>
          <xs:documentation>Oldstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF083">
        <xs:annotation>
          <xs:documentation>Oswaldkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF084">
        <xs:annotation>
          <xs:documentation>Pickering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF085">
        <xs:annotation>
          <xs:documentation>Pockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF087">
        <xs:annotation>
          <xs:documentation>Rievaulx</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF088">
        <xs:annotation>
          <xs:documentation>Rillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF089">
        <xs:annotation>
          <xs:documentation>Rosedale East Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF090">
        <xs:annotation>
          <xs:documentation>Rosedale West Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF091">
        <xs:annotation>
          <xs:documentation>Salton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF092">
        <xs:annotation>
          <xs:documentation>Sand Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF093">
        <xs:annotation>
          <xs:documentation>Scackleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF094">
        <xs:annotation>
          <xs:documentation>Scagglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF095">
        <xs:annotation>
          <xs:documentation>Scampston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF096">
        <xs:annotation>
          <xs:documentation>Scrayingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF097">
        <xs:annotation>
          <xs:documentation>Settrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF098">
        <xs:annotation>
          <xs:documentation>Sherburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF099">
        <xs:annotation>
          <xs:documentation>Sheriff Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF100">
        <xs:annotation>
          <xs:documentation>Sinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF102">
        <xs:annotation>
          <xs:documentation>Slingsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF103">
        <xs:annotation>
          <xs:documentation>South Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF104">
        <xs:annotation>
          <xs:documentation>Spaunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF105">
        <xs:annotation>
          <xs:documentation>Sproxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF107">
        <xs:annotation>
          <xs:documentation>Stonegrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF109">
        <xs:annotation>
          <xs:documentation>Swinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF110">
        <xs:annotation>
          <xs:documentation>Terrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF111">
        <xs:annotation>
          <xs:documentation>Thixendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF112">
        <xs:annotation>
          <xs:documentation>Thornton-le-Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF113">
        <xs:annotation>
          <xs:documentation>Thornton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF114">
        <xs:annotation>
          <xs:documentation>Thorpe Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF116">
        <xs:annotation>
          <xs:documentation>Upper Helmsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF117">
        <xs:annotation>
          <xs:documentation>Warthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF118">
        <xs:annotation>
          <xs:documentation>Weaverthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF119">
        <xs:annotation>
          <xs:documentation>Welburn (Amotherby Ward)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF120">
        <xs:annotation>
          <xs:documentation>Welburn (Kirkbymoorside Ward)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF121">
        <xs:annotation>
          <xs:documentation>Westow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF122">
        <xs:annotation>
          <xs:documentation>Wharram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF123">
        <xs:annotation>
          <xs:documentation>Whitwell-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF125">
        <xs:annotation>
          <xs:documentation>Willerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF126">
        <xs:annotation>
          <xs:documentation>Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF127">
        <xs:annotation>
          <xs:documentation>Wintringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF128">
        <xs:annotation>
          <xs:documentation>Wombleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF129">
        <xs:annotation>
          <xs:documentation>Wrelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UF130">
        <xs:annotation>
          <xs:documentation>Stape</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG001">
        <xs:annotation>
          <xs:documentation>Aislaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG002">
        <xs:annotation>
          <xs:documentation>Barnby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG003">
        <xs:annotation>
          <xs:documentation>Borrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG004">
        <xs:annotation>
          <xs:documentation>Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG005">
        <xs:annotation>
          <xs:documentation>Broxa-cum-Troutsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG006">
        <xs:annotation>
          <xs:documentation>Burniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG007">
        <xs:annotation>
          <xs:documentation>Cayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG008">
        <xs:annotation>
          <xs:documentation>Cloughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG009">
        <xs:annotation>
          <xs:documentation>Commondale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG010">
        <xs:annotation>
          <xs:documentation>Danby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG011">
        <xs:annotation>
          <xs:documentation>Darncombe-cum-Langdale End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG012">
        <xs:annotation>
          <xs:documentation>East Ayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG013">
        <xs:annotation>
          <xs:documentation>Egton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG014">
        <xs:annotation>
          <xs:documentation>Ellerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG015">
        <xs:annotation>
          <xs:documentation>Eskdaleside cum Ugglebarnby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG016">
        <xs:annotation>
          <xs:documentation>Filey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG017">
        <xs:annotation>
          <xs:documentation>Folkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG018">
        <xs:annotation>
          <xs:documentation>Fylingdales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG019">
        <xs:annotation>
          <xs:documentation>Glaisdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG020">
        <xs:annotation>
          <xs:documentation>Goathland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG021">
        <xs:annotation>
          <xs:documentation>Gristhorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG022">
        <xs:annotation>
          <xs:documentation>Grosmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG023">
        <xs:annotation>
          <xs:documentation>Hackness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG024">
        <xs:annotation>
          <xs:documentation>Harwood Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG025">
        <xs:annotation>
          <xs:documentation>Hawsker-cum-Stainsacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG026">
        <xs:annotation>
          <xs:documentation>Hinderwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG027">
        <xs:annotation>
          <xs:documentation>Hunmanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG028">
        <xs:annotation>
          <xs:documentation>Hutton Buscel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG029">
        <xs:annotation>
          <xs:documentation>Hutton Mulgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG030">
        <xs:annotation>
          <xs:documentation>Irton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG031">
        <xs:annotation>
          <xs:documentation>Lebberston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG032">
        <xs:annotation>
          <xs:documentation>Lythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG033">
        <xs:annotation>
          <xs:documentation>Mickleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG034">
        <xs:annotation>
          <xs:documentation>Muston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG035">
        <xs:annotation>
          <xs:documentation>Newby and Scalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG036">
        <xs:annotation>
          <xs:documentation>Newholm-cum-Dunsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG037">
        <xs:annotation>
          <xs:documentation>Newton Mulgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG038">
        <xs:annotation>
          <xs:documentation>Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG039">
        <xs:annotation>
          <xs:documentation>Reighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG040">
        <xs:annotation>
          <xs:documentation>Roxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG041">
        <xs:annotation>
          <xs:documentation>Seamer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG042">
        <xs:annotation>
          <xs:documentation>Silpho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG043">
        <xs:annotation>
          <xs:documentation>Snainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG044">
        <xs:annotation>
          <xs:documentation>Sneaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG045">
        <xs:annotation>
          <xs:documentation>Stainton Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG046">
        <xs:annotation>
          <xs:documentation>Suffield-cum-Everley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG047">
        <xs:annotation>
          <xs:documentation>Ugthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG048">
        <xs:annotation>
          <xs:documentation>West Ayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG049">
        <xs:annotation>
          <xs:documentation>Westerdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG050">
        <xs:annotation>
          <xs:documentation>Whitby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG051">
        <xs:annotation>
          <xs:documentation>Wykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG052">
        <xs:annotation>
          <xs:documentation>Lands common to Fylingdales and Hawsker-cum-Stainsacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UG053">
        <xs:annotation>
          <xs:documentation>Eastfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH002">
        <xs:annotation>
          <xs:documentation>Acaster Selby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH003">
        <xs:annotation>
          <xs:documentation>Appleton Roebuck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH006">
        <xs:annotation>
          <xs:documentation>Balne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH007">
        <xs:annotation>
          <xs:documentation>Barkston Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH008">
        <xs:annotation>
          <xs:documentation>Barlby with Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH009">
        <xs:annotation>
          <xs:documentation>Barlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH010">
        <xs:annotation>
          <xs:documentation>Beal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH011">
        <xs:annotation>
          <xs:documentation>Biggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH012">
        <xs:annotation>
          <xs:documentation>Bilbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH013">
        <xs:annotation>
          <xs:documentation>Birkin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH015">
        <xs:annotation>
          <xs:documentation>Bolton Percy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH016">
        <xs:annotation>
          <xs:documentation>Brayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH017">
        <xs:annotation>
          <xs:documentation>Brotherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH018">
        <xs:annotation>
          <xs:documentation>Burn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH019">
        <xs:annotation>
          <xs:documentation>Burton Salmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH020">
        <xs:annotation>
          <xs:documentation>Byram cum Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH021">
        <xs:annotation>
          <xs:documentation>Camblesforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH022">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH023">
        <xs:annotation>
          <xs:documentation>Catterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH024">
        <xs:annotation>
          <xs:documentation>Cawood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH025">
        <xs:annotation>
          <xs:documentation>Chapel Haddlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH026">
        <xs:annotation>
          <xs:documentation>Church Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH027">
        <xs:annotation>
          <xs:documentation>Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH028">
        <xs:annotation>
          <xs:documentation>Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH030">
        <xs:annotation>
          <xs:documentation>Cridling Stubbs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH032">
        <xs:annotation>
          <xs:documentation>Drax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH034">
        <xs:annotation>
          <xs:documentation>Eggborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH036">
        <xs:annotation>
          <xs:documentation>Escrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH037">
        <xs:annotation>
          <xs:documentation>Fairburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH039">
        <xs:annotation>
          <xs:documentation>Gateforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH040">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH041">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH042">
        <xs:annotation>
          <xs:documentation>Healaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH043">
        <xs:annotation>
          <xs:documentation>Heck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH044">
        <xs:annotation>
          <xs:documentation>Hemingbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH045">
        <xs:annotation>
          <xs:documentation>Hensall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH047">
        <xs:annotation>
          <xs:documentation>Hillam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH048">
        <xs:annotation>
          <xs:documentation>Hirst Courtney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH049">
        <xs:annotation>
          <xs:documentation>Huddleston with Newthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH050">
        <xs:annotation>
          <xs:documentation>Kelfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH051">
        <xs:annotation>
          <xs:documentation>Kellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH053">
        <xs:annotation>
          <xs:documentation>Kirkby Wharfe with North Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH054">
        <xs:annotation>
          <xs:documentation>Kirk Smeaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH055">
        <xs:annotation>
          <xs:documentation>Lead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH056">
        <xs:annotation>
          <xs:documentation>Little Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH057">
        <xs:annotation>
          <xs:documentation>Little Smeaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH058">
        <xs:annotation>
          <xs:documentation>Long Drax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH059">
        <xs:annotation>
          <xs:documentation>Monk Fryston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH061">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH062">
        <xs:annotation>
          <xs:documentation>Newton Kyme cum Toulston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH063">
        <xs:annotation>
          <xs:documentation>North Duffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH064">
        <xs:annotation>
          <xs:documentation>Oxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH065">
        <xs:annotation>
          <xs:documentation>Riccall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH066">
        <xs:annotation>
          <xs:documentation>Ryther cum Ossendyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH067">
        <xs:annotation>
          <xs:documentation>Saxton with Scarthingwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH068">
        <xs:annotation>
          <xs:documentation>Selby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH069">
        <xs:annotation>
          <xs:documentation>Sherburn in Elmet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH070">
        <xs:annotation>
          <xs:documentation>Skipwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH071">
        <xs:annotation>
          <xs:documentation>South Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH072">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH073">
        <xs:annotation>
          <xs:documentation>Steeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH074">
        <xs:annotation>
          <xs:documentation>Stillingfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH075">
        <xs:annotation>
          <xs:documentation>Stutton with Hazlewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH076">
        <xs:annotation>
          <xs:documentation>Tadcaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH077">
        <xs:annotation>
          <xs:documentation>Temple Hirst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH078">
        <xs:annotation>
          <xs:documentation>Thorganby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH079">
        <xs:annotation>
          <xs:documentation>Thorpe Willoughby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH080">
        <xs:annotation>
          <xs:documentation>Towton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH081">
        <xs:annotation>
          <xs:documentation>Ulleskelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH082">
        <xs:annotation>
          <xs:documentation>Walden Stubbs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH083">
        <xs:annotation>
          <xs:documentation>West Haddlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH085">
        <xs:annotation>
          <xs:documentation>Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH086">
        <xs:annotation>
          <xs:documentation>Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UH087">
        <xs:annotation>
          <xs:documentation>Womersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UB001">
        <xs:annotation>
          <xs:documentation>Annesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UB002">
        <xs:annotation>
          <xs:documentation>Felley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UB003">
        <xs:annotation>
          <xs:documentation>Selston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC001">
        <xs:annotation>
          <xs:documentation>Askham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC002">
        <xs:annotation>
          <xs:documentation>Babworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC003">
        <xs:annotation>
          <xs:documentation>Barnby Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC004">
        <xs:annotation>
          <xs:documentation>Beckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC005">
        <xs:annotation>
          <xs:documentation>Bevercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC006">
        <xs:annotation>
          <xs:documentation>Blyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC007">
        <xs:annotation>
          <xs:documentation>Bole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC008">
        <xs:annotation>
          <xs:documentation>Bothamsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC009">
        <xs:annotation>
          <xs:documentation>Carburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC010">
        <xs:annotation>
          <xs:documentation>Carlton in Lindrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC011">
        <xs:annotation>
          <xs:documentation>Clarborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC012">
        <xs:annotation>
          <xs:documentation>Clayworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC013">
        <xs:annotation>
          <xs:documentation>Cottam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC014">
        <xs:annotation>
          <xs:documentation>Cuckney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC015">
        <xs:annotation>
          <xs:documentation>Darlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC016">
        <xs:annotation>
          <xs:documentation>Dunham-on-Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC017">
        <xs:annotation>
          <xs:documentation>East Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC018">
        <xs:annotation>
          <xs:documentation>East Markham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC019">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC020">
        <xs:annotation>
          <xs:documentation>Elkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC021">
        <xs:annotation>
          <xs:documentation>Everton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC022">
        <xs:annotation>
          <xs:documentation>Fledborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC023">
        <xs:annotation>
          <xs:documentation>Gamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC024">
        <xs:annotation>
          <xs:documentation>Gringley on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC025">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC026">
        <xs:annotation>
          <xs:documentation>Harworth Bircotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC027">
        <xs:annotation>
          <xs:documentation>Haughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC028">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC029">
        <xs:annotation>
          <xs:documentation>Headon cum Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC030">
        <xs:annotation>
          <xs:documentation>Hodsock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC031">
        <xs:annotation>
          <xs:documentation>Holbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC032">
        <xs:annotation>
          <xs:documentation>Laneham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC033">
        <xs:annotation>
          <xs:documentation>Lound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC034">
        <xs:annotation>
          <xs:documentation>Marnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC035">
        <xs:annotation>
          <xs:documentation>Mattersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC036">
        <xs:annotation>
          <xs:documentation>Misson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC037">
        <xs:annotation>
          <xs:documentation>Misterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC038">
        <xs:annotation>
          <xs:documentation>Nether Langwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC039">
        <xs:annotation>
          <xs:documentation>Normanton on Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC040">
        <xs:annotation>
          <xs:documentation>North Leverton with Habblesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC041">
        <xs:annotation>
          <xs:documentation>North Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC042">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC043">
        <xs:annotation>
          <xs:documentation>Ragnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC044">
        <xs:annotation>
          <xs:documentation>Rampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC045">
        <xs:annotation>
          <xs:documentation>Ranskill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC046">
        <xs:annotation>
          <xs:documentation>Rhodesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC047">
        <xs:annotation>
          <xs:documentation>Saundby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC048">
        <xs:annotation>
          <xs:documentation>Scaftworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC049">
        <xs:annotation>
          <xs:documentation>Scrooby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC050">
        <xs:annotation>
          <xs:documentation>Shireoaks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC051">
        <xs:annotation>
          <xs:documentation>South Leverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC052">
        <xs:annotation>
          <xs:documentation>South Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC053">
        <xs:annotation>
          <xs:documentation>Stokeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC054">
        <xs:annotation>
          <xs:documentation>Sturton le Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC055">
        <xs:annotation>
          <xs:documentation>Styrrup with Oldcotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC056">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC057">
        <xs:annotation>
          <xs:documentation>Torworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC058">
        <xs:annotation>
          <xs:documentation>Treswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC059">
        <xs:annotation>
          <xs:documentation>Tuxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC060">
        <xs:annotation>
          <xs:documentation>Walkeringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC061">
        <xs:annotation>
          <xs:documentation>Wallingwells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC062">
        <xs:annotation>
          <xs:documentation>Welbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC063">
        <xs:annotation>
          <xs:documentation>West Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC064">
        <xs:annotation>
          <xs:documentation>West Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC065">
        <xs:annotation>
          <xs:documentation>West Markham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC066">
        <xs:annotation>
          <xs:documentation>West Stockwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC067">
        <xs:annotation>
          <xs:documentation>Wiseton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UC068">
        <xs:annotation>
          <xs:documentation>Clumber and Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD001">
        <xs:annotation>
          <xs:documentation>Awsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD002">
        <xs:annotation>
          <xs:documentation>Brinsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD003">
        <xs:annotation>
          <xs:documentation>Cossall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD004">
        <xs:annotation>
          <xs:documentation>Eastwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD005">
        <xs:annotation>
          <xs:documentation>Greasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD006">
        <xs:annotation>
          <xs:documentation>Kimberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD007">
        <xs:annotation>
          <xs:documentation>Nuthall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD008">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD009">
        <xs:annotation>
          <xs:documentation>Strelley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UD010">
        <xs:annotation>
          <xs:documentation>Trowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE001">
        <xs:annotation>
          <xs:documentation>Bestwood St. Albans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE002">
        <xs:annotation>
          <xs:documentation>Burton Joyce</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE003">
        <xs:annotation>
          <xs:documentation>Calverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE004">
        <xs:annotation>
          <xs:documentation>Colwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE005">
        <xs:annotation>
          <xs:documentation>Lambley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE006">
        <xs:annotation>
          <xs:documentation>Linby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE007">
        <xs:annotation>
          <xs:documentation>Newstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE008">
        <xs:annotation>
          <xs:documentation>Papplewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE009">
        <xs:annotation>
          <xs:documentation>Ravenshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE010">
        <xs:annotation>
          <xs:documentation>Stoke Bardolph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UE011">
        <xs:annotation>
          <xs:documentation>Woodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UF001">
        <xs:annotation>
          <xs:documentation>Warsop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG001">
        <xs:annotation>
          <xs:documentation>Alverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG002">
        <xs:annotation>
          <xs:documentation>Averham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG003">
        <xs:annotation>
          <xs:documentation>Balderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG004">
        <xs:annotation>
          <xs:documentation>Barnby in the Willows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG005">
        <xs:annotation>
          <xs:documentation>Bathley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG006">
        <xs:annotation>
          <xs:documentation>Besthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG007">
        <xs:annotation>
          <xs:documentation>Bilsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG008">
        <xs:annotation>
          <xs:documentation>Bleasby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG009">
        <xs:annotation>
          <xs:documentation>Blidworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG011">
        <xs:annotation>
          <xs:documentation>Bulcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG012">
        <xs:annotation>
          <xs:documentation>Carlton-on-Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG013">
        <xs:annotation>
          <xs:documentation>Caunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG014">
        <xs:annotation>
          <xs:documentation>Caythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG015">
        <xs:annotation>
          <xs:documentation>Clipstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG016">
        <xs:annotation>
          <xs:documentation>Coddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG017">
        <xs:annotation>
          <xs:documentation>Collingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG018">
        <xs:annotation>
          <xs:documentation>Cotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG019">
        <xs:annotation>
          <xs:documentation>Cromwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG020">
        <xs:annotation>
          <xs:documentation>Eakring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG021">
        <xs:annotation>
          <xs:documentation>East Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG022">
        <xs:annotation>
          <xs:documentation>Edingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG023">
        <xs:annotation>
          <xs:documentation>Edwinstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG024">
        <xs:annotation>
          <xs:documentation>Egmanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG025">
        <xs:annotation>
          <xs:documentation>Elston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG026">
        <xs:annotation>
          <xs:documentation>Epperstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG027">
        <xs:annotation>
          <xs:documentation>Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG028">
        <xs:annotation>
          <xs:documentation>Farnsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG029">
        <xs:annotation>
          <xs:documentation>Fiskerton cum Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG030">
        <xs:annotation>
          <xs:documentation>Girton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG031">
        <xs:annotation>
          <xs:documentation>Gonalston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG032">
        <xs:annotation>
          <xs:documentation>Grassthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG033">
        <xs:annotation>
          <xs:documentation>Gunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG034">
        <xs:annotation>
          <xs:documentation>Halam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG035">
        <xs:annotation>
          <xs:documentation>Halloughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG036">
        <xs:annotation>
          <xs:documentation>Harby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG037">
        <xs:annotation>
          <xs:documentation>Hawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG038">
        <xs:annotation>
          <xs:documentation>Hockerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG039">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG040">
        <xs:annotation>
          <xs:documentation>Hoveringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG041">
        <xs:annotation>
          <xs:documentation>Kelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG042">
        <xs:annotation>
          <xs:documentation>Kersall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG043">
        <xs:annotation>
          <xs:documentation>Kilvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG044">
        <xs:annotation>
          <xs:documentation>Kirklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG045">
        <xs:annotation>
          <xs:documentation>Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG046">
        <xs:annotation>
          <xs:documentation>Kneesall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG047">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG048">
        <xs:annotation>
          <xs:documentation>Laxton and Moorhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG050">
        <xs:annotation>
          <xs:documentation>Lindhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG051">
        <xs:annotation>
          <xs:documentation>Lowdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG052">
        <xs:annotation>
          <xs:documentation>Maplebeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG053">
        <xs:annotation>
          <xs:documentation>Meering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG054">
        <xs:annotation>
          <xs:documentation>Newark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG055">
        <xs:annotation>
          <xs:documentation>North Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG056">
        <xs:annotation>
          <xs:documentation>North Muskham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG057">
        <xs:annotation>
          <xs:documentation>Norwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG058">
        <xs:annotation>
          <xs:documentation>Ollerton and Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG059">
        <xs:annotation>
          <xs:documentation>Ompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG060">
        <xs:annotation>
          <xs:documentation>Ossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG061">
        <xs:annotation>
          <xs:documentation>Oxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG062">
        <xs:annotation>
          <xs:documentation>Perlethorpe cum Budby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG063">
        <xs:annotation>
          <xs:documentation>Rainworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG064">
        <xs:annotation>
          <xs:documentation>Rolleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG065">
        <xs:annotation>
          <xs:documentation>Rufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG066">
        <xs:annotation>
          <xs:documentation>South Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG067">
        <xs:annotation>
          <xs:documentation>South Muskham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG068">
        <xs:annotation>
          <xs:documentation>South Scarle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG069">
        <xs:annotation>
          <xs:documentation>Southwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG070">
        <xs:annotation>
          <xs:documentation>Spalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG071">
        <xs:annotation>
          <xs:documentation>Staunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG072">
        <xs:annotation>
          <xs:documentation>Staythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG073">
        <xs:annotation>
          <xs:documentation>Sutton-on-Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG074">
        <xs:annotation>
          <xs:documentation>Syerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG075">
        <xs:annotation>
          <xs:documentation>Thorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG076">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG077">
        <xs:annotation>
          <xs:documentation>Thurgarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG078">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG079">
        <xs:annotation>
          <xs:documentation>Walesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG080">
        <xs:annotation>
          <xs:documentation>Wellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG081">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG082">
        <xs:annotation>
          <xs:documentation>Wigsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG083">
        <xs:annotation>
          <xs:documentation>Winkburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UG084">
        <xs:annotation>
          <xs:documentation>Winthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ001">
        <xs:annotation>
          <xs:documentation>Aslockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ002">
        <xs:annotation>
          <xs:documentation>Barton in Fabis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ003">
        <xs:annotation>
          <xs:documentation>Bingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ004">
        <xs:annotation>
          <xs:documentation>Bradmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ005">
        <xs:annotation>
          <xs:documentation>Bunny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ006">
        <xs:annotation>
          <xs:documentation>Car Colston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ007">
        <xs:annotation>
          <xs:documentation>Clipston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ008">
        <xs:annotation>
          <xs:documentation>Colston Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ009">
        <xs:annotation>
          <xs:documentation>Costock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ010">
        <xs:annotation>
          <xs:documentation>Cotgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ011">
        <xs:annotation>
          <xs:documentation>Cropwell Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ012">
        <xs:annotation>
          <xs:documentation>Cropwell Butler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ013">
        <xs:annotation>
          <xs:documentation>East Bridgford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ014">
        <xs:annotation>
          <xs:documentation>East Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ015">
        <xs:annotation>
          <xs:documentation>Elton-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ016">
        <xs:annotation>
          <xs:documentation>Flawborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ017">
        <xs:annotation>
          <xs:documentation>Flintham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ018">
        <xs:annotation>
          <xs:documentation>Gamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ019">
        <xs:annotation>
          <xs:documentation>Gotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ020">
        <xs:annotation>
          <xs:documentation>Granby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ021">
        <xs:annotation>
          <xs:documentation>Hawksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ022">
        <xs:annotation>
          <xs:documentation>Hickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ023">
        <xs:annotation>
          <xs:documentation>Holme Pierrepont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ024">
        <xs:annotation>
          <xs:documentation>Keyworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ025">
        <xs:annotation>
          <xs:documentation>Kingston on Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ026">
        <xs:annotation>
          <xs:documentation>Kinoulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ027">
        <xs:annotation>
          <xs:documentation>Kneeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ028">
        <xs:annotation>
          <xs:documentation>Langar cum Barnstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ029">
        <xs:annotation>
          <xs:documentation>Normanton on Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ030">
        <xs:annotation>
          <xs:documentation>Normanton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ031">
        <xs:annotation>
          <xs:documentation>Orston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ032">
        <xs:annotation>
          <xs:documentation>Owthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ033">
        <xs:annotation>
          <xs:documentation>Plumtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ034">
        <xs:annotation>
          <xs:documentation>Radcliffe on Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ035">
        <xs:annotation>
          <xs:documentation>Ratcliffe on Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ036">
        <xs:annotation>
          <xs:documentation>Rempstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ037">
        <xs:annotation>
          <xs:documentation>Ruddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ038">
        <xs:annotation>
          <xs:documentation>Saxondale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ039">
        <xs:annotation>
          <xs:documentation>Scarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ040">
        <xs:annotation>
          <xs:documentation>Screveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ041">
        <xs:annotation>
          <xs:documentation>Shelford and Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ042">
        <xs:annotation>
          <xs:documentation>Shelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ043">
        <xs:annotation>
          <xs:documentation>Sibthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ044">
        <xs:annotation>
          <xs:documentation>Stanford on Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ045">
        <xs:annotation>
          <xs:documentation>Stanton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ046">
        <xs:annotation>
          <xs:documentation>Sutton Bonington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ047">
        <xs:annotation>
          <xs:documentation>Thoroton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ048">
        <xs:annotation>
          <xs:documentation>Thorpe in the Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ049">
        <xs:annotation>
          <xs:documentation>Thrumpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ050">
        <xs:annotation>
          <xs:documentation>Tithby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ051">
        <xs:annotation>
          <xs:documentation>Tollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ052">
        <xs:annotation>
          <xs:documentation>Upper Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ053">
        <xs:annotation>
          <xs:documentation>West Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ054">
        <xs:annotation>
          <xs:documentation>Whatton-in-the-Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ055">
        <xs:annotation>
          <xs:documentation>Widmerpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ056">
        <xs:annotation>
          <xs:documentation>Willoughby on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ057">
        <xs:annotation>
          <xs:documentation>Wiverton Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJ058">
        <xs:annotation>
          <xs:documentation>Wysall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB001">
        <xs:annotation>
          <xs:documentation>Adderbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB002">
        <xs:annotation>
          <xs:documentation>Ambrosden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB003">
        <xs:annotation>
          <xs:documentation>Ardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB004">
        <xs:annotation>
          <xs:documentation>Arncott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB005">
        <xs:annotation>
          <xs:documentation>Barford St. John and St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB006">
        <xs:annotation>
          <xs:documentation>Begbroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB007">
        <xs:annotation>
          <xs:documentation>Bicester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB008">
        <xs:annotation>
          <xs:documentation>Blackthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB009">
        <xs:annotation>
          <xs:documentation>Bletchingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB010">
        <xs:annotation>
          <xs:documentation>Bloxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB011">
        <xs:annotation>
          <xs:documentation>Bodicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB012">
        <xs:annotation>
          <xs:documentation>Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB013">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB014">
        <xs:annotation>
          <xs:documentation>Bucknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB015">
        <xs:annotation>
          <xs:documentation>Caversfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB016">
        <xs:annotation>
          <xs:documentation>Charlton-on-Otmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB017">
        <xs:annotation>
          <xs:documentation>Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB018">
        <xs:annotation>
          <xs:documentation>Claydon with Clattercot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB019">
        <xs:annotation>
          <xs:documentation>Cottisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB020">
        <xs:annotation>
          <xs:documentation>Cropredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB021">
        <xs:annotation>
          <xs:documentation>Deddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB022">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB023">
        <xs:annotation>
          <xs:documentation>Duns Tew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB024">
        <xs:annotation>
          <xs:documentation>Epwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB025">
        <xs:annotation>
          <xs:documentation>Fencott and Murcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB026">
        <xs:annotation>
          <xs:documentation>Finmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB027">
        <xs:annotation>
          <xs:documentation>Fringford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB028">
        <xs:annotation>
          <xs:documentation>Fritwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB029">
        <xs:annotation>
          <xs:documentation>Godington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB030">
        <xs:annotation>
          <xs:documentation>Gosford and Water Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB031">
        <xs:annotation>
          <xs:documentation>Hampton Gay and Poyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB032">
        <xs:annotation>
          <xs:documentation>Hanwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB033">
        <xs:annotation>
          <xs:documentation>Hardwick with Tusmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB034">
        <xs:annotation>
          <xs:documentation>Hethe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB035">
        <xs:annotation>
          <xs:documentation>Hook Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB036">
        <xs:annotation>
          <xs:documentation>Horley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB037">
        <xs:annotation>
          <xs:documentation>Hornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB038">
        <xs:annotation>
          <xs:documentation>Horton-cum-Studley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB039">
        <xs:annotation>
          <xs:documentation>Islip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB040">
        <xs:annotation>
          <xs:documentation>Kidlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB041">
        <xs:annotation>
          <xs:documentation>Kirtlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB042">
        <xs:annotation>
          <xs:documentation>Launton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB043">
        <xs:annotation>
          <xs:documentation>Lower Heyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB044">
        <xs:annotation>
          <xs:documentation>Merton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB045">
        <xs:annotation>
          <xs:documentation>Middle Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB046">
        <xs:annotation>
          <xs:documentation>Middleton Stoney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB047">
        <xs:annotation>
          <xs:documentation>Milcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB048">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB049">
        <xs:annotation>
          <xs:documentation>Mixbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB050">
        <xs:annotation>
          <xs:documentation>Mollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB051">
        <xs:annotation>
          <xs:documentation>Newton Purcell with Shelswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB052">
        <xs:annotation>
          <xs:documentation>Noke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB053">
        <xs:annotation>
          <xs:documentation>North Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB054">
        <xs:annotation>
          <xs:documentation>North Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB055">
        <xs:annotation>
          <xs:documentation>Oddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB056">
        <xs:annotation>
          <xs:documentation>Piddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB057">
        <xs:annotation>
          <xs:documentation>Prescote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB058">
        <xs:annotation>
          <xs:documentation>Shenington with Alkerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB059">
        <xs:annotation>
          <xs:documentation>Shipton-on-Cherwell and Thrupp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB060">
        <xs:annotation>
          <xs:documentation>Shutford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB061">
        <xs:annotation>
          <xs:documentation>Sibford Ferris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB062">
        <xs:annotation>
          <xs:documentation>Sibford Gower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB063">
        <xs:annotation>
          <xs:documentation>Somerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB064">
        <xs:annotation>
          <xs:documentation>Souldern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB065">
        <xs:annotation>
          <xs:documentation>South Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB066">
        <xs:annotation>
          <xs:documentation>Steeple Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB067">
        <xs:annotation>
          <xs:documentation>Stoke Lyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB068">
        <xs:annotation>
          <xs:documentation>Stratton Audley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB069">
        <xs:annotation>
          <xs:documentation>Swalcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB070">
        <xs:annotation>
          <xs:documentation>Tadmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB071">
        <xs:annotation>
          <xs:documentation>Upper Heyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB072">
        <xs:annotation>
          <xs:documentation>Wardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB073">
        <xs:annotation>
          <xs:documentation>Wendlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB074">
        <xs:annotation>
          <xs:documentation>Weston-on-the-Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB075">
        <xs:annotation>
          <xs:documentation>Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB076">
        <xs:annotation>
          <xs:documentation>Wroxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB077">
        <xs:annotation>
          <xs:documentation>Yarnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UB078">
        <xs:annotation>
          <xs:documentation>Banbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UC001">
        <xs:annotation>
          <xs:documentation>Blackbird Leys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UC002">
        <xs:annotation>
          <xs:documentation>Littlemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UC003">
        <xs:annotation>
          <xs:documentation>Old Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UC004">
        <xs:annotation>
          <xs:documentation>Risinghurst and Sandhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD001">
        <xs:annotation>
          <xs:documentation>Adwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD002">
        <xs:annotation>
          <xs:documentation>Aston Rowant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD003">
        <xs:annotation>
          <xs:documentation>Aston Tirrold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD004">
        <xs:annotation>
          <xs:documentation>Aston Upthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD005">
        <xs:annotation>
          <xs:documentation>Beckley and Stowood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD006">
        <xs:annotation>
          <xs:documentation>Benson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD007">
        <xs:annotation>
          <xs:documentation>Berinsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD008">
        <xs:annotation>
          <xs:documentation>Berrick Salome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD009">
        <xs:annotation>
          <xs:documentation>Bix and Assendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD010">
        <xs:annotation>
          <xs:documentation>Brightwell Baldwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD011">
        <xs:annotation>
          <xs:documentation>Brightwell-cum-Sotwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD012">
        <xs:annotation>
          <xs:documentation>Britwell Salome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD013">
        <xs:annotation>
          <xs:documentation>Chalgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD014">
        <xs:annotation>
          <xs:documentation>Checkendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD015">
        <xs:annotation>
          <xs:documentation>Chinnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD016">
        <xs:annotation>
          <xs:documentation>Cholsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD017">
        <xs:annotation>
          <xs:documentation>Clifton Hampden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD018">
        <xs:annotation>
          <xs:documentation>Crowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD019">
        <xs:annotation>
          <xs:documentation>Crowmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD020">
        <xs:annotation>
          <xs:documentation>Cuddesdon and Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD021">
        <xs:annotation>
          <xs:documentation>Culham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD022">
        <xs:annotation>
          <xs:documentation>Cuxham with Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD023">
        <xs:annotation>
          <xs:documentation>Didcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD024">
        <xs:annotation>
          <xs:documentation>Dorchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD025">
        <xs:annotation>
          <xs:documentation>Drayton St. Leonard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD026">
        <xs:annotation>
          <xs:documentation>East Hagbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD027">
        <xs:annotation>
          <xs:documentation>Elsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD028">
        <xs:annotation>
          <xs:documentation>Ewelme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD029">
        <xs:annotation>
          <xs:documentation>Eye and Dunsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD030">
        <xs:annotation>
          <xs:documentation>Forest Hill with Shotover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD031">
        <xs:annotation>
          <xs:documentation>Garsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD032">
        <xs:annotation>
          <xs:documentation>Goring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD033">
        <xs:annotation>
          <xs:documentation>Goring Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD034">
        <xs:annotation>
          <xs:documentation>Great Haseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD035">
        <xs:annotation>
          <xs:documentation>Great Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD036">
        <xs:annotation>
          <xs:documentation>Harpsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD037">
        <xs:annotation>
          <xs:documentation>Henley-on-Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD038">
        <xs:annotation>
          <xs:documentation>Highmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD039">
        <xs:annotation>
          <xs:documentation>Holton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD040">
        <xs:annotation>
          <xs:documentation>Horspath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD041">
        <xs:annotation>
          <xs:documentation>Ipsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD042">
        <xs:annotation>
          <xs:documentation>Kidmore End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD043">
        <xs:annotation>
          <xs:documentation>Lewknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD044">
        <xs:annotation>
          <xs:documentation>Little Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD045">
        <xs:annotation>
          <xs:documentation>Little Wittenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD046">
        <xs:annotation>
          <xs:documentation>Long Wittenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD047">
        <xs:annotation>
          <xs:documentation>Mapledurham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD048">
        <xs:annotation>
          <xs:documentation>Marsh Baldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD049">
        <xs:annotation>
          <xs:documentation>Moulsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD050">
        <xs:annotation>
          <xs:documentation>Nettlebed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD051">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD052">
        <xs:annotation>
          <xs:documentation>North Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD053">
        <xs:annotation>
          <xs:documentation>Nuffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD054">
        <xs:annotation>
          <xs:documentation>Nuneham Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD055">
        <xs:annotation>
          <xs:documentation>Pishill with Stonor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD056">
        <xs:annotation>
          <xs:documentation>Pyrton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD057">
        <xs:annotation>
          <xs:documentation>Rotherfield Greys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD058">
        <xs:annotation>
          <xs:documentation>Rotherfield Peppard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD059">
        <xs:annotation>
          <xs:documentation>Sandford-on-Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD060">
        <xs:annotation>
          <xs:documentation>Shiplake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD061">
        <xs:annotation>
          <xs:documentation>Shirburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD062">
        <xs:annotation>
          <xs:documentation>Sonning Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD063">
        <xs:annotation>
          <xs:documentation>South Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD064">
        <xs:annotation>
          <xs:documentation>South Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD065">
        <xs:annotation>
          <xs:documentation>Stadhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD066">
        <xs:annotation>
          <xs:documentation>Stanton St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD067">
        <xs:annotation>
          <xs:documentation>Stoke Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD068">
        <xs:annotation>
          <xs:documentation>Stoke Talmage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD069">
        <xs:annotation>
          <xs:documentation>Swyncombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD070">
        <xs:annotation>
          <xs:documentation>Sydenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD071">
        <xs:annotation>
          <xs:documentation>Tetsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD072">
        <xs:annotation>
          <xs:documentation>Thame</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD074">
        <xs:annotation>
          <xs:documentation>Tiddington-with-Albury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD075">
        <xs:annotation>
          <xs:documentation>Toot Baldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD076">
        <xs:annotation>
          <xs:documentation>Towersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD077">
        <xs:annotation>
          <xs:documentation>Wallingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD078">
        <xs:annotation>
          <xs:documentation>Warborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD080">
        <xs:annotation>
          <xs:documentation>Waterstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD081">
        <xs:annotation>
          <xs:documentation>Watlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD082">
        <xs:annotation>
          <xs:documentation>West Hagbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD083">
        <xs:annotation>
          <xs:documentation>Wheatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD084">
        <xs:annotation>
          <xs:documentation>Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD085">
        <xs:annotation>
          <xs:documentation>Whitchurch-on-Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD086">
        <xs:annotation>
          <xs:documentation>Woodcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD087">
        <xs:annotation>
          <xs:documentation>Woodeaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD088">
        <xs:annotation>
          <xs:documentation>Waterperry with Thomley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UD089">
        <xs:annotation>
          <xs:documentation>Binfield Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE001">
        <xs:annotation>
          <xs:documentation>Abingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE002">
        <xs:annotation>
          <xs:documentation>Appleford-on-Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE003">
        <xs:annotation>
          <xs:documentation>Appleton-with-Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE004">
        <xs:annotation>
          <xs:documentation>Ardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE005">
        <xs:annotation>
          <xs:documentation>Ashbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE006">
        <xs:annotation>
          <xs:documentation>Baulking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE007">
        <xs:annotation>
          <xs:documentation>Besselsleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE008">
        <xs:annotation>
          <xs:documentation>Blewbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE009">
        <xs:annotation>
          <xs:documentation>Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE010">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE011">
        <xs:annotation>
          <xs:documentation>Buscot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE012">
        <xs:annotation>
          <xs:documentation>Charney Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE013">
        <xs:annotation>
          <xs:documentation>Childrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE014">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE015">
        <xs:annotation>
          <xs:documentation>Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE016">
        <xs:annotation>
          <xs:documentation>Compton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE017">
        <xs:annotation>
          <xs:documentation>Cumnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE018">
        <xs:annotation>
          <xs:documentation>Denchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE019">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE020">
        <xs:annotation>
          <xs:documentation>East Challow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE021">
        <xs:annotation>
          <xs:documentation>East Hanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE022">
        <xs:annotation>
          <xs:documentation>East Hendred</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE023">
        <xs:annotation>
          <xs:documentation>Eaton Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE024">
        <xs:annotation>
          <xs:documentation>Fernham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE025">
        <xs:annotation>
          <xs:documentation>Frilford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE026">
        <xs:annotation>
          <xs:documentation>Fyfield and Tubney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE027">
        <xs:annotation>
          <xs:documentation>Garford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE028">
        <xs:annotation>
          <xs:documentation>Goosey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE029">
        <xs:annotation>
          <xs:documentation>Great Coxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE030">
        <xs:annotation>
          <xs:documentation>Great Faringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE031">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE032">
        <xs:annotation>
          <xs:documentation>Harwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE033">
        <xs:annotation>
          <xs:documentation>Hatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE034">
        <xs:annotation>
          <xs:documentation>Hinton Waldrist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE035">
        <xs:annotation>
          <xs:documentation>Kennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE036">
        <xs:annotation>
          <xs:documentation>Kingston Bagpuize with Southmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE037">
        <xs:annotation>
          <xs:documentation>Kingston Lisle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE038">
        <xs:annotation>
          <xs:documentation>Letcombe Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE039">
        <xs:annotation>
          <xs:documentation>Letcombe Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE040">
        <xs:annotation>
          <xs:documentation>Little Coxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE041">
        <xs:annotation>
          <xs:documentation>Littleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE042">
        <xs:annotation>
          <xs:documentation>Lockinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE043">
        <xs:annotation>
          <xs:documentation>Longcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE044">
        <xs:annotation>
          <xs:documentation>Longworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE045">
        <xs:annotation>
          <xs:documentation>Lyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE046">
        <xs:annotation>
          <xs:documentation>Marcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE047">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE048">
        <xs:annotation>
          <xs:documentation>North Hinksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE049">
        <xs:annotation>
          <xs:documentation>Pusey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE050">
        <xs:annotation>
          <xs:documentation>Radley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE051">
        <xs:annotation>
          <xs:documentation>St. Helen Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE052">
        <xs:annotation>
          <xs:documentation>Shellingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE053">
        <xs:annotation>
          <xs:documentation>Shrivenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE054">
        <xs:annotation>
          <xs:documentation>South Hinksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE055">
        <xs:annotation>
          <xs:documentation>Sparsholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE056">
        <xs:annotation>
          <xs:documentation>Stanford in the Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE057">
        <xs:annotation>
          <xs:documentation>Steventon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE058">
        <xs:annotation>
          <xs:documentation>Sunningwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE059">
        <xs:annotation>
          <xs:documentation>Sutton Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE060">
        <xs:annotation>
          <xs:documentation>Uffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE061">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE062">
        <xs:annotation>
          <xs:documentation>Wantage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE063">
        <xs:annotation>
          <xs:documentation>Watchfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE064">
        <xs:annotation>
          <xs:documentation>West Challow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE065">
        <xs:annotation>
          <xs:documentation>West Hanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE066">
        <xs:annotation>
          <xs:documentation>West Hendred</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE067">
        <xs:annotation>
          <xs:documentation>Woolstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE068">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UE069">
        <xs:annotation>
          <xs:documentation>Wytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF001">
        <xs:annotation>
          <xs:documentation>Alvescot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF002">
        <xs:annotation>
          <xs:documentation>Ascott-under-Wychwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF003">
        <xs:annotation>
          <xs:documentation>Asthal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF004">
        <xs:annotation>
          <xs:documentation>Aston, Cote, Shifford and Chimney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF005">
        <xs:annotation>
          <xs:documentation>Bampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF006">
        <xs:annotation>
          <xs:documentation>Black Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF007">
        <xs:annotation>
          <xs:documentation>Bladon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF008">
        <xs:annotation>
          <xs:documentation>Blenheim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF009">
        <xs:annotation>
          <xs:documentation>Brize Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF010">
        <xs:annotation>
          <xs:documentation>Broadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF011">
        <xs:annotation>
          <xs:documentation>Bruern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF012">
        <xs:annotation>
          <xs:documentation>Burford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF013">
        <xs:annotation>
          <xs:documentation>Carterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF014">
        <xs:annotation>
          <xs:documentation>Cassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF015">
        <xs:annotation>
          <xs:documentation>Chadlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF016">
        <xs:annotation>
          <xs:documentation>Charlbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF017">
        <xs:annotation>
          <xs:documentation>Chastleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF018">
        <xs:annotation>
          <xs:documentation>Chilson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF019">
        <xs:annotation>
          <xs:documentation>Chipping Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF020">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF021">
        <xs:annotation>
          <xs:documentation>Clanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF022">
        <xs:annotation>
          <xs:documentation>Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF023">
        <xs:annotation>
          <xs:documentation>Cornbury and Wychwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF024">
        <xs:annotation>
          <xs:documentation>Cornwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF025">
        <xs:annotation>
          <xs:documentation>Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF026">
        <xs:annotation>
          <xs:documentation>Curbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF027">
        <xs:annotation>
          <xs:documentation>Ducklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF028">
        <xs:annotation>
          <xs:documentation>Enstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF029">
        <xs:annotation>
          <xs:documentation>Eynsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF030">
        <xs:annotation>
          <xs:documentation>Fawler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF031">
        <xs:annotation>
          <xs:documentation>Fifield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF032">
        <xs:annotation>
          <xs:documentation>Filkins and Broughton Poggs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF033">
        <xs:annotation>
          <xs:documentation>Finstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF034">
        <xs:annotation>
          <xs:documentation>Freeland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF035">
        <xs:annotation>
          <xs:documentation>Fulbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF036">
        <xs:annotation>
          <xs:documentation>Glympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF037">
        <xs:annotation>
          <xs:documentation>Grafton and Radcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF038">
        <xs:annotation>
          <xs:documentation>Great Tew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF039">
        <xs:annotation>
          <xs:documentation>Hailey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF040">
        <xs:annotation>
          <xs:documentation>Hanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF041">
        <xs:annotation>
          <xs:documentation>Hardwick-with-Yelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF042">
        <xs:annotation>
          <xs:documentation>Heythrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF043">
        <xs:annotation>
          <xs:documentation>Holwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF044">
        <xs:annotation>
          <xs:documentation>Idbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF045">
        <xs:annotation>
          <xs:documentation>Kelmscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF046">
        <xs:annotation>
          <xs:documentation>Kencot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF047">
        <xs:annotation>
          <xs:documentation>Kiddington with Asterleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF048">
        <xs:annotation>
          <xs:documentation>Kingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF049">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF050">
        <xs:annotation>
          <xs:documentation>Leafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF051">
        <xs:annotation>
          <xs:documentation>Lew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF052">
        <xs:annotation>
          <xs:documentation>Little Faringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF053">
        <xs:annotation>
          <xs:documentation>Little Tew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF054">
        <xs:annotation>
          <xs:documentation>Lyneham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF055">
        <xs:annotation>
          <xs:documentation>Milton-under-Wychwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF056">
        <xs:annotation>
          <xs:documentation>Minster Lovell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF057">
        <xs:annotation>
          <xs:documentation>North Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF058">
        <xs:annotation>
          <xs:documentation>Northmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF059">
        <xs:annotation>
          <xs:documentation>Over Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF060">
        <xs:annotation>
          <xs:documentation>Ramsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF061">
        <xs:annotation>
          <xs:documentation>Rollright</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF062">
        <xs:annotation>
          <xs:documentation>Rousham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF063">
        <xs:annotation>
          <xs:documentation>Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF064">
        <xs:annotation>
          <xs:documentation>Sandford St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF065">
        <xs:annotation>
          <xs:documentation>Sarsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF066">
        <xs:annotation>
          <xs:documentation>Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF067">
        <xs:annotation>
          <xs:documentation>Shipton-under-Wychwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF068">
        <xs:annotation>
          <xs:documentation>South Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF069">
        <xs:annotation>
          <xs:documentation>Spelsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF070">
        <xs:annotation>
          <xs:documentation>Standlake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF071">
        <xs:annotation>
          <xs:documentation>Stanton Harcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF072">
        <xs:annotation>
          <xs:documentation>Steeple Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF073">
        <xs:annotation>
          <xs:documentation>Stonesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF074">
        <xs:annotation>
          <xs:documentation>Swerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF075">
        <xs:annotation>
          <xs:documentation>Swinbrook and Widford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF076">
        <xs:annotation>
          <xs:documentation>Tackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF077">
        <xs:annotation>
          <xs:documentation>Taynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF078">
        <xs:annotation>
          <xs:documentation>Westcot Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF079">
        <xs:annotation>
          <xs:documentation>Westwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF080">
        <xs:annotation>
          <xs:documentation>Witney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF081">
        <xs:annotation>
          <xs:documentation>Woodstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF082">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UF083">
        <xs:annotation>
          <xs:documentation>Worton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB001">
        <xs:annotation>
          <xs:documentation>Acton Round</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB002">
        <xs:annotation>
          <xs:documentation>Albrighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB003">
        <xs:annotation>
          <xs:documentation>Alveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB004">
        <xs:annotation>
          <xs:documentation>Astley Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB005">
        <xs:annotation>
          <xs:documentation>Aston Botterell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB006">
        <xs:annotation>
          <xs:documentation>Aston Eyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB007">
        <xs:annotation>
          <xs:documentation>Badger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB008">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB009">
        <xs:annotation>
          <xs:documentation>Beckbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB010">
        <xs:annotation>
          <xs:documentation>Billingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB011">
        <xs:annotation>
          <xs:documentation>Boningale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB012">
        <xs:annotation>
          <xs:documentation>Boscobel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB013">
        <xs:annotation>
          <xs:documentation>Bridgnorth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB014">
        <xs:annotation>
          <xs:documentation>Broseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB015">
        <xs:annotation>
          <xs:documentation>Burwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB016">
        <xs:annotation>
          <xs:documentation>Chelmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB017">
        <xs:annotation>
          <xs:documentation>Chetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB018">
        <xs:annotation>
          <xs:documentation>Claverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB019">
        <xs:annotation>
          <xs:documentation>Cleobury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB020">
        <xs:annotation>
          <xs:documentation>Deuxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB021">
        <xs:annotation>
          <xs:documentation>Ditton Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB022">
        <xs:annotation>
          <xs:documentation>Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB023">
        <xs:annotation>
          <xs:documentation>Eardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB024">
        <xs:annotation>
          <xs:documentation>Easthope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB025">
        <xs:annotation>
          <xs:documentation>Farlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB026">
        <xs:annotation>
          <xs:documentation>Glazeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB027">
        <xs:annotation>
          <xs:documentation>Highley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB028">
        <xs:annotation>
          <xs:documentation>Kemberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB029">
        <xs:annotation>
          <xs:documentation>Kinlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB030">
        <xs:annotation>
          <xs:documentation>Middleton Scriven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB031">
        <xs:annotation>
          <xs:documentation>Monkhopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB032">
        <xs:annotation>
          <xs:documentation>Morville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB033">
        <xs:annotation>
          <xs:documentation>Much Wenlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB034">
        <xs:annotation>
          <xs:documentation>Neen Savage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB035">
        <xs:annotation>
          <xs:documentation>Neenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB036">
        <xs:annotation>
          <xs:documentation>Quatt Malvern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB037">
        <xs:annotation>
          <xs:documentation>Romsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB038">
        <xs:annotation>
          <xs:documentation>Rudge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB039">
        <xs:annotation>
          <xs:documentation>Ryton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB040">
        <xs:annotation>
          <xs:documentation>Sheriffhales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB041">
        <xs:annotation>
          <xs:documentation>Shifnal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB042">
        <xs:annotation>
          <xs:documentation>Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB043">
        <xs:annotation>
          <xs:documentation>Sidbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB044">
        <xs:annotation>
          <xs:documentation>Stanton Long</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB045">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB046">
        <xs:annotation>
          <xs:documentation>Stottesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB047">
        <xs:annotation>
          <xs:documentation>Sutton Maddock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB048">
        <xs:annotation>
          <xs:documentation>Tasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB049">
        <xs:annotation>
          <xs:documentation>Tong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB050">
        <xs:annotation>
          <xs:documentation>Upton Cressett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UB051">
        <xs:annotation>
          <xs:documentation>Worfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC001">
        <xs:annotation>
          <xs:documentation>Adderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC002">
        <xs:annotation>
          <xs:documentation>Baschurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC003">
        <xs:annotation>
          <xs:documentation>Cheswardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC004">
        <xs:annotation>
          <xs:documentation>Child's Ercall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC005">
        <xs:annotation>
          <xs:documentation>Clive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC006">
        <xs:annotation>
          <xs:documentation>Cockshutt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC007">
        <xs:annotation>
          <xs:documentation>Ellesmere Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC008">
        <xs:annotation>
          <xs:documentation>Ellesmere Urban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC009">
        <xs:annotation>
          <xs:documentation>Grinshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC010">
        <xs:annotation>
          <xs:documentation>Hadnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC011">
        <xs:annotation>
          <xs:documentation>Hinstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC012">
        <xs:annotation>
          <xs:documentation>Hodnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC013">
        <xs:annotation>
          <xs:documentation>Hordley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC014">
        <xs:annotation>
          <xs:documentation>Ightfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC015">
        <xs:annotation>
          <xs:documentation>Loppington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC016">
        <xs:annotation>
          <xs:documentation>Market Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC017">
        <xs:annotation>
          <xs:documentation>Moreton Corbet and Lee Brockhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC018">
        <xs:annotation>
          <xs:documentation>Moreton Say</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC019">
        <xs:annotation>
          <xs:documentation>Myddle and Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC020">
        <xs:annotation>
          <xs:documentation>Norton in Hales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC021">
        <xs:annotation>
          <xs:documentation>Petton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC022">
        <xs:annotation>
          <xs:documentation>Prees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC023">
        <xs:annotation>
          <xs:documentation>Shawbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC024">
        <xs:annotation>
          <xs:documentation>Stanton upon Hine Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC025">
        <xs:annotation>
          <xs:documentation>Stoke upon Tern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC026">
        <xs:annotation>
          <xs:documentation>Sutton upon Tern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC027">
        <xs:annotation>
          <xs:documentation>Welshampton and Lyneal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC028">
        <xs:annotation>
          <xs:documentation>Wem Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC029">
        <xs:annotation>
          <xs:documentation>Wem Urban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC030">
        <xs:annotation>
          <xs:documentation>Weston-under-Redcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC031">
        <xs:annotation>
          <xs:documentation>Whitchurch Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC032">
        <xs:annotation>
          <xs:documentation>Whitchurch Urban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC033">
        <xs:annotation>
          <xs:documentation>Whixall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UC034">
        <xs:annotation>
          <xs:documentation>Woore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD001">
        <xs:annotation>
          <xs:documentation>Kinnerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD002">
        <xs:annotation>
          <xs:documentation>Knockin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD003">
        <xs:annotation>
          <xs:documentation>Llanyblodwel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD004">
        <xs:annotation>
          <xs:documentation>Llanymynech and Pant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD005">
        <xs:annotation>
          <xs:documentation>Melverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD006">
        <xs:annotation>
          <xs:documentation>Oswestry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD007">
        <xs:annotation>
          <xs:documentation>Oswestry Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD008">
        <xs:annotation>
          <xs:documentation>Ruyton-XI-Towns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD009">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD010">
        <xs:annotation>
          <xs:documentation>Selattyn and Gobowen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD011">
        <xs:annotation>
          <xs:documentation>West Felton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD012">
        <xs:annotation>
          <xs:documentation>Weston Rhyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UD013">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE001">
        <xs:annotation>
          <xs:documentation>Acton Burnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE002">
        <xs:annotation>
          <xs:documentation>Alberbury with Cardeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE003">
        <xs:annotation>
          <xs:documentation>All Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE004">
        <xs:annotation>
          <xs:documentation>Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE005">
        <xs:annotation>
          <xs:documentation>Atcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE006">
        <xs:annotation>
          <xs:documentation>Bayston Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE007">
        <xs:annotation>
          <xs:documentation>Berrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE008">
        <xs:annotation>
          <xs:documentation>Bicton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE009">
        <xs:annotation>
          <xs:documentation>Buildwas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE010">
        <xs:annotation>
          <xs:documentation>Cardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE011">
        <xs:annotation>
          <xs:documentation>Church Preen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE012">
        <xs:annotation>
          <xs:documentation>Church Pulverbatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE013">
        <xs:annotation>
          <xs:documentation>Condover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE014">
        <xs:annotation>
          <xs:documentation>Cound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE015">
        <xs:annotation>
          <xs:documentation>Cressage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE016">
        <xs:annotation>
          <xs:documentation>Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE017">
        <xs:annotation>
          <xs:documentation>Frodesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE018">
        <xs:annotation>
          <xs:documentation>Great Hanwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE019">
        <xs:annotation>
          <xs:documentation>Great Ness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE020">
        <xs:annotation>
          <xs:documentation>Harley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE021">
        <xs:annotation>
          <xs:documentation>Hughley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE022">
        <xs:annotation>
          <xs:documentation>Kenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE023">
        <xs:annotation>
          <xs:documentation>Leebotwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE024">
        <xs:annotation>
          <xs:documentation>Leighton and Eaton Constantine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE025">
        <xs:annotation>
          <xs:documentation>Little Ness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE026">
        <xs:annotation>
          <xs:documentation>Longden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE027">
        <xs:annotation>
          <xs:documentation>Longnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE028">
        <xs:annotation>
          <xs:documentation>Minsterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE029">
        <xs:annotation>
          <xs:documentation>Montford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE030">
        <xs:annotation>
          <xs:documentation>Pimhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE031">
        <xs:annotation>
          <xs:documentation>Pitchford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE032">
        <xs:annotation>
          <xs:documentation>Pontesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE033">
        <xs:annotation>
          <xs:documentation>Ruckley and Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE034">
        <xs:annotation>
          <xs:documentation>Sheinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE035">
        <xs:annotation>
          <xs:documentation>Smethcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE036">
        <xs:annotation>
          <xs:documentation>Uffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE037">
        <xs:annotation>
          <xs:documentation>Upton Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE038">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE039">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE040">
        <xs:annotation>
          <xs:documentation>Wollaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE041">
        <xs:annotation>
          <xs:documentation>Woolstaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UE042">
        <xs:annotation>
          <xs:documentation>Wroxeter and Uppington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF001">
        <xs:annotation>
          <xs:documentation>Abdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF002">
        <xs:annotation>
          <xs:documentation>Acton Scott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF003">
        <xs:annotation>
          <xs:documentation>Ashford Bowdler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF004">
        <xs:annotation>
          <xs:documentation>Ashford Carbonel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF005">
        <xs:annotation>
          <xs:documentation>Bedstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF006">
        <xs:annotation>
          <xs:documentation>Bettws-y-Crwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF007">
        <xs:annotation>
          <xs:documentation>Bishop's Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF008">
        <xs:annotation>
          <xs:documentation>Bitterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF009">
        <xs:annotation>
          <xs:documentation>Boraston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF010">
        <xs:annotation>
          <xs:documentation>Bromfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF011">
        <xs:annotation>
          <xs:documentation>Bucknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF012">
        <xs:annotation>
          <xs:documentation>Burford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF013">
        <xs:annotation>
          <xs:documentation>Caynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF014">
        <xs:annotation>
          <xs:documentation>Chirbury with Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF015">
        <xs:annotation>
          <xs:documentation>Church Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF016">
        <xs:annotation>
          <xs:documentation>Clee St. Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF017">
        <xs:annotation>
          <xs:documentation>Cleobury Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF018">
        <xs:annotation>
          <xs:documentation>Clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF019">
        <xs:annotation>
          <xs:documentation>Clunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF020">
        <xs:annotation>
          <xs:documentation>Clungunford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF021">
        <xs:annotation>
          <xs:documentation>Colebatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF022">
        <xs:annotation>
          <xs:documentation>Coreley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF023">
        <xs:annotation>
          <xs:documentation>Craven Arms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF024">
        <xs:annotation>
          <xs:documentation>Culmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF025">
        <xs:annotation>
          <xs:documentation>Diddlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF026">
        <xs:annotation>
          <xs:documentation>Eaton-under-Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF027">
        <xs:annotation>
          <xs:documentation>Edgton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF028">
        <xs:annotation>
          <xs:documentation>Greete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF029">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF030">
        <xs:annotation>
          <xs:documentation>Hope Bagot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF031">
        <xs:annotation>
          <xs:documentation>Hope Bowdler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF032">
        <xs:annotation>
          <xs:documentation>Hopesay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF033">
        <xs:annotation>
          <xs:documentation>Hopton Cangeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF034">
        <xs:annotation>
          <xs:documentation>Hopton Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF035">
        <xs:annotation>
          <xs:documentation>Hopton Wafers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF036">
        <xs:annotation>
          <xs:documentation>Llanfair Waterdine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF037">
        <xs:annotation>
          <xs:documentation>Ludford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF038">
        <xs:annotation>
          <xs:documentation>Ludlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF039">
        <xs:annotation>
          <xs:documentation>Lydbury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF040">
        <xs:annotation>
          <xs:documentation>Lydham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF041">
        <xs:annotation>
          <xs:documentation>Mainstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF042">
        <xs:annotation>
          <xs:documentation>Milson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF043">
        <xs:annotation>
          <xs:documentation>More</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF044">
        <xs:annotation>
          <xs:documentation>Munslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF045">
        <xs:annotation>
          <xs:documentation>Myndtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF046">
        <xs:annotation>
          <xs:documentation>Nash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF047">
        <xs:annotation>
          <xs:documentation>Neen Sollars</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF048">
        <xs:annotation>
          <xs:documentation>Newcastle on Clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF049">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF050">
        <xs:annotation>
          <xs:documentation>Onibury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF051">
        <xs:annotation>
          <xs:documentation>Ratlinghope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF052">
        <xs:annotation>
          <xs:documentation>Richard's Castle (Shropshire)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF053">
        <xs:annotation>
          <xs:documentation>Rushbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF054">
        <xs:annotation>
          <xs:documentation>Sibdon Carwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF055">
        <xs:annotation>
          <xs:documentation>Stanton Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF056">
        <xs:annotation>
          <xs:documentation>Stoke St. Milborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF057">
        <xs:annotation>
          <xs:documentation>Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF058">
        <xs:annotation>
          <xs:documentation>Wentnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF059">
        <xs:annotation>
          <xs:documentation>Wheathill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF060">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF061">
        <xs:annotation>
          <xs:documentation>Wistanstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UF062">
        <xs:annotation>
          <xs:documentation>Worthen with Shelve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB001">
        <xs:annotation>
          <xs:documentation>Ashwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB002">
        <xs:annotation>
          <xs:documentation>Baltonsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB003">
        <xs:annotation>
          <xs:documentation>Batcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB004">
        <xs:annotation>
          <xs:documentation>Beckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB005">
        <xs:annotation>
          <xs:documentation>Berkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB006">
        <xs:annotation>
          <xs:documentation>Binegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB007">
        <xs:annotation>
          <xs:documentation>Buckland Dinham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB008">
        <xs:annotation>
          <xs:documentation>Butleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB009">
        <xs:annotation>
          <xs:documentation>Chewton Mendip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB010">
        <xs:annotation>
          <xs:documentation>Chilcompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB011">
        <xs:annotation>
          <xs:documentation>Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB012">
        <xs:annotation>
          <xs:documentation>Cranmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB013">
        <xs:annotation>
          <xs:documentation>Croscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB014">
        <xs:annotation>
          <xs:documentation>Ditcheat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB015">
        <xs:annotation>
          <xs:documentation>Doulting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB016">
        <xs:annotation>
          <xs:documentation>Downhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB017">
        <xs:annotation>
          <xs:documentation>East Pennard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB018">
        <xs:annotation>
          <xs:documentation>Great Elm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB019">
        <xs:annotation>
          <xs:documentation>Emborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB020">
        <xs:annotation>
          <xs:documentation>Evercreech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB021">
        <xs:annotation>
          <xs:documentation>Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB022">
        <xs:annotation>
          <xs:documentation>Glastonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB023">
        <xs:annotation>
          <xs:documentation>Godney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB024">
        <xs:annotation>
          <xs:documentation>Hemington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB025">
        <xs:annotation>
          <xs:documentation>Holcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB026">
        <xs:annotation>
          <xs:documentation>Kilmersdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB027">
        <xs:annotation>
          <xs:documentation>Lamyat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB028">
        <xs:annotation>
          <xs:documentation>Leigh-on-Mendip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB029">
        <xs:annotation>
          <xs:documentation>Litton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB030">
        <xs:annotation>
          <xs:documentation>Lullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB031">
        <xs:annotation>
          <xs:documentation>Lydford-on-Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB032">
        <xs:annotation>
          <xs:documentation>Meare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB033">
        <xs:annotation>
          <xs:documentation>Mells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB034">
        <xs:annotation>
          <xs:documentation>Milton Clevedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB035">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB036">
        <xs:annotation>
          <xs:documentation>Norton St Philip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB037">
        <xs:annotation>
          <xs:documentation>Nunney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB038">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB039">
        <xs:annotation>
          <xs:documentation>Priddy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB040">
        <xs:annotation>
          <xs:documentation>Pylle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB041">
        <xs:annotation>
          <xs:documentation>Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB042">
        <xs:annotation>
          <xs:documentation>Rodney Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB043">
        <xs:annotation>
          <xs:documentation>St Cuthbert Out</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB044">
        <xs:annotation>
          <xs:documentation>Selwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB045">
        <xs:annotation>
          <xs:documentation>Sharpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB046">
        <xs:annotation>
          <xs:documentation>Shepton Mallet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB047">
        <xs:annotation>
          <xs:documentation>Stoke St Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB048">
        <xs:annotation>
          <xs:documentation>Ston Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB049">
        <xs:annotation>
          <xs:documentation>Stratton on the Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB050">
        <xs:annotation>
          <xs:documentation>Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB051">
        <xs:annotation>
          <xs:documentation>Tellisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB052">
        <xs:annotation>
          <xs:documentation>Trudoxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB053">
        <xs:annotation>
          <xs:documentation>Upton Noble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB054">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB055">
        <xs:annotation>
          <xs:documentation>Wanstrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB056">
        <xs:annotation>
          <xs:documentation>Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB057">
        <xs:annotation>
          <xs:documentation>West Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB058">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB059">
        <xs:annotation>
          <xs:documentation>West Pennard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB060">
        <xs:annotation>
          <xs:documentation>Whatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB061">
        <xs:annotation>
          <xs:documentation>Witham Friary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UB062">
        <xs:annotation>
          <xs:documentation>Wookey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC001">
        <xs:annotation>
          <xs:documentation>Ashcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC002">
        <xs:annotation>
          <xs:documentation>Axbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC003">
        <xs:annotation>
          <xs:documentation>Badgworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC004">
        <xs:annotation>
          <xs:documentation>Bawdrip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC005">
        <xs:annotation>
          <xs:documentation>Berrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC006">
        <xs:annotation>
          <xs:documentation>Brean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC007">
        <xs:annotation>
          <xs:documentation>Brent Knoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC008">
        <xs:annotation>
          <xs:documentation>Bridgwater Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC009">
        <xs:annotation>
          <xs:documentation>Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC010">
        <xs:annotation>
          <xs:documentation>Burnham-on-Sea and Highbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC011">
        <xs:annotation>
          <xs:documentation>Burnham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC012">
        <xs:annotation>
          <xs:documentation>Burtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC013">
        <xs:annotation>
          <xs:documentation>Cannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC014">
        <xs:annotation>
          <xs:documentation>Catcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC015">
        <xs:annotation>
          <xs:documentation>Chapel Allerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC016">
        <xs:annotation>
          <xs:documentation>Cheddar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC017">
        <xs:annotation>
          <xs:documentation>Chedzoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC018">
        <xs:annotation>
          <xs:documentation>Chilton Polden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC019">
        <xs:annotation>
          <xs:documentation>Chilton Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC020">
        <xs:annotation>
          <xs:documentation>Compton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC021">
        <xs:annotation>
          <xs:documentation>Cossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC022">
        <xs:annotation>
          <xs:documentation>Durleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC023">
        <xs:annotation>
          <xs:documentation>East Brent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC024">
        <xs:annotation>
          <xs:documentation>East Huntspill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC025">
        <xs:annotation>
          <xs:documentation>Edington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC026">
        <xs:annotation>
          <xs:documentation>Enmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC027">
        <xs:annotation>
          <xs:documentation>Fiddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC028">
        <xs:annotation>
          <xs:documentation>Goathurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC029">
        <xs:annotation>
          <xs:documentation>Greinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC030">
        <xs:annotation>
          <xs:documentation>Lympsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC031">
        <xs:annotation>
          <xs:documentation>Lyng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC032">
        <xs:annotation>
          <xs:documentation>Mark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC033">
        <xs:annotation>
          <xs:documentation>Middlezoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC034">
        <xs:annotation>
          <xs:documentation>Moorlinch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC035">
        <xs:annotation>
          <xs:documentation>Nether Stowey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC036">
        <xs:annotation>
          <xs:documentation>North Petherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC037">
        <xs:annotation>
          <xs:documentation>Othery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC038">
        <xs:annotation>
          <xs:documentation>Otterhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC039">
        <xs:annotation>
          <xs:documentation>Over Stowey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC040">
        <xs:annotation>
          <xs:documentation>Pawlett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC041">
        <xs:annotation>
          <xs:documentation>Puriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC042">
        <xs:annotation>
          <xs:documentation>Shapwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC043">
        <xs:annotation>
          <xs:documentation>Shipham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC044">
        <xs:annotation>
          <xs:documentation>Spaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC045">
        <xs:annotation>
          <xs:documentation>Stawell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC046">
        <xs:annotation>
          <xs:documentation>Stockland Bristol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC047">
        <xs:annotation>
          <xs:documentation>Thurloxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC048">
        <xs:annotation>
          <xs:documentation>Weare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC049">
        <xs:annotation>
          <xs:documentation>Wedmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC050">
        <xs:annotation>
          <xs:documentation>Wembdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC051">
        <xs:annotation>
          <xs:documentation>West Huntspill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC052">
        <xs:annotation>
          <xs:documentation>Westonzoyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC053">
        <xs:annotation>
          <xs:documentation>Woolavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UC054">
        <xs:annotation>
          <xs:documentation>Bridgwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD001">
        <xs:annotation>
          <xs:documentation>Abbas and Templecombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD002">
        <xs:annotation>
          <xs:documentation>Alford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD003">
        <xs:annotation>
          <xs:documentation>Aller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD004">
        <xs:annotation>
          <xs:documentation>Ansford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD005">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD006">
        <xs:annotation>
          <xs:documentation>Ashill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD007">
        <xs:annotation>
          <xs:documentation>Babcary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD008">
        <xs:annotation>
          <xs:documentation>Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD009">
        <xs:annotation>
          <xs:documentation>Barton St. David</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD010">
        <xs:annotation>
          <xs:documentation>Barwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD011">
        <xs:annotation>
          <xs:documentation>Beercrocombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD012">
        <xs:annotation>
          <xs:documentation>Bratton Seymour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD013">
        <xs:annotation>
          <xs:documentation>Brewham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD014">
        <xs:annotation>
          <xs:documentation>Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD015">
        <xs:annotation>
          <xs:documentation>Bruton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD016">
        <xs:annotation>
          <xs:documentation>Brympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD017">
        <xs:annotation>
          <xs:documentation>Buckland St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD018">
        <xs:annotation>
          <xs:documentation>Castle Cary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD019">
        <xs:annotation>
          <xs:documentation>Chaffcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD020">
        <xs:annotation>
          <xs:documentation>Chard Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD021">
        <xs:annotation>
          <xs:documentation>Charlton Horethorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD022">
        <xs:annotation>
          <xs:documentation>Charlton Mackrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD023">
        <xs:annotation>
          <xs:documentation>Charlton Musgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD024">
        <xs:annotation>
          <xs:documentation>Chillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD025">
        <xs:annotation>
          <xs:documentation>Chilthorne Domer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD026">
        <xs:annotation>
          <xs:documentation>Chilton Cantelo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD027">
        <xs:annotation>
          <xs:documentation>Chiselborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD028">
        <xs:annotation>
          <xs:documentation>Closworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD029">
        <xs:annotation>
          <xs:documentation>Combe St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD030">
        <xs:annotation>
          <xs:documentation>Compton Dundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD031">
        <xs:annotation>
          <xs:documentation>Compton Pauncefoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD032">
        <xs:annotation>
          <xs:documentation>Corton Denham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD033">
        <xs:annotation>
          <xs:documentation>Crewkerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD034">
        <xs:annotation>
          <xs:documentation>Cricket St. Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD035">
        <xs:annotation>
          <xs:documentation>Cucklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD036">
        <xs:annotation>
          <xs:documentation>Cudworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD037">
        <xs:annotation>
          <xs:documentation>Curry Mallet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD038">
        <xs:annotation>
          <xs:documentation>Curry Rivel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD039">
        <xs:annotation>
          <xs:documentation>Dinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD040">
        <xs:annotation>
          <xs:documentation>Donyatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD041">
        <xs:annotation>
          <xs:documentation>Dowlish Wake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD042">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD043">
        <xs:annotation>
          <xs:documentation>East Chinnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD044">
        <xs:annotation>
          <xs:documentation>East Coker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD045">
        <xs:annotation>
          <xs:documentation>Fivehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD046">
        <xs:annotation>
          <xs:documentation>Hardington Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD047">
        <xs:annotation>
          <xs:documentation>Haselbury Plucknett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD048">
        <xs:annotation>
          <xs:documentation>Henstridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD049">
        <xs:annotation>
          <xs:documentation>High Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD050">
        <xs:annotation>
          <xs:documentation>Hinton St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD051">
        <xs:annotation>
          <xs:documentation>Holton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD052">
        <xs:annotation>
          <xs:documentation>Horsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD053">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD054">
        <xs:annotation>
          <xs:documentation>Huish Episcopi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD055">
        <xs:annotation>
          <xs:documentation>Ilchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD056">
        <xs:annotation>
          <xs:documentation>Ilminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD057">
        <xs:annotation>
          <xs:documentation>Ilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD058">
        <xs:annotation>
          <xs:documentation>Isle Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD059">
        <xs:annotation>
          <xs:documentation>Isle Brewers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD060">
        <xs:annotation>
          <xs:documentation>Keinton Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD061">
        <xs:annotation>
          <xs:documentation>Kingsbury Episcopi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD062">
        <xs:annotation>
          <xs:documentation>Kingsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD063">
        <xs:annotation>
          <xs:documentation>Kingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD064">
        <xs:annotation>
          <xs:documentation>Kingweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD065">
        <xs:annotation>
          <xs:documentation>Knowle St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD066">
        <xs:annotation>
          <xs:documentation>Langport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD067">
        <xs:annotation>
          <xs:documentation>Limington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD068">
        <xs:annotation>
          <xs:documentation>Long Load</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD069">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD070">
        <xs:annotation>
          <xs:documentation>Lopen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD071">
        <xs:annotation>
          <xs:documentation>Lovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD072">
        <xs:annotation>
          <xs:documentation>Maperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD073">
        <xs:annotation>
          <xs:documentation>Marston Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD074">
        <xs:annotation>
          <xs:documentation>Martock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD075">
        <xs:annotation>
          <xs:documentation>Merriott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD076">
        <xs:annotation>
          <xs:documentation>Milborne Port</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD077">
        <xs:annotation>
          <xs:documentation>Misterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD078">
        <xs:annotation>
          <xs:documentation>Montacute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD079">
        <xs:annotation>
          <xs:documentation>Muchelney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD080">
        <xs:annotation>
          <xs:documentation>Mudford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD081">
        <xs:annotation>
          <xs:documentation>North Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD082">
        <xs:annotation>
          <xs:documentation>North Cadbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD083">
        <xs:annotation>
          <xs:documentation>North Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD084">
        <xs:annotation>
          <xs:documentation>North Perrott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD085">
        <xs:annotation>
          <xs:documentation>Norton sub Hamdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD086">
        <xs:annotation>
          <xs:documentation>Odcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD087">
        <xs:annotation>
          <xs:documentation>Pen Selwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD088">
        <xs:annotation>
          <xs:documentation>Pitcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD089">
        <xs:annotation>
          <xs:documentation>Pitney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD090">
        <xs:annotation>
          <xs:documentation>Puckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD091">
        <xs:annotation>
          <xs:documentation>Queen Camel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD092">
        <xs:annotation>
          <xs:documentation>Rimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD093">
        <xs:annotation>
          <xs:documentation>Seavington St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD094">
        <xs:annotation>
          <xs:documentation>Seavington St Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD095">
        <xs:annotation>
          <xs:documentation>Shepton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD096">
        <xs:annotation>
          <xs:documentation>Shepton Montague</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD097">
        <xs:annotation>
          <xs:documentation>Somerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD098">
        <xs:annotation>
          <xs:documentation>South Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD099">
        <xs:annotation>
          <xs:documentation>South Cadbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD100">
        <xs:annotation>
          <xs:documentation>South Petherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD101">
        <xs:annotation>
          <xs:documentation>Sparkford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD102">
        <xs:annotation>
          <xs:documentation>Stocklinch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD103">
        <xs:annotation>
          <xs:documentation>Stoke sub Hamdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD104">
        <xs:annotation>
          <xs:documentation>Stoke Trister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD105">
        <xs:annotation>
          <xs:documentation>Tatworth and Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD106">
        <xs:annotation>
          <xs:documentation>Tintinhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD107">
        <xs:annotation>
          <xs:documentation>Wambrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD108">
        <xs:annotation>
          <xs:documentation>Wayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD109">
        <xs:annotation>
          <xs:documentation>West Camel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD110">
        <xs:annotation>
          <xs:documentation>West and Middle Chinnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD111">
        <xs:annotation>
          <xs:documentation>West Coker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD112">
        <xs:annotation>
          <xs:documentation>West Crewkerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD113">
        <xs:annotation>
          <xs:documentation>Whitelackington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD114">
        <xs:annotation>
          <xs:documentation>Whitestaunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD115">
        <xs:annotation>
          <xs:documentation>Wincanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD116">
        <xs:annotation>
          <xs:documentation>Winsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD117">
        <xs:annotation>
          <xs:documentation>Yarlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD118">
        <xs:annotation>
          <xs:documentation>Yeovil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD119">
        <xs:annotation>
          <xs:documentation>Yeovilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD120">
        <xs:annotation>
          <xs:documentation>Yeovil Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UD121">
        <xs:annotation>
          <xs:documentation>Hambridge and Westport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE001">
        <xs:annotation>
          <xs:documentation>Ashbrittle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE002">
        <xs:annotation>
          <xs:documentation>Ash Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE003">
        <xs:annotation>
          <xs:documentation>Bathealton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE004">
        <xs:annotation>
          <xs:documentation>Bickenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE005">
        <xs:annotation>
          <xs:documentation>Bishop's Hull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE006">
        <xs:annotation>
          <xs:documentation>Bishop's Lydeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE007">
        <xs:annotation>
          <xs:documentation>Bradford-on-Tone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE008">
        <xs:annotation>
          <xs:documentation>Burrowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE009">
        <xs:annotation>
          <xs:documentation>Cheddon Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE010">
        <xs:annotation>
          <xs:documentation>Chipstable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE011">
        <xs:annotation>
          <xs:documentation>Churchstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE012">
        <xs:annotation>
          <xs:documentation>Combe Florey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE013">
        <xs:annotation>
          <xs:documentation>Comeytrowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE014">
        <xs:annotation>
          <xs:documentation>Corfe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE015">
        <xs:annotation>
          <xs:documentation>Cothelstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE016">
        <xs:annotation>
          <xs:documentation>Creech St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE017">
        <xs:annotation>
          <xs:documentation>Curland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE018">
        <xs:annotation>
          <xs:documentation>Durston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE019">
        <xs:annotation>
          <xs:documentation>Fitzhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE020">
        <xs:annotation>
          <xs:documentation>Halse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE021">
        <xs:annotation>
          <xs:documentation>Hatch Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE022">
        <xs:annotation>
          <xs:documentation>Kingston St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE023">
        <xs:annotation>
          <xs:documentation>Langford Budville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE024">
        <xs:annotation>
          <xs:documentation>Lydeard St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE025">
        <xs:annotation>
          <xs:documentation>Milverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE026">
        <xs:annotation>
          <xs:documentation>North Curry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE027">
        <xs:annotation>
          <xs:documentation>Norton Fitzwarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE028">
        <xs:annotation>
          <xs:documentation>Nynehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE029">
        <xs:annotation>
          <xs:documentation>Oake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE030">
        <xs:annotation>
          <xs:documentation>Orchard Portman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE031">
        <xs:annotation>
          <xs:documentation>Otterford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE032">
        <xs:annotation>
          <xs:documentation>Pitminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE033">
        <xs:annotation>
          <xs:documentation>Ruishton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE034">
        <xs:annotation>
          <xs:documentation>Sampford Arundel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE035">
        <xs:annotation>
          <xs:documentation>Staple Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE036">
        <xs:annotation>
          <xs:documentation>Staplegrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE037">
        <xs:annotation>
          <xs:documentation>Stawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE038">
        <xs:annotation>
          <xs:documentation>Stoke St. Gregory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE039">
        <xs:annotation>
          <xs:documentation>Stoke St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE040">
        <xs:annotation>
          <xs:documentation>Thornfalcon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE041">
        <xs:annotation>
          <xs:documentation>Tolland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE042">
        <xs:annotation>
          <xs:documentation>Trull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE043">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE044">
        <xs:annotation>
          <xs:documentation>Wellington Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE045">
        <xs:annotation>
          <xs:documentation>West Bagborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE046">
        <xs:annotation>
          <xs:documentation>West Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE047">
        <xs:annotation>
          <xs:documentation>West Hatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE048">
        <xs:annotation>
          <xs:documentation>West Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UE049">
        <xs:annotation>
          <xs:documentation>Wiveliscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF001">
        <xs:annotation>
          <xs:documentation>Bicknoller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF002">
        <xs:annotation>
          <xs:documentation>Brompton Ralph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF003">
        <xs:annotation>
          <xs:documentation>Brompton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF004">
        <xs:annotation>
          <xs:documentation>Brushford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF005">
        <xs:annotation>
          <xs:documentation>Carhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF006">
        <xs:annotation>
          <xs:documentation>Clatworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF007">
        <xs:annotation>
          <xs:documentation>Crowcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF008">
        <xs:annotation>
          <xs:documentation>Cutcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF009">
        <xs:annotation>
          <xs:documentation>Dulverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF010">
        <xs:annotation>
          <xs:documentation>Dunster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF011">
        <xs:annotation>
          <xs:documentation>East Quantoxhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF012">
        <xs:annotation>
          <xs:documentation>Elworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF013">
        <xs:annotation>
          <xs:documentation>Exford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF014">
        <xs:annotation>
          <xs:documentation>Exmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF015">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF016">
        <xs:annotation>
          <xs:documentation>Holford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF017">
        <xs:annotation>
          <xs:documentation>Huish Champflower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF018">
        <xs:annotation>
          <xs:documentation>Kilve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF019">
        <xs:annotation>
          <xs:documentation>Luccombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF020">
        <xs:annotation>
          <xs:documentation>Luxborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF021">
        <xs:annotation>
          <xs:documentation>Minehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF022">
        <xs:annotation>
          <xs:documentation>Minehead Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF023">
        <xs:annotation>
          <xs:documentation>Monksilver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF024">
        <xs:annotation>
          <xs:documentation>Nettlecombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF025">
        <xs:annotation>
          <xs:documentation>Oare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF026">
        <xs:annotation>
          <xs:documentation>Old Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF027">
        <xs:annotation>
          <xs:documentation>Porlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF028">
        <xs:annotation>
          <xs:documentation>Sampford Brett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF029">
        <xs:annotation>
          <xs:documentation>Selworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF030">
        <xs:annotation>
          <xs:documentation>Skilgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF031">
        <xs:annotation>
          <xs:documentation>Stogumber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF032">
        <xs:annotation>
          <xs:documentation>Stogursey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF033">
        <xs:annotation>
          <xs:documentation>Stringston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF034">
        <xs:annotation>
          <xs:documentation>Timberscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF035">
        <xs:annotation>
          <xs:documentation>Treborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF036">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF037">
        <xs:annotation>
          <xs:documentation>Watchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF038">
        <xs:annotation>
          <xs:documentation>West Quantoxhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF039">
        <xs:annotation>
          <xs:documentation>Williton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF040">
        <xs:annotation>
          <xs:documentation>Winsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF041">
        <xs:annotation>
          <xs:documentation>Withycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF042">
        <xs:annotation>
          <xs:documentation>Withypool and Hawkridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UF043">
        <xs:annotation>
          <xs:documentation>Wootton Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB001">
        <xs:annotation>
          <xs:documentation>Brereton and Ravenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB002">
        <xs:annotation>
          <xs:documentation>Bridgtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB003">
        <xs:annotation>
          <xs:documentation>Brindley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB004">
        <xs:annotation>
          <xs:documentation>Cannock Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB005">
        <xs:annotation>
          <xs:documentation>Heath Hayes and Wimblebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB006">
        <xs:annotation>
          <xs:documentation>Norton Canes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB007">
        <xs:annotation>
          <xs:documentation>Rugeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UB008">
        <xs:annotation>
          <xs:documentation>Hednesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC001">
        <xs:annotation>
          <xs:documentation>Abbots Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC002">
        <xs:annotation>
          <xs:documentation>Anslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC003">
        <xs:annotation>
          <xs:documentation>Barton-under-Needwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC004">
        <xs:annotation>
          <xs:documentation>Blithfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC005">
        <xs:annotation>
          <xs:documentation>Branston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC006">
        <xs:annotation>
          <xs:documentation>Croxden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC007">
        <xs:annotation>
          <xs:documentation>Denstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC008">
        <xs:annotation>
          <xs:documentation>Draycott in the Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC009">
        <xs:annotation>
          <xs:documentation>Dunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC010">
        <xs:annotation>
          <xs:documentation>Ellastone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC011">
        <xs:annotation>
          <xs:documentation>Hanbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC012">
        <xs:annotation>
          <xs:documentation>Hoar Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC013">
        <xs:annotation>
          <xs:documentation>Kingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC014">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC015">
        <xs:annotation>
          <xs:documentation>Marchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC016">
        <xs:annotation>
          <xs:documentation>Mayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC017">
        <xs:annotation>
          <xs:documentation>Newborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC018">
        <xs:annotation>
          <xs:documentation>Okeover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC019">
        <xs:annotation>
          <xs:documentation>Outwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC020">
        <xs:annotation>
          <xs:documentation>Ramshorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC021">
        <xs:annotation>
          <xs:documentation>Rocester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC022">
        <xs:annotation>
          <xs:documentation>Rolleston on Dove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC023">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC024">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC025">
        <xs:annotation>
          <xs:documentation>Tatenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC026">
        <xs:annotation>
          <xs:documentation>Tutbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC027">
        <xs:annotation>
          <xs:documentation>Uttoxeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC028">
        <xs:annotation>
          <xs:documentation>Uttoxeter Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC029">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC030">
        <xs:annotation>
          <xs:documentation>Wychnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC031">
        <xs:annotation>
          <xs:documentation>Yoxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC032">
        <xs:annotation>
          <xs:documentation>Anglesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC033">
        <xs:annotation>
          <xs:documentation>Brizlincote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC034">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC035">
        <xs:annotation>
          <xs:documentation>Horninglow and Eton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC036">
        <xs:annotation>
          <xs:documentation>Shobnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC037">
        <xs:annotation>
          <xs:documentation>Stapenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UC038">
        <xs:annotation>
          <xs:documentation>Winshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD001">
        <xs:annotation>
          <xs:documentation>Alrewas and Fradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD002">
        <xs:annotation>
          <xs:documentation>Armitage with Handsacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD003">
        <xs:annotation>
          <xs:documentation>Burntwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD004">
        <xs:annotation>
          <xs:documentation>Clifton Campville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD005">
        <xs:annotation>
          <xs:documentation>Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD006">
        <xs:annotation>
          <xs:documentation>Curborough and Elmhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD007">
        <xs:annotation>
          <xs:documentation>Drayton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD008">
        <xs:annotation>
          <xs:documentation>Edingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD009">
        <xs:annotation>
          <xs:documentation>Elford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD010">
        <xs:annotation>
          <xs:documentation>Farewell and Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD011">
        <xs:annotation>
          <xs:documentation>Fazeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD012">
        <xs:annotation>
          <xs:documentation>Fisherwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD013">
        <xs:annotation>
          <xs:documentation>Hammerwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD014">
        <xs:annotation>
          <xs:documentation>Hamstall Ridware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD015">
        <xs:annotation>
          <xs:documentation>Harlaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD016">
        <xs:annotation>
          <xs:documentation>Hints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD017">
        <xs:annotation>
          <xs:documentation>King's Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD018">
        <xs:annotation>
          <xs:documentation>Lichfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD019">
        <xs:annotation>
          <xs:documentation>Longdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD020">
        <xs:annotation>
          <xs:documentation>Mavesyn Ridware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD021">
        <xs:annotation>
          <xs:documentation>Shenstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD022">
        <xs:annotation>
          <xs:documentation>Streethay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD023">
        <xs:annotation>
          <xs:documentation>Swinfen and Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD024">
        <xs:annotation>
          <xs:documentation>Thorpe Constantine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD025">
        <xs:annotation>
          <xs:documentation>Wall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD026">
        <xs:annotation>
          <xs:documentation>Weeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD027">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UD028">
        <xs:annotation>
          <xs:documentation>Wigginton and Hopwas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE001">
        <xs:annotation>
          <xs:documentation>Audley Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE002">
        <xs:annotation>
          <xs:documentation>Balterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE003">
        <xs:annotation>
          <xs:documentation>Betley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE004">
        <xs:annotation>
          <xs:documentation>Chapel and Hill Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE005">
        <xs:annotation>
          <xs:documentation>Keele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE006">
        <xs:annotation>
          <xs:documentation>Kidsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE007">
        <xs:annotation>
          <xs:documentation>Loggerheads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE008">
        <xs:annotation>
          <xs:documentation>Madeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE009">
        <xs:annotation>
          <xs:documentation>Maer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE010">
        <xs:annotation>
          <xs:documentation>Whitmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UE011">
        <xs:annotation>
          <xs:documentation>Silverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF001">
        <xs:annotation>
          <xs:documentation>Acton Trussell and Bednall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF002">
        <xs:annotation>
          <xs:documentation>Bilbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF003">
        <xs:annotation>
          <xs:documentation>Blymhill and Weston-under-Lizard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF004">
        <xs:annotation>
          <xs:documentation>Bobbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF005">
        <xs:annotation>
          <xs:documentation>Brewood and Coven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF006">
        <xs:annotation>
          <xs:documentation>Cheslyn Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF007">
        <xs:annotation>
          <xs:documentation>Codsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF008">
        <xs:annotation>
          <xs:documentation>Coppenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF009">
        <xs:annotation>
          <xs:documentation>Dunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF010">
        <xs:annotation>
          <xs:documentation>Enville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF011">
        <xs:annotation>
          <xs:documentation>Essington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF012">
        <xs:annotation>
          <xs:documentation>Featherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF013">
        <xs:annotation>
          <xs:documentation>Great Wyrley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF014">
        <xs:annotation>
          <xs:documentation>Hatherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF015">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF016">
        <xs:annotation>
          <xs:documentation>Himley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF017">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF018">
        <xs:annotation>
          <xs:documentation>Kinver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF019">
        <xs:annotation>
          <xs:documentation>Lapley, Stretton and Wheaton Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF020">
        <xs:annotation>
          <xs:documentation>Lower Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF021">
        <xs:annotation>
          <xs:documentation>Pattingham and Patshull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF022">
        <xs:annotation>
          <xs:documentation>Penkridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF023">
        <xs:annotation>
          <xs:documentation>Perton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF024">
        <xs:annotation>
          <xs:documentation>Saredon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF025">
        <xs:annotation>
          <xs:documentation>Shareshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF026">
        <xs:annotation>
          <xs:documentation>Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF027">
        <xs:annotation>
          <xs:documentation>Teddesley Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF028">
        <xs:annotation>
          <xs:documentation>Trysull and Seisdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UF029">
        <xs:annotation>
          <xs:documentation>Wombourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG001">
        <xs:annotation>
          <xs:documentation>Adbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG002">
        <xs:annotation>
          <xs:documentation>Barlaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG003">
        <xs:annotation>
          <xs:documentation>Berkswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG004">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG005">
        <xs:annotation>
          <xs:documentation>Brocton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG006">
        <xs:annotation>
          <xs:documentation>Hyde Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG007">
        <xs:annotation>
          <xs:documentation>Chebsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG008">
        <xs:annotation>
          <xs:documentation>Church Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG009">
        <xs:annotation>
          <xs:documentation>Colwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG010">
        <xs:annotation>
          <xs:documentation>Creswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG011">
        <xs:annotation>
          <xs:documentation>Eccleshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG012">
        <xs:annotation>
          <xs:documentation>Ellenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG013">
        <xs:annotation>
          <xs:documentation>Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG014">
        <xs:annotation>
          <xs:documentation>Fradswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG015">
        <xs:annotation>
          <xs:documentation>Fulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG016">
        <xs:annotation>
          <xs:documentation>Gayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG017">
        <xs:annotation>
          <xs:documentation>Gnosall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG018">
        <xs:annotation>
          <xs:documentation>Haughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG019">
        <xs:annotation>
          <xs:documentation>High Offley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG020">
        <xs:annotation>
          <xs:documentation>Hilderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG021">
        <xs:annotation>
          <xs:documentation>Hopton and Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG022">
        <xs:annotation>
          <xs:documentation>Ingestre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG023">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG024">
        <xs:annotation>
          <xs:documentation>Milwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG025">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG026">
        <xs:annotation>
          <xs:documentation>Ranton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG027">
        <xs:annotation>
          <xs:documentation>Salt and Enson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG028">
        <xs:annotation>
          <xs:documentation>Sandon and Burston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG029">
        <xs:annotation>
          <xs:documentation>Seighford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG030">
        <xs:annotation>
          <xs:documentation>Standon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG031">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG032">
        <xs:annotation>
          <xs:documentation>Stone Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG033">
        <xs:annotation>
          <xs:documentation>Hixon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG034">
        <xs:annotation>
          <xs:documentation>Swynnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG035">
        <xs:annotation>
          <xs:documentation>Tixall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG036">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG037">
        <xs:annotation>
          <xs:documentation>Whitgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UG038">
        <xs:annotation>
          <xs:documentation>Stowe-by-Chartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH001">
        <xs:annotation>
          <xs:documentation>Alstonefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH002">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH003">
        <xs:annotation>
          <xs:documentation>Bagnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH004">
        <xs:annotation>
          <xs:documentation>Biddulph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH005">
        <xs:annotation>
          <xs:documentation>Blore with Swinscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH006">
        <xs:annotation>
          <xs:documentation>Bradnop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH007">
        <xs:annotation>
          <xs:documentation>Brown Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH008">
        <xs:annotation>
          <xs:documentation>Butterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH009">
        <xs:annotation>
          <xs:documentation>Caverswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH010">
        <xs:annotation>
          <xs:documentation>Cheadle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH011">
        <xs:annotation>
          <xs:documentation>Checkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH012">
        <xs:annotation>
          <xs:documentation>Cheddleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH013">
        <xs:annotation>
          <xs:documentation>Consall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH014">
        <xs:annotation>
          <xs:documentation>Cotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH015">
        <xs:annotation>
          <xs:documentation>Dilhorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH016">
        <xs:annotation>
          <xs:documentation>Draycott in the Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH017">
        <xs:annotation>
          <xs:documentation>Endon and Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH018">
        <xs:annotation>
          <xs:documentation>Farley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH019">
        <xs:annotation>
          <xs:documentation>Fawfieldhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH020">
        <xs:annotation>
          <xs:documentation>Forsbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH021">
        <xs:annotation>
          <xs:documentation>Grindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH022">
        <xs:annotation>
          <xs:documentation>Heathylee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH023">
        <xs:annotation>
          <xs:documentation>Heaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH024">
        <xs:annotation>
          <xs:documentation>Hollinsclough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH025">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH026">
        <xs:annotation>
          <xs:documentation>Ilam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH027">
        <xs:annotation>
          <xs:documentation>Ipstones</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH028">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH029">
        <xs:annotation>
          <xs:documentation>Leek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH030">
        <xs:annotation>
          <xs:documentation>Leekfrith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH031">
        <xs:annotation>
          <xs:documentation>Longnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH032">
        <xs:annotation>
          <xs:documentation>Longsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH033">
        <xs:annotation>
          <xs:documentation>Oakamoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH034">
        <xs:annotation>
          <xs:documentation>Onecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH035">
        <xs:annotation>
          <xs:documentation>Quarnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH036">
        <xs:annotation>
          <xs:documentation>Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH037">
        <xs:annotation>
          <xs:documentation>Sheen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH038">
        <xs:annotation>
          <xs:documentation>Tittesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH039">
        <xs:annotation>
          <xs:documentation>Warslow and Elkstones</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH040">
        <xs:annotation>
          <xs:documentation>Waterhouses</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH041">
        <xs:annotation>
          <xs:documentation>Werrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UH042">
        <xs:annotation>
          <xs:documentation>Wetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB001">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB002">
        <xs:annotation>
          <xs:documentation>Aldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB003">
        <xs:annotation>
          <xs:documentation>Alpheton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB004">
        <xs:annotation>
          <xs:documentation>Arwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB005">
        <xs:annotation>
          <xs:documentation>Assington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB006">
        <xs:annotation>
          <xs:documentation>Belstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB007">
        <xs:annotation>
          <xs:documentation>Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB008">
        <xs:annotation>
          <xs:documentation>Bildeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB009">
        <xs:annotation>
          <xs:documentation>Boxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB010">
        <xs:annotation>
          <xs:documentation>Boxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB011">
        <xs:annotation>
          <xs:documentation>Brantham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB012">
        <xs:annotation>
          <xs:documentation>Brent Eleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB013">
        <xs:annotation>
          <xs:documentation>Brettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB014">
        <xs:annotation>
          <xs:documentation>Bures St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB015">
        <xs:annotation>
          <xs:documentation>Burstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB016">
        <xs:annotation>
          <xs:documentation>Capel St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB017">
        <xs:annotation>
          <xs:documentation>Chattisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB018">
        <xs:annotation>
          <xs:documentation>Chelmondiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB019">
        <xs:annotation>
          <xs:documentation>Chelsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB020">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB021">
        <xs:annotation>
          <xs:documentation>Cockfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB023">
        <xs:annotation>
          <xs:documentation>East Bergholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB024">
        <xs:annotation>
          <xs:documentation>Edwardstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB025">
        <xs:annotation>
          <xs:documentation>Elmsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB026">
        <xs:annotation>
          <xs:documentation>Freston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB027">
        <xs:annotation>
          <xs:documentation>Glemsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB028">
        <xs:annotation>
          <xs:documentation>Great Cornard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB029">
        <xs:annotation>
          <xs:documentation>Great Waldingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB030">
        <xs:annotation>
          <xs:documentation>Groton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB031">
        <xs:annotation>
          <xs:documentation>Hadleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB032">
        <xs:annotation>
          <xs:documentation>Harkstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB033">
        <xs:annotation>
          <xs:documentation>Hartest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB034">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB035">
        <xs:annotation>
          <xs:documentation>Hintlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB036">
        <xs:annotation>
          <xs:documentation>Hitcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB037">
        <xs:annotation>
          <xs:documentation>Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB038">
        <xs:annotation>
          <xs:documentation>Holton St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB039">
        <xs:annotation>
          <xs:documentation>Kersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB040">
        <xs:annotation>
          <xs:documentation>Kettlebaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB041">
        <xs:annotation>
          <xs:documentation>Lavenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB042">
        <xs:annotation>
          <xs:documentation>Lawshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB043">
        <xs:annotation>
          <xs:documentation>Layham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB044">
        <xs:annotation>
          <xs:documentation>Leavenheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB045">
        <xs:annotation>
          <xs:documentation>Lindsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB046">
        <xs:annotation>
          <xs:documentation>Little Cornard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB047">
        <xs:annotation>
          <xs:documentation>Little Waldingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB048">
        <xs:annotation>
          <xs:documentation>Long Melford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB049">
        <xs:annotation>
          <xs:documentation>Milden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB050">
        <xs:annotation>
          <xs:documentation>Monks Eleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB051">
        <xs:annotation>
          <xs:documentation>Nayland-with-Wissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB052">
        <xs:annotation>
          <xs:documentation>Nedging-with-Naughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB053">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB054">
        <xs:annotation>
          <xs:documentation>Polstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB055">
        <xs:annotation>
          <xs:documentation>Preston St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB056">
        <xs:annotation>
          <xs:documentation>Raydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB057">
        <xs:annotation>
          <xs:documentation>Semer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB058">
        <xs:annotation>
          <xs:documentation>Shelley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB059">
        <xs:annotation>
          <xs:documentation>Shimpling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB060">
        <xs:annotation>
          <xs:documentation>Shotley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB061">
        <xs:annotation>
          <xs:documentation>Somerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB062">
        <xs:annotation>
          <xs:documentation>Sproughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB063">
        <xs:annotation>
          <xs:documentation>Stanstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB064">
        <xs:annotation>
          <xs:documentation>Stoke-by-Nayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB065">
        <xs:annotation>
          <xs:documentation>Stratford St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB066">
        <xs:annotation>
          <xs:documentation>Stutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB067">
        <xs:annotation>
          <xs:documentation>Sudbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB068">
        <xs:annotation>
          <xs:documentation>Tattingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB069">
        <xs:annotation>
          <xs:documentation>Thorpe Morieux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB071">
        <xs:annotation>
          <xs:documentation>Wattisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB072">
        <xs:annotation>
          <xs:documentation>Wenham Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB073">
        <xs:annotation>
          <xs:documentation>Wenham Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB074">
        <xs:annotation>
          <xs:documentation>Whatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB075">
        <xs:annotation>
          <xs:documentation>Wherstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB076">
        <xs:annotation>
          <xs:documentation>Woolverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB077">
        <xs:annotation>
          <xs:documentation>Copdock and Washbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UB078">
        <xs:annotation>
          <xs:documentation>Pinewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC001">
        <xs:annotation>
          <xs:documentation>Barton Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC002">
        <xs:annotation>
          <xs:documentation>Brandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC003">
        <xs:annotation>
          <xs:documentation>Cavenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC004">
        <xs:annotation>
          <xs:documentation>Dalham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC005">
        <xs:annotation>
          <xs:documentation>Elveden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC006">
        <xs:annotation>
          <xs:documentation>Eriswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC007">
        <xs:annotation>
          <xs:documentation>Freckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC008">
        <xs:annotation>
          <xs:documentation>Gazeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC009">
        <xs:annotation>
          <xs:documentation>Herringswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC010">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC011">
        <xs:annotation>
          <xs:documentation>Icklingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC012">
        <xs:annotation>
          <xs:documentation>Kentford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC013">
        <xs:annotation>
          <xs:documentation>Lakenheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC014">
        <xs:annotation>
          <xs:documentation>Mildenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC015">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC016">
        <xs:annotation>
          <xs:documentation>Red Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC017">
        <xs:annotation>
          <xs:documentation>Santon Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC018">
        <xs:annotation>
          <xs:documentation>Tuddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC019">
        <xs:annotation>
          <xs:documentation>Wangford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC020">
        <xs:annotation>
          <xs:documentation>Worlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC021">
        <xs:annotation>
          <xs:documentation>Beck Row, Holywell Row and Kenny Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC022">
        <xs:annotation>
          <xs:documentation>Exning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UC023">
        <xs:annotation>
          <xs:documentation>Newmarket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE001">
        <xs:annotation>
          <xs:documentation>Akenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE002">
        <xs:annotation>
          <xs:documentation>Ashbocking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE003">
        <xs:annotation>
          <xs:documentation>Ashfield cum Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE004">
        <xs:annotation>
          <xs:documentation>Aspall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE005">
        <xs:annotation>
          <xs:documentation>Athelington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE006">
        <xs:annotation>
          <xs:documentation>Bacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE007">
        <xs:annotation>
          <xs:documentation>Badley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE008">
        <xs:annotation>
          <xs:documentation>Badwell Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE009">
        <xs:annotation>
          <xs:documentation>Barham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE010">
        <xs:annotation>
          <xs:documentation>Barking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE011">
        <xs:annotation>
          <xs:documentation>Battisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE012">
        <xs:annotation>
          <xs:documentation>Baylham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE013">
        <xs:annotation>
          <xs:documentation>Bedfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE014">
        <xs:annotation>
          <xs:documentation>Bedingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE015">
        <xs:annotation>
          <xs:documentation>Beyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE016">
        <xs:annotation>
          <xs:documentation>Botesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE017">
        <xs:annotation>
          <xs:documentation>Braiseworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE018">
        <xs:annotation>
          <xs:documentation>Bramford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE019">
        <xs:annotation>
          <xs:documentation>Brome and Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE020">
        <xs:annotation>
          <xs:documentation>Brundish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE021">
        <xs:annotation>
          <xs:documentation>Burgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE022">
        <xs:annotation>
          <xs:documentation>Buxhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE023">
        <xs:annotation>
          <xs:documentation>Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE024">
        <xs:annotation>
          <xs:documentation>Coddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE025">
        <xs:annotation>
          <xs:documentation>Combs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE026">
        <xs:annotation>
          <xs:documentation>Cotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE027">
        <xs:annotation>
          <xs:documentation>Creeting St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE028">
        <xs:annotation>
          <xs:documentation>Creeting St. Peter or West Creeting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE029">
        <xs:annotation>
          <xs:documentation>Crowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE030">
        <xs:annotation>
          <xs:documentation>Debenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE031">
        <xs:annotation>
          <xs:documentation>Denham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE032">
        <xs:annotation>
          <xs:documentation>Drinkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE033">
        <xs:annotation>
          <xs:documentation>Elmswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE034">
        <xs:annotation>
          <xs:documentation>Eye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE035">
        <xs:annotation>
          <xs:documentation>Felsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE036">
        <xs:annotation>
          <xs:documentation>Finningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE037">
        <xs:annotation>
          <xs:documentation>Flowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE038">
        <xs:annotation>
          <xs:documentation>Framsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE039">
        <xs:annotation>
          <xs:documentation>Fressingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE040">
        <xs:annotation>
          <xs:documentation>Gedding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE041">
        <xs:annotation>
          <xs:documentation>Gipping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE042">
        <xs:annotation>
          <xs:documentation>Gislingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE043">
        <xs:annotation>
          <xs:documentation>Gosbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE044">
        <xs:annotation>
          <xs:documentation>Great Ashfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE045">
        <xs:annotation>
          <xs:documentation>Great Blakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE046">
        <xs:annotation>
          <xs:documentation>Great Bricett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE047">
        <xs:annotation>
          <xs:documentation>Great Finborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE048">
        <xs:annotation>
          <xs:documentation>Harleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE049">
        <xs:annotation>
          <xs:documentation>Haughley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE050">
        <xs:annotation>
          <xs:documentation>Helmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE051">
        <xs:annotation>
          <xs:documentation>Hemingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE052">
        <xs:annotation>
          <xs:documentation>Henley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE053">
        <xs:annotation>
          <xs:documentation>Hessett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE054">
        <xs:annotation>
          <xs:documentation>Hinderclay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE055">
        <xs:annotation>
          <xs:documentation>Horham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE056">
        <xs:annotation>
          <xs:documentation>Hoxne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE057">
        <xs:annotation>
          <xs:documentation>Hunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE058">
        <xs:annotation>
          <xs:documentation>Kenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE059">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE060">
        <xs:annotation>
          <xs:documentation>Laxfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE061">
        <xs:annotation>
          <xs:documentation>Little Blakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE062">
        <xs:annotation>
          <xs:documentation>Little Finborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE063">
        <xs:annotation>
          <xs:documentation>Mellis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE064">
        <xs:annotation>
          <xs:documentation>Mendham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE065">
        <xs:annotation>
          <xs:documentation>Mendlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE066">
        <xs:annotation>
          <xs:documentation>Metfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE067">
        <xs:annotation>
          <xs:documentation>Mickfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE068">
        <xs:annotation>
          <xs:documentation>Monk Soham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE069">
        <xs:annotation>
          <xs:documentation>Needham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE070">
        <xs:annotation>
          <xs:documentation>Nettlestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE071">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE072">
        <xs:annotation>
          <xs:documentation>Occold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE073">
        <xs:annotation>
          <xs:documentation>Offton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE074">
        <xs:annotation>
          <xs:documentation>Old Newton with Dagworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE075">
        <xs:annotation>
          <xs:documentation>Onehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE076">
        <xs:annotation>
          <xs:documentation>Palgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE077">
        <xs:annotation>
          <xs:documentation>Pettaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE078">
        <xs:annotation>
          <xs:documentation>Rattlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE079">
        <xs:annotation>
          <xs:documentation>Redgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE080">
        <xs:annotation>
          <xs:documentation>Redlingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE081">
        <xs:annotation>
          <xs:documentation>Rickinghall Inferior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE082">
        <xs:annotation>
          <xs:documentation>Rickinghall Superior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE083">
        <xs:annotation>
          <xs:documentation>Ringshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE084">
        <xs:annotation>
          <xs:documentation>Rishangles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE085">
        <xs:annotation>
          <xs:documentation>Shelland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE086">
        <xs:annotation>
          <xs:documentation>Somersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE087">
        <xs:annotation>
          <xs:documentation>Southolt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE088">
        <xs:annotation>
          <xs:documentation>Stoke Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE089">
        <xs:annotation>
          <xs:documentation>Stonham Aspal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE090">
        <xs:annotation>
          <xs:documentation>Stonham Earl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE091">
        <xs:annotation>
          <xs:documentation>Stonham Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE092">
        <xs:annotation>
          <xs:documentation>Stowlangtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE093">
        <xs:annotation>
          <xs:documentation>Stowmarket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE094">
        <xs:annotation>
          <xs:documentation>Stowupland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE095">
        <xs:annotation>
          <xs:documentation>Stradbroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE096">
        <xs:annotation>
          <xs:documentation>Stuston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE097">
        <xs:annotation>
          <xs:documentation>Syleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE098">
        <xs:annotation>
          <xs:documentation>Tannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE099">
        <xs:annotation>
          <xs:documentation>Thorndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE100">
        <xs:annotation>
          <xs:documentation>Thornham Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE101">
        <xs:annotation>
          <xs:documentation>Thornham Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE102">
        <xs:annotation>
          <xs:documentation>Thrandeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE103">
        <xs:annotation>
          <xs:documentation>Thurston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE104">
        <xs:annotation>
          <xs:documentation>Thwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE105">
        <xs:annotation>
          <xs:documentation>Tostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE106">
        <xs:annotation>
          <xs:documentation>Walsham-le-Willows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE107">
        <xs:annotation>
          <xs:documentation>Wattisfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE108">
        <xs:annotation>
          <xs:documentation>Westhorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE109">
        <xs:annotation>
          <xs:documentation>Wetherden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE110">
        <xs:annotation>
          <xs:documentation>Wetheringsett-cum-Brockford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE111">
        <xs:annotation>
          <xs:documentation>Weybread</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE112">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE113">
        <xs:annotation>
          <xs:documentation>Wickham Skeith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE114">
        <xs:annotation>
          <xs:documentation>Wilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE115">
        <xs:annotation>
          <xs:documentation>Willisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE116">
        <xs:annotation>
          <xs:documentation>Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE117">
        <xs:annotation>
          <xs:documentation>Winston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE118">
        <xs:annotation>
          <xs:documentation>Woolpit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE119">
        <xs:annotation>
          <xs:documentation>Worlingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE120">
        <xs:annotation>
          <xs:documentation>Wortham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE121">
        <xs:annotation>
          <xs:documentation>Wyverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UE122">
        <xs:annotation>
          <xs:documentation>Yaxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF001">
        <xs:annotation>
          <xs:documentation>Ampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF002">
        <xs:annotation>
          <xs:documentation>Bardwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF003">
        <xs:annotation>
          <xs:documentation>Barnardiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF004">
        <xs:annotation>
          <xs:documentation>Barnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF005">
        <xs:annotation>
          <xs:documentation>Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF006">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF007">
        <xs:annotation>
          <xs:documentation>Bradfield Combust with Stanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF008">
        <xs:annotation>
          <xs:documentation>Bradfield St. Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF009">
        <xs:annotation>
          <xs:documentation>Bradfield St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF010">
        <xs:annotation>
          <xs:documentation>Brockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF011">
        <xs:annotation>
          <xs:documentation>Cavendish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF012">
        <xs:annotation>
          <xs:documentation>Chedburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF013">
        <xs:annotation>
          <xs:documentation>Chevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF014">
        <xs:annotation>
          <xs:documentation>Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF015">
        <xs:annotation>
          <xs:documentation>Coney Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF016">
        <xs:annotation>
          <xs:documentation>Cowlinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF017">
        <xs:annotation>
          <xs:documentation>Culford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF018">
        <xs:annotation>
          <xs:documentation>Denham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF019">
        <xs:annotation>
          <xs:documentation>Denston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF020">
        <xs:annotation>
          <xs:documentation>Depden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF021">
        <xs:annotation>
          <xs:documentation>Euston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF022">
        <xs:annotation>
          <xs:documentation>Fakenham Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF023">
        <xs:annotation>
          <xs:documentation>Flempton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF024">
        <xs:annotation>
          <xs:documentation>Fornham All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF025">
        <xs:annotation>
          <xs:documentation>Fornham St. Genevieve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF026">
        <xs:annotation>
          <xs:documentation>Fornham St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF027">
        <xs:annotation>
          <xs:documentation>Great Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF028">
        <xs:annotation>
          <xs:documentation>Great Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF029">
        <xs:annotation>
          <xs:documentation>Great Livermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF030">
        <xs:annotation>
          <xs:documentation>Great Thurlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF031">
        <xs:annotation>
          <xs:documentation>Great Whelnetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF032">
        <xs:annotation>
          <xs:documentation>Great Wratting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF033">
        <xs:annotation>
          <xs:documentation>Hargrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF034">
        <xs:annotation>
          <xs:documentation>Haverhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF035">
        <xs:annotation>
          <xs:documentation>Hawkedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF036">
        <xs:annotation>
          <xs:documentation>Hawstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF037">
        <xs:annotation>
          <xs:documentation>Hengrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF038">
        <xs:annotation>
          <xs:documentation>Hepworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF039">
        <xs:annotation>
          <xs:documentation>Honington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF040">
        <xs:annotation>
          <xs:documentation>Hopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF041">
        <xs:annotation>
          <xs:documentation>Horringer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF042">
        <xs:annotation>
          <xs:documentation>Hundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF043">
        <xs:annotation>
          <xs:documentation>Ickworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF044">
        <xs:annotation>
          <xs:documentation>Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF045">
        <xs:annotation>
          <xs:documentation>Ixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF046">
        <xs:annotation>
          <xs:documentation>Ixworth Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF047">
        <xs:annotation>
          <xs:documentation>Kedington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF048">
        <xs:annotation>
          <xs:documentation>Knettishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF049">
        <xs:annotation>
          <xs:documentation>Lackford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF050">
        <xs:annotation>
          <xs:documentation>Lidgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF051">
        <xs:annotation>
          <xs:documentation>Little Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF052">
        <xs:annotation>
          <xs:documentation>Little Livermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF053">
        <xs:annotation>
          <xs:documentation>Little Thurlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF054">
        <xs:annotation>
          <xs:documentation>Little Whelnetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF055">
        <xs:annotation>
          <xs:documentation>Little Wratting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF056">
        <xs:annotation>
          <xs:documentation>Market Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF057">
        <xs:annotation>
          <xs:documentation>Nowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF058">
        <xs:annotation>
          <xs:documentation>Ousden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF059">
        <xs:annotation>
          <xs:documentation>Pakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF060">
        <xs:annotation>
          <xs:documentation>Poslingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF061">
        <xs:annotation>
          <xs:documentation>Rede</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF062">
        <xs:annotation>
          <xs:documentation>Risby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF063">
        <xs:annotation>
          <xs:documentation>Rushbrooke with Rougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF064">
        <xs:annotation>
          <xs:documentation>Sapiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF065">
        <xs:annotation>
          <xs:documentation>Stansfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF066">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF067">
        <xs:annotation>
          <xs:documentation>Stoke-by-Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF068">
        <xs:annotation>
          <xs:documentation>Stradishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF069">
        <xs:annotation>
          <xs:documentation>Thelnetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF070">
        <xs:annotation>
          <xs:documentation>The Saxhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF071">
        <xs:annotation>
          <xs:documentation>Timworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF072">
        <xs:annotation>
          <xs:documentation>Troston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF073">
        <xs:annotation>
          <xs:documentation>Westley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF074">
        <xs:annotation>
          <xs:documentation>West Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF075">
        <xs:annotation>
          <xs:documentation>Whepstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF076">
        <xs:annotation>
          <xs:documentation>Wickhambrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF077">
        <xs:annotation>
          <xs:documentation>Withersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF078">
        <xs:annotation>
          <xs:documentation>Wixoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF079">
        <xs:annotation>
          <xs:documentation>Wordwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UF080">
        <xs:annotation>
          <xs:documentation>Bury St Edmunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG001">
        <xs:annotation>
          <xs:documentation>Aldeburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG002">
        <xs:annotation>
          <xs:documentation>Alderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG003">
        <xs:annotation>
          <xs:documentation>Aldringham cum Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG004">
        <xs:annotation>
          <xs:documentation>Badingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG005">
        <xs:annotation>
          <xs:documentation>Bawdsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG006">
        <xs:annotation>
          <xs:documentation>Benhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG007">
        <xs:annotation>
          <xs:documentation>Blaxhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG008">
        <xs:annotation>
          <xs:documentation>Blythburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG009">
        <xs:annotation>
          <xs:documentation>Boulge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG010">
        <xs:annotation>
          <xs:documentation>Boyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG011">
        <xs:annotation>
          <xs:documentation>Bramfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG012">
        <xs:annotation>
          <xs:documentation>Brandeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG013">
        <xs:annotation>
          <xs:documentation>Bredfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG014">
        <xs:annotation>
          <xs:documentation>Brightwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG015">
        <xs:annotation>
          <xs:documentation>Bromeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG016">
        <xs:annotation>
          <xs:documentation>Bruisyard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG017">
        <xs:annotation>
          <xs:documentation>Bucklesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG018">
        <xs:annotation>
          <xs:documentation>Burgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG019">
        <xs:annotation>
          <xs:documentation>Butley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG020">
        <xs:annotation>
          <xs:documentation>Campsey Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG021">
        <xs:annotation>
          <xs:documentation>Capel St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG022">
        <xs:annotation>
          <xs:documentation>Charsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG023">
        <xs:annotation>
          <xs:documentation>Chediston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG024">
        <xs:annotation>
          <xs:documentation>Chillesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG025">
        <xs:annotation>
          <xs:documentation>Clopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG026">
        <xs:annotation>
          <xs:documentation>Cookley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG027">
        <xs:annotation>
          <xs:documentation>Cransford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG028">
        <xs:annotation>
          <xs:documentation>Cratfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG029">
        <xs:annotation>
          <xs:documentation>Cretingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG030">
        <xs:annotation>
          <xs:documentation>Culpho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG031">
        <xs:annotation>
          <xs:documentation>Dallinghoo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG032">
        <xs:annotation>
          <xs:documentation>Darsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG033">
        <xs:annotation>
          <xs:documentation>Debach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG034">
        <xs:annotation>
          <xs:documentation>Dennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG035">
        <xs:annotation>
          <xs:documentation>Dunwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG036">
        <xs:annotation>
          <xs:documentation>Earl Soham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG037">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG038">
        <xs:annotation>
          <xs:documentation>Eyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG039">
        <xs:annotation>
          <xs:documentation>Falkenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG040">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG041">
        <xs:annotation>
          <xs:documentation>Felixstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG042">
        <xs:annotation>
          <xs:documentation>Foxhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG043">
        <xs:annotation>
          <xs:documentation>Framlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG044">
        <xs:annotation>
          <xs:documentation>Friston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG045">
        <xs:annotation>
          <xs:documentation>Gedgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG046">
        <xs:annotation>
          <xs:documentation>Great Bealings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG047">
        <xs:annotation>
          <xs:documentation>Great Glemham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG048">
        <xs:annotation>
          <xs:documentation>Grundisburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG049">
        <xs:annotation>
          <xs:documentation>Hacheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG050">
        <xs:annotation>
          <xs:documentation>Hasketon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG051">
        <xs:annotation>
          <xs:documentation>Hemley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG052">
        <xs:annotation>
          <xs:documentation>Heveningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG053">
        <xs:annotation>
          <xs:documentation>Hollesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG054">
        <xs:annotation>
          <xs:documentation>Hoo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG055">
        <xs:annotation>
          <xs:documentation>Huntingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG056">
        <xs:annotation>
          <xs:documentation>Iken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG057">
        <xs:annotation>
          <xs:documentation>Kelsale cum Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG058">
        <xs:annotation>
          <xs:documentation>Kesgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG059">
        <xs:annotation>
          <xs:documentation>Kettleburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG060">
        <xs:annotation>
          <xs:documentation>Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG061">
        <xs:annotation>
          <xs:documentation>Knodishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG062">
        <xs:annotation>
          <xs:documentation>Leiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG063">
        <xs:annotation>
          <xs:documentation>Letheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG064">
        <xs:annotation>
          <xs:documentation>Levington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG065">
        <xs:annotation>
          <xs:documentation>Linstead Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG066">
        <xs:annotation>
          <xs:documentation>Linstead Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG067">
        <xs:annotation>
          <xs:documentation>Little Bealings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG068">
        <xs:annotation>
          <xs:documentation>Little Glemham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG069">
        <xs:annotation>
          <xs:documentation>Marlesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG070">
        <xs:annotation>
          <xs:documentation>Martlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG071">
        <xs:annotation>
          <xs:documentation>Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG072">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG073">
        <xs:annotation>
          <xs:documentation>Monewden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG074">
        <xs:annotation>
          <xs:documentation>Nacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG075">
        <xs:annotation>
          <xs:documentation>Newbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG076">
        <xs:annotation>
          <xs:documentation>Orford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG077">
        <xs:annotation>
          <xs:documentation>Otley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG078">
        <xs:annotation>
          <xs:documentation>Parham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG079">
        <xs:annotation>
          <xs:documentation>Peasenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG080">
        <xs:annotation>
          <xs:documentation>Pettistree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG081">
        <xs:annotation>
          <xs:documentation>Playford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG082">
        <xs:annotation>
          <xs:documentation>Purdis Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG083">
        <xs:annotation>
          <xs:documentation>Ramsholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG084">
        <xs:annotation>
          <xs:documentation>Rendham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG085">
        <xs:annotation>
          <xs:documentation>Rendlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG086">
        <xs:annotation>
          <xs:documentation>Rushmere St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG087">
        <xs:annotation>
          <xs:documentation>Saxmundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG088">
        <xs:annotation>
          <xs:documentation>Saxtead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG089">
        <xs:annotation>
          <xs:documentation>Shottisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG090">
        <xs:annotation>
          <xs:documentation>Sibton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG091">
        <xs:annotation>
          <xs:documentation>Snape</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG092">
        <xs:annotation>
          <xs:documentation>Sternfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG093">
        <xs:annotation>
          <xs:documentation>Stratford St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG094">
        <xs:annotation>
          <xs:documentation>Stratton Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG095">
        <xs:annotation>
          <xs:documentation>Sudbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG096">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG097">
        <xs:annotation>
          <xs:documentation>Swefling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG098">
        <xs:annotation>
          <xs:documentation>Swilland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG099">
        <xs:annotation>
          <xs:documentation>Theberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG100">
        <xs:annotation>
          <xs:documentation>Thorington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG101">
        <xs:annotation>
          <xs:documentation>Trimley St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG102">
        <xs:annotation>
          <xs:documentation>Trimley St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG103">
        <xs:annotation>
          <xs:documentation>Tuddenham St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG104">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG105">
        <xs:annotation>
          <xs:documentation>Ubbeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG106">
        <xs:annotation>
          <xs:documentation>Ufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG107">
        <xs:annotation>
          <xs:documentation>Walberswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG108">
        <xs:annotation>
          <xs:documentation>Waldringfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG109">
        <xs:annotation>
          <xs:documentation>Walpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG110">
        <xs:annotation>
          <xs:documentation>Wantisden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG111">
        <xs:annotation>
          <xs:documentation>Wenhaston with Mells Hamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG112">
        <xs:annotation>
          <xs:documentation>Westerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG113">
        <xs:annotation>
          <xs:documentation>Westleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG114">
        <xs:annotation>
          <xs:documentation>Wickham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG115">
        <xs:annotation>
          <xs:documentation>Witnesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG116">
        <xs:annotation>
          <xs:documentation>Woodbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UG117">
        <xs:annotation>
          <xs:documentation>Yoxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH001">
        <xs:annotation>
          <xs:documentation>All Saints and St. Nicholas, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH002">
        <xs:annotation>
          <xs:documentation>Barnby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH003">
        <xs:annotation>
          <xs:documentation>Barsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH004">
        <xs:annotation>
          <xs:documentation>Beccles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH005">
        <xs:annotation>
          <xs:documentation>Benacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH006">
        <xs:annotation>
          <xs:documentation>Blundeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH007">
        <xs:annotation>
          <xs:documentation>Blyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH008">
        <xs:annotation>
          <xs:documentation>Brampton with Stoven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH009">
        <xs:annotation>
          <xs:documentation>Bungay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH010">
        <xs:annotation>
          <xs:documentation>Carlton Colville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH011">
        <xs:annotation>
          <xs:documentation>Corton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH012">
        <xs:annotation>
          <xs:documentation>Covehithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH013">
        <xs:annotation>
          <xs:documentation>Ellough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH014">
        <xs:annotation>
          <xs:documentation>Flixton (Lothingland Ward)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH015">
        <xs:annotation>
          <xs:documentation>Flixton (The Saints Ward)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH016">
        <xs:annotation>
          <xs:documentation>Frostenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH017">
        <xs:annotation>
          <xs:documentation>Gisleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH018">
        <xs:annotation>
          <xs:documentation>Halesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH019">
        <xs:annotation>
          <xs:documentation>Henstead with Hulver Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH020">
        <xs:annotation>
          <xs:documentation>Holton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH021">
        <xs:annotation>
          <xs:documentation>Kessingland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH022">
        <xs:annotation>
          <xs:documentation>Lound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH023">
        <xs:annotation>
          <xs:documentation>Mettingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH024">
        <xs:annotation>
          <xs:documentation>Mutford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH025">
        <xs:annotation>
          <xs:documentation>North Cove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH026">
        <xs:annotation>
          <xs:documentation>Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH027">
        <xs:annotation>
          <xs:documentation>Redisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH028">
        <xs:annotation>
          <xs:documentation>Reydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH029">
        <xs:annotation>
          <xs:documentation>Ringsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH030">
        <xs:annotation>
          <xs:documentation>Rumburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH031">
        <xs:annotation>
          <xs:documentation>Rushmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH032">
        <xs:annotation>
          <xs:documentation>St. Andrew, Ilketshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH033">
        <xs:annotation>
          <xs:documentation>St. Cross, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH034">
        <xs:annotation>
          <xs:documentation>St. James, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH035">
        <xs:annotation>
          <xs:documentation>St. John, Ilketshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH036">
        <xs:annotation>
          <xs:documentation>St. Lawrence, Ilketshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH037">
        <xs:annotation>
          <xs:documentation>St. Margaret, Ilketshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH038">
        <xs:annotation>
          <xs:documentation>St. Margaret, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH039">
        <xs:annotation>
          <xs:documentation>St. Mary, South Elmham otherwise Homersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH040">
        <xs:annotation>
          <xs:documentation>St. Michael, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH041">
        <xs:annotation>
          <xs:documentation>St. Peter, South Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH042">
        <xs:annotation>
          <xs:documentation>Shadingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH043">
        <xs:annotation>
          <xs:documentation>Shipmeadow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH044">
        <xs:annotation>
          <xs:documentation>Somerleyton, Ashby and Herringfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH045">
        <xs:annotation>
          <xs:documentation>Sotherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH046">
        <xs:annotation>
          <xs:documentation>Sotterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH047">
        <xs:annotation>
          <xs:documentation>South Cove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH048">
        <xs:annotation>
          <xs:documentation>Southwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH049">
        <xs:annotation>
          <xs:documentation>Spexhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH050">
        <xs:annotation>
          <xs:documentation>Uggeshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH051">
        <xs:annotation>
          <xs:documentation>Wangford with Henham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH052">
        <xs:annotation>
          <xs:documentation>Westhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH053">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH054">
        <xs:annotation>
          <xs:documentation>Willingham St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH055">
        <xs:annotation>
          <xs:documentation>Wissett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH056">
        <xs:annotation>
          <xs:documentation>Worlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UH057">
        <xs:annotation>
          <xs:documentation>Wrentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UB001">
        <xs:annotation>
          <xs:documentation>Claygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD001">
        <xs:annotation>
          <xs:documentation>Albury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD002">
        <xs:annotation>
          <xs:documentation>Artington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD003">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD004">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD005">
        <xs:annotation>
          <xs:documentation>East Clandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD006">
        <xs:annotation>
          <xs:documentation>East Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD007">
        <xs:annotation>
          <xs:documentation>Effingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD008">
        <xs:annotation>
          <xs:documentation>Normandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD009">
        <xs:annotation>
          <xs:documentation>Ockham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD010">
        <xs:annotation>
          <xs:documentation>Pirbright</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD011">
        <xs:annotation>
          <xs:documentation>Puttenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD012">
        <xs:annotation>
          <xs:documentation>Ripley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD013">
        <xs:annotation>
          <xs:documentation>St. Martha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD014">
        <xs:annotation>
          <xs:documentation>Seale and Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD015">
        <xs:annotation>
          <xs:documentation>Send</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD016">
        <xs:annotation>
          <xs:documentation>Shackleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD017">
        <xs:annotation>
          <xs:documentation>Shalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD018">
        <xs:annotation>
          <xs:documentation>Shere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD019">
        <xs:annotation>
          <xs:documentation>Tongham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD020">
        <xs:annotation>
          <xs:documentation>Wanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD021">
        <xs:annotation>
          <xs:documentation>West Clandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD022">
        <xs:annotation>
          <xs:documentation>West Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD023">
        <xs:annotation>
          <xs:documentation>Wisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UD024">
        <xs:annotation>
          <xs:documentation>Worplesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE001">
        <xs:annotation>
          <xs:documentation>Abinger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE002">
        <xs:annotation>
          <xs:documentation>Betchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE003">
        <xs:annotation>
          <xs:documentation>Brockham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE004">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE005">
        <xs:annotation>
          <xs:documentation>Capel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE006">
        <xs:annotation>
          <xs:documentation>Charlwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE007">
        <xs:annotation>
          <xs:documentation>Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE008">
        <xs:annotation>
          <xs:documentation>Holmwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE009">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE010">
        <xs:annotation>
          <xs:documentation>Mickleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE011">
        <xs:annotation>
          <xs:documentation>Newdigate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE012">
        <xs:annotation>
          <xs:documentation>Ockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UE013">
        <xs:annotation>
          <xs:documentation>Wotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UF001">
        <xs:annotation>
          <xs:documentation>Horley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UF002">
        <xs:annotation>
          <xs:documentation>Salfords and Sidlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJ001">
        <xs:annotation>
          <xs:documentation>Bisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJ002">
        <xs:annotation>
          <xs:documentation>Chobham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJ003">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJ004">
        <xs:annotation>
          <xs:documentation>Windlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK001">
        <xs:annotation>
          <xs:documentation>Bletchingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK002">
        <xs:annotation>
          <xs:documentation>Burstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK003">
        <xs:annotation>
          <xs:documentation>Chelsham and Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK004">
        <xs:annotation>
          <xs:documentation>Crowhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK005">
        <xs:annotation>
          <xs:documentation>Felbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK006">
        <xs:annotation>
          <xs:documentation>Godstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK007">
        <xs:annotation>
          <xs:documentation>Horne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK008">
        <xs:annotation>
          <xs:documentation>Limpsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK010">
        <xs:annotation>
          <xs:documentation>Nutfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK011">
        <xs:annotation>
          <xs:documentation>Oxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK012">
        <xs:annotation>
          <xs:documentation>Tandridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK013">
        <xs:annotation>
          <xs:documentation>Tatsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK014">
        <xs:annotation>
          <xs:documentation>Titsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK015">
        <xs:annotation>
          <xs:documentation>Caterham-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK016">
        <xs:annotation>
          <xs:documentation>Caterham Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK017">
        <xs:annotation>
          <xs:documentation>Chaldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK018">
        <xs:annotation>
          <xs:documentation>Dormansland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK019">
        <xs:annotation>
          <xs:documentation>Lingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK020">
        <xs:annotation>
          <xs:documentation>Outwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK021">
        <xs:annotation>
          <xs:documentation>Warlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK022">
        <xs:annotation>
          <xs:documentation>Whyteleafe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UK023">
        <xs:annotation>
          <xs:documentation>Woldingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL001">
        <xs:annotation>
          <xs:documentation>Alfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL002">
        <xs:annotation>
          <xs:documentation>Bramley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL003">
        <xs:annotation>
          <xs:documentation>Busbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL004">
        <xs:annotation>
          <xs:documentation>Chiddingfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL005">
        <xs:annotation>
          <xs:documentation>Cranleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL006">
        <xs:annotation>
          <xs:documentation>Dockenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL007">
        <xs:annotation>
          <xs:documentation>Dunsfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL008">
        <xs:annotation>
          <xs:documentation>Elstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL009">
        <xs:annotation>
          <xs:documentation>Ewhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL010">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL011">
        <xs:annotation>
          <xs:documentation>Frensham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL012">
        <xs:annotation>
          <xs:documentation>Godalming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL013">
        <xs:annotation>
          <xs:documentation>Hambledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL014">
        <xs:annotation>
          <xs:documentation>Hascombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL015">
        <xs:annotation>
          <xs:documentation>Haslemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL016">
        <xs:annotation>
          <xs:documentation>Peper Harow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL017">
        <xs:annotation>
          <xs:documentation>Thursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL018">
        <xs:annotation>
          <xs:documentation>Tilford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL019">
        <xs:annotation>
          <xs:documentation>Witley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL020">
        <xs:annotation>
          <xs:documentation>Wonersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UL021">
        <xs:annotation>
          <xs:documentation>Churt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UM001">
        <xs:annotation>
          <xs:documentation>Byfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB001">
        <xs:annotation>
          <xs:documentation>Ansley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB002">
        <xs:annotation>
          <xs:documentation>Arley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB003">
        <xs:annotation>
          <xs:documentation>Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB004">
        <xs:annotation>
          <xs:documentation>Atherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB005">
        <xs:annotation>
          <xs:documentation>Austrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB006">
        <xs:annotation>
          <xs:documentation>Baddesley Ensor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB007">
        <xs:annotation>
          <xs:documentation>Baxterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB008">
        <xs:annotation>
          <xs:documentation>Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB009">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB010">
        <xs:annotation>
          <xs:documentation>Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB011">
        <xs:annotation>
          <xs:documentation>Corley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB012">
        <xs:annotation>
          <xs:documentation>Curdworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB013">
        <xs:annotation>
          <xs:documentation>Dordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB014">
        <xs:annotation>
          <xs:documentation>Fillongley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB015">
        <xs:annotation>
          <xs:documentation>Great Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB016">
        <xs:annotation>
          <xs:documentation>Grendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB017">
        <xs:annotation>
          <xs:documentation>Hartshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB018">
        <xs:annotation>
          <xs:documentation>Kingsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB019">
        <xs:annotation>
          <xs:documentation>Lea Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB020">
        <xs:annotation>
          <xs:documentation>Little Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB021">
        <xs:annotation>
          <xs:documentation>Mancetter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB022">
        <xs:annotation>
          <xs:documentation>Maxstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB023">
        <xs:annotation>
          <xs:documentation>Merevale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB024">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB025">
        <xs:annotation>
          <xs:documentation>Nether Whitacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB026">
        <xs:annotation>
          <xs:documentation>Newton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB027">
        <xs:annotation>
          <xs:documentation>Over Whitacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB028">
        <xs:annotation>
          <xs:documentation>Polesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB029">
        <xs:annotation>
          <xs:documentation>Seckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB030">
        <xs:annotation>
          <xs:documentation>Shustoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB031">
        <xs:annotation>
          <xs:documentation>Shuttington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB032">
        <xs:annotation>
          <xs:documentation>Water Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UB033">
        <xs:annotation>
          <xs:documentation>Wishaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD001">
        <xs:annotation>
          <xs:documentation>Ansty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD002">
        <xs:annotation>
          <xs:documentation>Binley Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD003">
        <xs:annotation>
          <xs:documentation>Birdingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD004">
        <xs:annotation>
          <xs:documentation>Bourton and Draycote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD005">
        <xs:annotation>
          <xs:documentation>Brandon and Bretford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD006">
        <xs:annotation>
          <xs:documentation>Brinklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD007">
        <xs:annotation>
          <xs:documentation>Burton Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD008">
        <xs:annotation>
          <xs:documentation>Church Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD009">
        <xs:annotation>
          <xs:documentation>Churchover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD010">
        <xs:annotation>
          <xs:documentation>Clifton upon Dunsmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD011">
        <xs:annotation>
          <xs:documentation>Combe Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD012">
        <xs:annotation>
          <xs:documentation>Copston Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD013">
        <xs:annotation>
          <xs:documentation>Cosford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD014">
        <xs:annotation>
          <xs:documentation>Dunchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD015">
        <xs:annotation>
          <xs:documentation>Easenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD016">
        <xs:annotation>
          <xs:documentation>Frankton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD017">
        <xs:annotation>
          <xs:documentation>Grandborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD018">
        <xs:annotation>
          <xs:documentation>Harborough Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD019">
        <xs:annotation>
          <xs:documentation>King's Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD020">
        <xs:annotation>
          <xs:documentation>Leamington Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD021">
        <xs:annotation>
          <xs:documentation>Little Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD022">
        <xs:annotation>
          <xs:documentation>Long Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD023">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD024">
        <xs:annotation>
          <xs:documentation>Monks Kirby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD025">
        <xs:annotation>
          <xs:documentation>Newton and Biggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD026">
        <xs:annotation>
          <xs:documentation>Pailton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD027">
        <xs:annotation>
          <xs:documentation>Princethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD028">
        <xs:annotation>
          <xs:documentation>Ryton-on-Dunsmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD029">
        <xs:annotation>
          <xs:documentation>Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD030">
        <xs:annotation>
          <xs:documentation>Stretton Baskerville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD031">
        <xs:annotation>
          <xs:documentation>Stretton-on-Dunsmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD032">
        <xs:annotation>
          <xs:documentation>Stretton under Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD033">
        <xs:annotation>
          <xs:documentation>Thurlaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD034">
        <xs:annotation>
          <xs:documentation>Wibtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD035">
        <xs:annotation>
          <xs:documentation>Willey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD036">
        <xs:annotation>
          <xs:documentation>Willoughby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD037">
        <xs:annotation>
          <xs:documentation>Withybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD038">
        <xs:annotation>
          <xs:documentation>Wolfhampcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD039">
        <xs:annotation>
          <xs:documentation>Wolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UD040">
        <xs:annotation>
          <xs:documentation>Wolvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE001">
        <xs:annotation>
          <xs:documentation>Admington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE002">
        <xs:annotation>
          <xs:documentation>Alcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE003">
        <xs:annotation>
          <xs:documentation>Alderminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE005">
        <xs:annotation>
          <xs:documentation>Aston Cantlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE006">
        <xs:annotation>
          <xs:documentation>Atherstone on Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE007">
        <xs:annotation>
          <xs:documentation>Avon Dassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE008">
        <xs:annotation>
          <xs:documentation>Barcheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE009">
        <xs:annotation>
          <xs:documentation>Barton-on-the-Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE010">
        <xs:annotation>
          <xs:documentation>Bearley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE011">
        <xs:annotation>
          <xs:documentation>Beaudesert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE012">
        <xs:annotation>
          <xs:documentation>Bidford-on-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE013">
        <xs:annotation>
          <xs:documentation>Billesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE014">
        <xs:annotation>
          <xs:documentation>Binton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE015">
        <xs:annotation>
          <xs:documentation>Bishop's Itchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE016">
        <xs:annotation>
          <xs:documentation>Brailes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE017">
        <xs:annotation>
          <xs:documentation>Burmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE018">
        <xs:annotation>
          <xs:documentation>Burton Dassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE019">
        <xs:annotation>
          <xs:documentation>Butlers Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE020">
        <xs:annotation>
          <xs:documentation>Chadshunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE021">
        <xs:annotation>
          <xs:documentation>Chapel Ascote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE022">
        <xs:annotation>
          <xs:documentation>Charlecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE023">
        <xs:annotation>
          <xs:documentation>Cherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE024">
        <xs:annotation>
          <xs:documentation>Chesterton and Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE025">
        <xs:annotation>
          <xs:documentation>Claverdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE027">
        <xs:annotation>
          <xs:documentation>Combrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE028">
        <xs:annotation>
          <xs:documentation>Compton Verney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE029">
        <xs:annotation>
          <xs:documentation>Compton Wynyates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE030">
        <xs:annotation>
          <xs:documentation>Coughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE031">
        <xs:annotation>
          <xs:documentation>Dorsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE032">
        <xs:annotation>
          <xs:documentation>Ettington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE033">
        <xs:annotation>
          <xs:documentation>Exhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE034">
        <xs:annotation>
          <xs:documentation>Farnborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE035">
        <xs:annotation>
          <xs:documentation>Fenny Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE036">
        <xs:annotation>
          <xs:documentation>Fulbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE037">
        <xs:annotation>
          <xs:documentation>Gaydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE038">
        <xs:annotation>
          <xs:documentation>Great Alne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE039">
        <xs:annotation>
          <xs:documentation>Great Wolford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE040">
        <xs:annotation>
          <xs:documentation>Halford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE041">
        <xs:annotation>
          <xs:documentation>Hampton Lucy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE042">
        <xs:annotation>
          <xs:documentation>Harbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE043">
        <xs:annotation>
          <xs:documentation>Haselor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE044">
        <xs:annotation>
          <xs:documentation>Henley-in-Arden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE045">
        <xs:annotation>
          <xs:documentation>Hodnell and Wills Pastures</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE046">
        <xs:annotation>
          <xs:documentation>Honington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE047">
        <xs:annotation>
          <xs:documentation>Idlicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE048">
        <xs:annotation>
          <xs:documentation>Ilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE049">
        <xs:annotation>
          <xs:documentation>Kineton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE050">
        <xs:annotation>
          <xs:documentation>Kinwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE051">
        <xs:annotation>
          <xs:documentation>Ladbroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE052">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE053">
        <xs:annotation>
          <xs:documentation>Lighthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE054">
        <xs:annotation>
          <xs:documentation>Little Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE055">
        <xs:annotation>
          <xs:documentation>Little Wolford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE056">
        <xs:annotation>
          <xs:documentation>Long Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE057">
        <xs:annotation>
          <xs:documentation>Long Itchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE058">
        <xs:annotation>
          <xs:documentation>Long Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE059">
        <xs:annotation>
          <xs:documentation>Loxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE060">
        <xs:annotation>
          <xs:documentation>Luddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE062">
        <xs:annotation>
          <xs:documentation>Moreton Morrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE063">
        <xs:annotation>
          <xs:documentation>Morton Bagot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE064">
        <xs:annotation>
          <xs:documentation>Napton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE065">
        <xs:annotation>
          <xs:documentation>Newbold Pacey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE066">
        <xs:annotation>
          <xs:documentation>Oldberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE067">
        <xs:annotation>
          <xs:documentation>Old Stratford and Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE068">
        <xs:annotation>
          <xs:documentation>Oxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE069">
        <xs:annotation>
          <xs:documentation>Pillerton Hersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE070">
        <xs:annotation>
          <xs:documentation>Pillerton Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE071">
        <xs:annotation>
          <xs:documentation>Preston Bagot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE072">
        <xs:annotation>
          <xs:documentation>Preston on Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE073">
        <xs:annotation>
          <xs:documentation>Priors Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE074">
        <xs:annotation>
          <xs:documentation>Priors Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE075">
        <xs:annotation>
          <xs:documentation>Quinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE076">
        <xs:annotation>
          <xs:documentation>Radbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE077">
        <xs:annotation>
          <xs:documentation>Radway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE078">
        <xs:annotation>
          <xs:documentation>Ratley and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE079">
        <xs:annotation>
          <xs:documentation>Salford Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE080">
        <xs:annotation>
          <xs:documentation>Sambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE081">
        <xs:annotation>
          <xs:documentation>Shipston on Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE082">
        <xs:annotation>
          <xs:documentation>Shotteswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE083">
        <xs:annotation>
          <xs:documentation>Snitterfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE084">
        <xs:annotation>
          <xs:documentation>Southam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE085">
        <xs:annotation>
          <xs:documentation>Spernall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE086">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE087">
        <xs:annotation>
          <xs:documentation>Stoneton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE088">
        <xs:annotation>
          <xs:documentation>Stourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE089">
        <xs:annotation>
          <xs:documentation>Stratford-upon-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE090">
        <xs:annotation>
          <xs:documentation>Stretton-on-Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE091">
        <xs:annotation>
          <xs:documentation>Studley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE092">
        <xs:annotation>
          <xs:documentation>Sutton-under-Brailes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE093">
        <xs:annotation>
          <xs:documentation>Tanworth-in-Arden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE094">
        <xs:annotation>
          <xs:documentation>Temple Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE095">
        <xs:annotation>
          <xs:documentation>Tidmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE096">
        <xs:annotation>
          <xs:documentation>Tredington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE097">
        <xs:annotation>
          <xs:documentation>Tysoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE098">
        <xs:annotation>
          <xs:documentation>Ufton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE099">
        <xs:annotation>
          <xs:documentation>Ullenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE100">
        <xs:annotation>
          <xs:documentation>Upper and Lower Shuckburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE101">
        <xs:annotation>
          <xs:documentation>Warmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE102">
        <xs:annotation>
          <xs:documentation>Watergall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE104">
        <xs:annotation>
          <xs:documentation>Welford-on-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE105">
        <xs:annotation>
          <xs:documentation>Wellesbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE106">
        <xs:annotation>
          <xs:documentation>Weston-on-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE107">
        <xs:annotation>
          <xs:documentation>Whatcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE108">
        <xs:annotation>
          <xs:documentation>Whichford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE109">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE110">
        <xs:annotation>
          <xs:documentation>Wixford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE111">
        <xs:annotation>
          <xs:documentation>Wolverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE112">
        <xs:annotation>
          <xs:documentation>Wootton Wawen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE113">
        <xs:annotation>
          <xs:documentation>Wormleighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE114">
        <xs:annotation>
          <xs:documentation>Arrow with Weethley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE115">
        <xs:annotation>
          <xs:documentation>Clifford Chambers and Milcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE116">
        <xs:annotation>
          <xs:documentation>Lighthorne Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE117">
        <xs:annotation>
          <xs:documentation>Mappleborough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UE118">
        <xs:annotation>
          <xs:documentation>Wilmcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF001">
        <xs:annotation>
          <xs:documentation>Ashow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF002">
        <xs:annotation>
          <xs:documentation>Baddesley Clinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF003">
        <xs:annotation>
          <xs:documentation>Baginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF004">
        <xs:annotation>
          <xs:documentation>Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF005">
        <xs:annotation>
          <xs:documentation>Beausale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF006">
        <xs:annotation>
          <xs:documentation>Bishop's Tachbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF007">
        <xs:annotation>
          <xs:documentation>Blackdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF008">
        <xs:annotation>
          <xs:documentation>Bubbenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF009">
        <xs:annotation>
          <xs:documentation>Budbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF010">
        <xs:annotation>
          <xs:documentation>Bushwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF011">
        <xs:annotation>
          <xs:documentation>Cubbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF012">
        <xs:annotation>
          <xs:documentation>Eathorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF013">
        <xs:annotation>
          <xs:documentation>Haseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF014">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF015">
        <xs:annotation>
          <xs:documentation>Honiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF016">
        <xs:annotation>
          <xs:documentation>Hunningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF017">
        <xs:annotation>
          <xs:documentation>Kenilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF018">
        <xs:annotation>
          <xs:documentation>Lapworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF019">
        <xs:annotation>
          <xs:documentation>Leek Wootton and Guy's Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF020">
        <xs:annotation>
          <xs:documentation>Norton Lindsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF021">
        <xs:annotation>
          <xs:documentation>Offchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF022">
        <xs:annotation>
          <xs:documentation>Old Milverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF023">
        <xs:annotation>
          <xs:documentation>Radford Semele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF024">
        <xs:annotation>
          <xs:documentation>Rowington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF025">
        <xs:annotation>
          <xs:documentation>Sherbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF026">
        <xs:annotation>
          <xs:documentation>Shrewley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF027">
        <xs:annotation>
          <xs:documentation>Stoneleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF028">
        <xs:annotation>
          <xs:documentation>Wappenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF029">
        <xs:annotation>
          <xs:documentation>Warwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF030">
        <xs:annotation>
          <xs:documentation>Wasperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF031">
        <xs:annotation>
          <xs:documentation>Weston under Wetherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF032">
        <xs:annotation>
          <xs:documentation>Whitnash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF033">
        <xs:annotation>
          <xs:documentation>Wroxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UF034">
        <xs:annotation>
          <xs:documentation>Royal Leamington Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UB001">
        <xs:annotation>
          <xs:documentation>Coombes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UB002">
        <xs:annotation>
          <xs:documentation>Lancing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UB003">
        <xs:annotation>
          <xs:documentation>Sompting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC001">
        <xs:annotation>
          <xs:documentation>Aldingbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC002">
        <xs:annotation>
          <xs:documentation>Aldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC003">
        <xs:annotation>
          <xs:documentation>Angmering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC004">
        <xs:annotation>
          <xs:documentation>Arundel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC005">
        <xs:annotation>
          <xs:documentation>Barnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC006">
        <xs:annotation>
          <xs:documentation>Bersted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC007">
        <xs:annotation>
          <xs:documentation>Bognor Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC008">
        <xs:annotation>
          <xs:documentation>Burpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC009">
        <xs:annotation>
          <xs:documentation>Clapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC010">
        <xs:annotation>
          <xs:documentation>Climping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC011">
        <xs:annotation>
          <xs:documentation>Eastergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC012">
        <xs:annotation>
          <xs:documentation>East Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC013">
        <xs:annotation>
          <xs:documentation>Felpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC014">
        <xs:annotation>
          <xs:documentation>Ferring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC015">
        <xs:annotation>
          <xs:documentation>Findon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC016">
        <xs:annotation>
          <xs:documentation>Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC017">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC018">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC019">
        <xs:annotation>
          <xs:documentation>Littlehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC020">
        <xs:annotation>
          <xs:documentation>Lyminster and Crossbush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC021">
        <xs:annotation>
          <xs:documentation>Madehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC022">
        <xs:annotation>
          <xs:documentation>Middleton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC023">
        <xs:annotation>
          <xs:documentation>Pagham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC024">
        <xs:annotation>
          <xs:documentation>Patching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC025">
        <xs:annotation>
          <xs:documentation>Poling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC026">
        <xs:annotation>
          <xs:documentation>Rustington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC027">
        <xs:annotation>
          <xs:documentation>Slindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC028">
        <xs:annotation>
          <xs:documentation>South Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC029">
        <xs:annotation>
          <xs:documentation>Walberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC030">
        <xs:annotation>
          <xs:documentation>Warningcamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UC031">
        <xs:annotation>
          <xs:documentation>Yapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD001">
        <xs:annotation>
          <xs:documentation>Appledram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD002">
        <xs:annotation>
          <xs:documentation>Barlavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD003">
        <xs:annotation>
          <xs:documentation>Bepton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD004">
        <xs:annotation>
          <xs:documentation>Bignor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD005">
        <xs:annotation>
          <xs:documentation>Birdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD006">
        <xs:annotation>
          <xs:documentation>Bosham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD007">
        <xs:annotation>
          <xs:documentation>Boxgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD008">
        <xs:annotation>
          <xs:documentation>Bury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD009">
        <xs:annotation>
          <xs:documentation>Chichester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD010">
        <xs:annotation>
          <xs:documentation>Chidham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD011">
        <xs:annotation>
          <xs:documentation>Cocking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD012">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD013">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD014">
        <xs:annotation>
          <xs:documentation>Duncton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD015">
        <xs:annotation>
          <xs:documentation>Earnley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD016">
        <xs:annotation>
          <xs:documentation>Eartham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD017">
        <xs:annotation>
          <xs:documentation>Easebourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD018">
        <xs:annotation>
          <xs:documentation>East Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD019">
        <xs:annotation>
          <xs:documentation>East Lavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD020">
        <xs:annotation>
          <xs:documentation>East Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD021">
        <xs:annotation>
          <xs:documentation>Ebernoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD023">
        <xs:annotation>
          <xs:documentation>Fernhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD024">
        <xs:annotation>
          <xs:documentation>Fishbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD025">
        <xs:annotation>
          <xs:documentation>Fittleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD026">
        <xs:annotation>
          <xs:documentation>Funtington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD027">
        <xs:annotation>
          <xs:documentation>Graffham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD028">
        <xs:annotation>
          <xs:documentation>Harting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD029">
        <xs:annotation>
          <xs:documentation>Heyshott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD030">
        <xs:annotation>
          <xs:documentation>Hunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD031">
        <xs:annotation>
          <xs:documentation>Kirdford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD032">
        <xs:annotation>
          <xs:documentation>Lavant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD033">
        <xs:annotation>
          <xs:documentation>Linch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD034">
        <xs:annotation>
          <xs:documentation>Linchmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD035">
        <xs:annotation>
          <xs:documentation>Lodsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD036">
        <xs:annotation>
          <xs:documentation>Loxwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD037">
        <xs:annotation>
          <xs:documentation>Lurgashall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD038">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD039">
        <xs:annotation>
          <xs:documentation>Midhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD040">
        <xs:annotation>
          <xs:documentation>Milland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD041">
        <xs:annotation>
          <xs:documentation>Northchapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD042">
        <xs:annotation>
          <xs:documentation>North Mundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD043">
        <xs:annotation>
          <xs:documentation>Oving</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD044">
        <xs:annotation>
          <xs:documentation>Petworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD045">
        <xs:annotation>
          <xs:documentation>Plaistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD046">
        <xs:annotation>
          <xs:documentation>Rogate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD047">
        <xs:annotation>
          <xs:documentation>Selsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD048">
        <xs:annotation>
          <xs:documentation>Sidlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD049">
        <xs:annotation>
          <xs:documentation>Singleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD050">
        <xs:annotation>
          <xs:documentation>Southbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD051">
        <xs:annotation>
          <xs:documentation>Stedham with Iping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD052">
        <xs:annotation>
          <xs:documentation>Stopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD053">
        <xs:annotation>
          <xs:documentation>Stoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD054">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD055">
        <xs:annotation>
          <xs:documentation>Tangmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD056">
        <xs:annotation>
          <xs:documentation>Tillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD058">
        <xs:annotation>
          <xs:documentation>Trotton with Chithurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD059">
        <xs:annotation>
          <xs:documentation>Upwaltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD060">
        <xs:annotation>
          <xs:documentation>Westbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD061">
        <xs:annotation>
          <xs:documentation>West Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD062">
        <xs:annotation>
          <xs:documentation>Westhampnett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD063">
        <xs:annotation>
          <xs:documentation>West Itchenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD064">
        <xs:annotation>
          <xs:documentation>West Lavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD065">
        <xs:annotation>
          <xs:documentation>West Thorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD066">
        <xs:annotation>
          <xs:documentation>West Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD067">
        <xs:annotation>
          <xs:documentation>Wisborough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD068">
        <xs:annotation>
          <xs:documentation>Woolbeding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UD069">
        <xs:annotation>
          <xs:documentation>Elsted and Treyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF001">
        <xs:annotation>
          <xs:documentation>Amberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF002">
        <xs:annotation>
          <xs:documentation>Ashington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF003">
        <xs:annotation>
          <xs:documentation>Ashurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF004">
        <xs:annotation>
          <xs:documentation>Billingshurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF005">
        <xs:annotation>
          <xs:documentation>Bramber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF006">
        <xs:annotation>
          <xs:documentation>Broadbridge Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF007">
        <xs:annotation>
          <xs:documentation>Coldwaltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF008">
        <xs:annotation>
          <xs:documentation>Colgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF009">
        <xs:annotation>
          <xs:documentation>Cowfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF010">
        <xs:annotation>
          <xs:documentation>Henfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF011">
        <xs:annotation>
          <xs:documentation>Itchingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF012">
        <xs:annotation>
          <xs:documentation>Lower Beeding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF013">
        <xs:annotation>
          <xs:documentation>North Horsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF014">
        <xs:annotation>
          <xs:documentation>Nuthurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF015">
        <xs:annotation>
          <xs:documentation>Parham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF016">
        <xs:annotation>
          <xs:documentation>Pulborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF017">
        <xs:annotation>
          <xs:documentation>Rudgwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF018">
        <xs:annotation>
          <xs:documentation>Rusper</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF019">
        <xs:annotation>
          <xs:documentation>Shermanbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF020">
        <xs:annotation>
          <xs:documentation>Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF021">
        <xs:annotation>
          <xs:documentation>Slinfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF022">
        <xs:annotation>
          <xs:documentation>Southwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF023">
        <xs:annotation>
          <xs:documentation>Steyning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF026">
        <xs:annotation>
          <xs:documentation>Thakeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF027">
        <xs:annotation>
          <xs:documentation>Upper Beeding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF028">
        <xs:annotation>
          <xs:documentation>Warnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF029">
        <xs:annotation>
          <xs:documentation>Washington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF030">
        <xs:annotation>
          <xs:documentation>West Chiltington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF031">
        <xs:annotation>
          <xs:documentation>West Grinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF032">
        <xs:annotation>
          <xs:documentation>Wiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF033">
        <xs:annotation>
          <xs:documentation>Woodmancote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UF034">
        <xs:annotation>
          <xs:documentation>Storrington and Sullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG001">
        <xs:annotation>
          <xs:documentation>Albourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG002">
        <xs:annotation>
          <xs:documentation>Ardingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG003">
        <xs:annotation>
          <xs:documentation>Balcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG004">
        <xs:annotation>
          <xs:documentation>Bolney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG005">
        <xs:annotation>
          <xs:documentation>Burgess Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG007">
        <xs:annotation>
          <xs:documentation>Cuckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG008">
        <xs:annotation>
          <xs:documentation>Cuckfield Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG009">
        <xs:annotation>
          <xs:documentation>East Grinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG010">
        <xs:annotation>
          <xs:documentation>Fulking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG011">
        <xs:annotation>
          <xs:documentation>Haywards Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG012">
        <xs:annotation>
          <xs:documentation>Horsted Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG013">
        <xs:annotation>
          <xs:documentation>Hurstpierpoint and Sayers Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG015">
        <xs:annotation>
          <xs:documentation>Lindfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG016">
        <xs:annotation>
          <xs:documentation>Lindfield Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG017">
        <xs:annotation>
          <xs:documentation>Newtimber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG018">
        <xs:annotation>
          <xs:documentation>Poynings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG019">
        <xs:annotation>
          <xs:documentation>Pyecombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG020">
        <xs:annotation>
          <xs:documentation>Slaugham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG021">
        <xs:annotation>
          <xs:documentation>Turners Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG022">
        <xs:annotation>
          <xs:documentation>Twineham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG023">
        <xs:annotation>
          <xs:documentation>West Hoathly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG024">
        <xs:annotation>
          <xs:documentation>Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG025">
        <xs:annotation>
          <xs:documentation>Ashurst Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UG026">
        <xs:annotation>
          <xs:documentation>Hassocks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB001">
        <xs:annotation>
          <xs:documentation>Aldbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB002">
        <xs:annotation>
          <xs:documentation>Allcannings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB003">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB004">
        <xs:annotation>
          <xs:documentation>Avebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB005">
        <xs:annotation>
          <xs:documentation>Baydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB006">
        <xs:annotation>
          <xs:documentation>Beechingstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB007">
        <xs:annotation>
          <xs:documentation>Berwick Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB008">
        <xs:annotation>
          <xs:documentation>Bishops Cannings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB009">
        <xs:annotation>
          <xs:documentation>Broad Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB010">
        <xs:annotation>
          <xs:documentation>Bromham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB011">
        <xs:annotation>
          <xs:documentation>Burbage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB012">
        <xs:annotation>
          <xs:documentation>Buttermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB013">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB014">
        <xs:annotation>
          <xs:documentation>Cheverell Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB015">
        <xs:annotation>
          <xs:documentation>Cheverell Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB016">
        <xs:annotation>
          <xs:documentation>Chilton Foliat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB017">
        <xs:annotation>
          <xs:documentation>Chirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB018">
        <xs:annotation>
          <xs:documentation>Chute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB019">
        <xs:annotation>
          <xs:documentation>Chute Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB020">
        <xs:annotation>
          <xs:documentation>Collingbourne Ducis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB021">
        <xs:annotation>
          <xs:documentation>Collingbourne Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB022">
        <xs:annotation>
          <xs:documentation>Devizes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB023">
        <xs:annotation>
          <xs:documentation>Easterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB024">
        <xs:annotation>
          <xs:documentation>East Kennett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB025">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB026">
        <xs:annotation>
          <xs:documentation>Enford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB027">
        <xs:annotation>
          <xs:documentation>Erlestoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB028">
        <xs:annotation>
          <xs:documentation>Etchilhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB029">
        <xs:annotation>
          <xs:documentation>Everleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB030">
        <xs:annotation>
          <xs:documentation>Fittleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB031">
        <xs:annotation>
          <xs:documentation>Froxfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB032">
        <xs:annotation>
          <xs:documentation>Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB033">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB034">
        <xs:annotation>
          <xs:documentation>Great Bedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB035">
        <xs:annotation>
          <xs:documentation>Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB036">
        <xs:annotation>
          <xs:documentation>Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB037">
        <xs:annotation>
          <xs:documentation>Little Bedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB038">
        <xs:annotation>
          <xs:documentation>Ludgershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB039">
        <xs:annotation>
          <xs:documentation>Manningford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB040">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB041">
        <xs:annotation>
          <xs:documentation>Market Lavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB042">
        <xs:annotation>
          <xs:documentation>Marlborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB043">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB044">
        <xs:annotation>
          <xs:documentation>Mildenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB045">
        <xs:annotation>
          <xs:documentation>Milton Lilbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB046">
        <xs:annotation>
          <xs:documentation>Netheravon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB047">
        <xs:annotation>
          <xs:documentation>North Newnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB049">
        <xs:annotation>
          <xs:documentation>Ogbourne St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB050">
        <xs:annotation>
          <xs:documentation>Ogbourne St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB051">
        <xs:annotation>
          <xs:documentation>Patney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB052">
        <xs:annotation>
          <xs:documentation>Pewsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB053">
        <xs:annotation>
          <xs:documentation>Potterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB054">
        <xs:annotation>
          <xs:documentation>Poulshot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB055">
        <xs:annotation>
          <xs:documentation>Preshute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB056">
        <xs:annotation>
          <xs:documentation>Ramsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB057">
        <xs:annotation>
          <xs:documentation>Roundway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB058">
        <xs:annotation>
          <xs:documentation>Rowde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB059">
        <xs:annotation>
          <xs:documentation>Rushall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB060">
        <xs:annotation>
          <xs:documentation>Savernake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB061">
        <xs:annotation>
          <xs:documentation>Seend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB062">
        <xs:annotation>
          <xs:documentation>Shalbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB063">
        <xs:annotation>
          <xs:documentation>Stanton St. Bernard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB064">
        <xs:annotation>
          <xs:documentation>Stert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB065">
        <xs:annotation>
          <xs:documentation>Tidcombe and Fosbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB066">
        <xs:annotation>
          <xs:documentation>Upavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB067">
        <xs:annotation>
          <xs:documentation>Urchfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB068">
        <xs:annotation>
          <xs:documentation>West Lavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB069">
        <xs:annotation>
          <xs:documentation>West Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB070">
        <xs:annotation>
          <xs:documentation>Wilcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB071">
        <xs:annotation>
          <xs:documentation>Wilsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB072">
        <xs:annotation>
          <xs:documentation>Winterbourne Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB073">
        <xs:annotation>
          <xs:documentation>Winterbourne Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB074">
        <xs:annotation>
          <xs:documentation>Woodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB075">
        <xs:annotation>
          <xs:documentation>Wootton Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB076">
        <xs:annotation>
          <xs:documentation>Worton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UB078">
        <xs:annotation>
          <xs:documentation>Tidworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC001">
        <xs:annotation>
          <xs:documentation>Ashton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC002">
        <xs:annotation>
          <xs:documentation>Biddestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC003">
        <xs:annotation>
          <xs:documentation>Box</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC004">
        <xs:annotation>
          <xs:documentation>Braydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC005">
        <xs:annotation>
          <xs:documentation>Bremhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC006">
        <xs:annotation>
          <xs:documentation>Brinkworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC007">
        <xs:annotation>
          <xs:documentation>Broad Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC008">
        <xs:annotation>
          <xs:documentation>Brokenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC009">
        <xs:annotation>
          <xs:documentation>Calne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC010">
        <xs:annotation>
          <xs:documentation>Calne Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC011">
        <xs:annotation>
          <xs:documentation>Castle Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC012">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC013">
        <xs:annotation>
          <xs:documentation>Cherhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC014">
        <xs:annotation>
          <xs:documentation>Chippenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC015">
        <xs:annotation>
          <xs:documentation>Chippenham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC016">
        <xs:annotation>
          <xs:documentation>Christian Malford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC017">
        <xs:annotation>
          <xs:documentation>Clyffe Pypard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC018">
        <xs:annotation>
          <xs:documentation>Colerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC019">
        <xs:annotation>
          <xs:documentation>Compton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC020">
        <xs:annotation>
          <xs:documentation>Corsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC021">
        <xs:annotation>
          <xs:documentation>Cricklade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC022">
        <xs:annotation>
          <xs:documentation>Crudwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC023">
        <xs:annotation>
          <xs:documentation>Dauntsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC024">
        <xs:annotation>
          <xs:documentation>Easton Grey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC025">
        <xs:annotation>
          <xs:documentation>Great Somerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC026">
        <xs:annotation>
          <xs:documentation>Grittleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC027">
        <xs:annotation>
          <xs:documentation>Hankerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC028">
        <xs:annotation>
          <xs:documentation>Heddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC029">
        <xs:annotation>
          <xs:documentation>Hilmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC030">
        <xs:annotation>
          <xs:documentation>Hullavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC031">
        <xs:annotation>
          <xs:documentation>Kington Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC032">
        <xs:annotation>
          <xs:documentation>Kington St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC033">
        <xs:annotation>
          <xs:documentation>Lacock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC034">
        <xs:annotation>
          <xs:documentation>Langley Burrell Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC035">
        <xs:annotation>
          <xs:documentation>Latton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC036">
        <xs:annotation>
          <xs:documentation>Lea and Cleverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC037">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC038">
        <xs:annotation>
          <xs:documentation>Little Somerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC039">
        <xs:annotation>
          <xs:documentation>Luckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC040">
        <xs:annotation>
          <xs:documentation>Lydiard Millicent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC041">
        <xs:annotation>
          <xs:documentation>Lydiard Tregoze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC042">
        <xs:annotation>
          <xs:documentation>Lyneham and Bradenstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC043">
        <xs:annotation>
          <xs:documentation>Malmesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC044">
        <xs:annotation>
          <xs:documentation>Marston Maisey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC045">
        <xs:annotation>
          <xs:documentation>Minety</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC046">
        <xs:annotation>
          <xs:documentation>Nettleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC047">
        <xs:annotation>
          <xs:documentation>North Wraxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC048">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC049">
        <xs:annotation>
          <xs:documentation>Oaksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC050">
        <xs:annotation>
          <xs:documentation>Purton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC051">
        <xs:annotation>
          <xs:documentation>St. Paul Malmesbury Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC052">
        <xs:annotation>
          <xs:documentation>Seagry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC053">
        <xs:annotation>
          <xs:documentation>Sherston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC054">
        <xs:annotation>
          <xs:documentation>Sopworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC055">
        <xs:annotation>
          <xs:documentation>Stanton St. Quintin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC056">
        <xs:annotation>
          <xs:documentation>Sutton Benger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC057">
        <xs:annotation>
          <xs:documentation>Tockenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC058">
        <xs:annotation>
          <xs:documentation>Wootton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UC059">
        <xs:annotation>
          <xs:documentation>Yatton Keynell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD001">
        <xs:annotation>
          <xs:documentation>Alderbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD002">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD003">
        <xs:annotation>
          <xs:documentation>Alvediston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD004">
        <xs:annotation>
          <xs:documentation>Amesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD005">
        <xs:annotation>
          <xs:documentation>Ansty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD006">
        <xs:annotation>
          <xs:documentation>Barford St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD007">
        <xs:annotation>
          <xs:documentation>Berwick St. James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD008">
        <xs:annotation>
          <xs:documentation>Berwick St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD009">
        <xs:annotation>
          <xs:documentation>Berwick St. Leonard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD010">
        <xs:annotation>
          <xs:documentation>Bishopstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD011">
        <xs:annotation>
          <xs:documentation>Bower Chalke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD012">
        <xs:annotation>
          <xs:documentation>Britford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD013">
        <xs:annotation>
          <xs:documentation>Broad Chalke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD014">
        <xs:annotation>
          <xs:documentation>Bulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD015">
        <xs:annotation>
          <xs:documentation>Burcombe Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD016">
        <xs:annotation>
          <xs:documentation>Chicklade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD017">
        <xs:annotation>
          <xs:documentation>Chilmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD018">
        <xs:annotation>
          <xs:documentation>Cholderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD019">
        <xs:annotation>
          <xs:documentation>Clarendon Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD020">
        <xs:annotation>
          <xs:documentation>Compton Chamberlayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD021">
        <xs:annotation>
          <xs:documentation>Coombe Bissett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD022">
        <xs:annotation>
          <xs:documentation>Dinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD023">
        <xs:annotation>
          <xs:documentation>Donhead St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD024">
        <xs:annotation>
          <xs:documentation>Donhead St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD025">
        <xs:annotation>
          <xs:documentation>Downton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD026">
        <xs:annotation>
          <xs:documentation>Durnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD027">
        <xs:annotation>
          <xs:documentation>Durrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD028">
        <xs:annotation>
          <xs:documentation>East Knoyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD029">
        <xs:annotation>
          <xs:documentation>Ebbesborne Wake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD030">
        <xs:annotation>
          <xs:documentation>Figheldean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD031">
        <xs:annotation>
          <xs:documentation>Firsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD032">
        <xs:annotation>
          <xs:documentation>Fonthill Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD033">
        <xs:annotation>
          <xs:documentation>Fonthill Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD034">
        <xs:annotation>
          <xs:documentation>Fovant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD035">
        <xs:annotation>
          <xs:documentation>Great Wishford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD036">
        <xs:annotation>
          <xs:documentation>Grimstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD037">
        <xs:annotation>
          <xs:documentation>Hindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD038">
        <xs:annotation>
          <xs:documentation>Idmiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD039">
        <xs:annotation>
          <xs:documentation>Kilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD040">
        <xs:annotation>
          <xs:documentation>Landford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD041">
        <xs:annotation>
          <xs:documentation>Laverstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD042">
        <xs:annotation>
          <xs:documentation>Maiden Bradley with Yarnfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD043">
        <xs:annotation>
          <xs:documentation>Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD044">
        <xs:annotation>
          <xs:documentation>Milston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD045">
        <xs:annotation>
          <xs:documentation>Netherhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD046">
        <xs:annotation>
          <xs:documentation>Newton Tony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD047">
        <xs:annotation>
          <xs:documentation>Odstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD048">
        <xs:annotation>
          <xs:documentation>Orcheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD049">
        <xs:annotation>
          <xs:documentation>Pitton and Farley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD050">
        <xs:annotation>
          <xs:documentation>Quidhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD051">
        <xs:annotation>
          <xs:documentation>Redlynch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD052">
        <xs:annotation>
          <xs:documentation>Sedgehill and Semley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD053">
        <xs:annotation>
          <xs:documentation>Shrewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD054">
        <xs:annotation>
          <xs:documentation>South Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD055">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD056">
        <xs:annotation>
          <xs:documentation>Steeple Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD057">
        <xs:annotation>
          <xs:documentation>Stourton with Gasper</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD058">
        <xs:annotation>
          <xs:documentation>Stratford Toney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD059">
        <xs:annotation>
          <xs:documentation>Sutton Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD060">
        <xs:annotation>
          <xs:documentation>Swallowcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD061">
        <xs:annotation>
          <xs:documentation>Teffont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD062">
        <xs:annotation>
          <xs:documentation>Tilshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD063">
        <xs:annotation>
          <xs:documentation>Tisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD064">
        <xs:annotation>
          <xs:documentation>Tollard Royal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD065">
        <xs:annotation>
          <xs:documentation>West Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD066">
        <xs:annotation>
          <xs:documentation>West Knoyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD067">
        <xs:annotation>
          <xs:documentation>West Tisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD068">
        <xs:annotation>
          <xs:documentation>Whiteparish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD069">
        <xs:annotation>
          <xs:documentation>Wilsford cum Lake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD070">
        <xs:annotation>
          <xs:documentation>Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD071">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD072">
        <xs:annotation>
          <xs:documentation>Winterbourne Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD073">
        <xs:annotation>
          <xs:documentation>Winterslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD074">
        <xs:annotation>
          <xs:documentation>Woodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD075">
        <xs:annotation>
          <xs:documentation>Wylye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UD076">
        <xs:annotation>
          <xs:documentation>Zeals</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF001">
        <xs:annotation>
          <xs:documentation>Atworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF002">
        <xs:annotation>
          <xs:documentation>Bishopstrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF003">
        <xs:annotation>
          <xs:documentation>Boyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF004">
        <xs:annotation>
          <xs:documentation>Bradford-on-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF005">
        <xs:annotation>
          <xs:documentation>Bratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF006">
        <xs:annotation>
          <xs:documentation>Brixton Deverill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF007">
        <xs:annotation>
          <xs:documentation>Broughton Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF008">
        <xs:annotation>
          <xs:documentation>Bulkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF009">
        <xs:annotation>
          <xs:documentation>Chapmanslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF010">
        <xs:annotation>
          <xs:documentation>Chitterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF011">
        <xs:annotation>
          <xs:documentation>Codford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF012">
        <xs:annotation>
          <xs:documentation>Corsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF013">
        <xs:annotation>
          <xs:documentation>Coulston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF014">
        <xs:annotation>
          <xs:documentation>Dilton Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF015">
        <xs:annotation>
          <xs:documentation>Edington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF016">
        <xs:annotation>
          <xs:documentation>Great Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF017">
        <xs:annotation>
          <xs:documentation>Heytesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF018">
        <xs:annotation>
          <xs:documentation>Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF019">
        <xs:annotation>
          <xs:documentation>Hilperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF020">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF021">
        <xs:annotation>
          <xs:documentation>Horningsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF022">
        <xs:annotation>
          <xs:documentation>Keevil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF023">
        <xs:annotation>
          <xs:documentation>Kingston Deverill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF024">
        <xs:annotation>
          <xs:documentation>Knook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF025">
        <xs:annotation>
          <xs:documentation>Limpley Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF026">
        <xs:annotation>
          <xs:documentation>Longbridge Deverill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF027">
        <xs:annotation>
          <xs:documentation>Melksham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF028">
        <xs:annotation>
          <xs:documentation>Melksham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF029">
        <xs:annotation>
          <xs:documentation>Monkton Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF030">
        <xs:annotation>
          <xs:documentation>North Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF031">
        <xs:annotation>
          <xs:documentation>Norton Bavant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF032">
        <xs:annotation>
          <xs:documentation>Semington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF033">
        <xs:annotation>
          <xs:documentation>Sherrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF034">
        <xs:annotation>
          <xs:documentation>Southwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF035">
        <xs:annotation>
          <xs:documentation>South Wraxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF036">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF037">
        <xs:annotation>
          <xs:documentation>Steeple Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF038">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF039">
        <xs:annotation>
          <xs:documentation>Sutton Veny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF040">
        <xs:annotation>
          <xs:documentation>Trowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF041">
        <xs:annotation>
          <xs:documentation>Upton Lovell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF042">
        <xs:annotation>
          <xs:documentation>Upton Scudamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF043">
        <xs:annotation>
          <xs:documentation>Warminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF044">
        <xs:annotation>
          <xs:documentation>West Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF045">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF046">
        <xs:annotation>
          <xs:documentation>Westwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF047">
        <xs:annotation>
          <xs:documentation>Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF048">
        <xs:annotation>
          <xs:documentation>Winsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UF049">
        <xs:annotation>
          <xs:documentation>Lands common to the parishes of Broughton Gifford and Melksham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB001">
        <xs:annotation>
          <xs:documentation>Alvechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB002">
        <xs:annotation>
          <xs:documentation>Belbroughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB003">
        <xs:annotation>
          <xs:documentation>Bentley Pauncefoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB004">
        <xs:annotation>
          <xs:documentation>Beoley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB005">
        <xs:annotation>
          <xs:documentation>Clent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB006">
        <xs:annotation>
          <xs:documentation>Cofton Hackett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB007">
        <xs:annotation>
          <xs:documentation>Dodford with Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB008">
        <xs:annotation>
          <xs:documentation>Frankley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB009">
        <xs:annotation>
          <xs:documentation>Hagley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB010">
        <xs:annotation>
          <xs:documentation>Hunnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB011">
        <xs:annotation>
          <xs:documentation>Romsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB012">
        <xs:annotation>
          <xs:documentation>Stoke Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB013">
        <xs:annotation>
          <xs:documentation>Tutnall and Cobley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB014">
        <xs:annotation>
          <xs:documentation>Wythall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB015">
        <xs:annotation>
          <xs:documentation>Barnt Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB016">
        <xs:annotation>
          <xs:documentation>Bournheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB017">
        <xs:annotation>
          <xs:documentation>Catshill and North Marlbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB018">
        <xs:annotation>
          <xs:documentation>Finstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB019">
        <xs:annotation>
          <xs:documentation>Lickey and Blackwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UB020">
        <xs:annotation>
          <xs:documentation>Lickey End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC001">
        <xs:annotation>
          <xs:documentation>Abberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC002">
        <xs:annotation>
          <xs:documentation>Alfrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC003">
        <xs:annotation>
          <xs:documentation>Astley and Dunley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC004">
        <xs:annotation>
          <xs:documentation>Bayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC005">
        <xs:annotation>
          <xs:documentation>Berrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC006">
        <xs:annotation>
          <xs:documentation>Birtsmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC007">
        <xs:annotation>
          <xs:documentation>Bockleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC008">
        <xs:annotation>
          <xs:documentation>Bransford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC009">
        <xs:annotation>
          <xs:documentation>Broadheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC010">
        <xs:annotation>
          <xs:documentation>Broadwas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC011">
        <xs:annotation>
          <xs:documentation>Bushley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC012">
        <xs:annotation>
          <xs:documentation>Castlemorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC013">
        <xs:annotation>
          <xs:documentation>Clifton upon Teme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC014">
        <xs:annotation>
          <xs:documentation>Cotheridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC015">
        <xs:annotation>
          <xs:documentation>Croome D'Abitot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC016">
        <xs:annotation>
          <xs:documentation>Doddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC017">
        <xs:annotation>
          <xs:documentation>Earl's Croome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC018">
        <xs:annotation>
          <xs:documentation>Eastham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC019">
        <xs:annotation>
          <xs:documentation>Eldersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC020">
        <xs:annotation>
          <xs:documentation>Great Witley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC021">
        <xs:annotation>
          <xs:documentation>Grimley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC022">
        <xs:annotation>
          <xs:documentation>Guarlford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC023">
        <xs:annotation>
          <xs:documentation>Hallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC024">
        <xs:annotation>
          <xs:documentation>Hanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC025">
        <xs:annotation>
          <xs:documentation>Hanley Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC026">
        <xs:annotation>
          <xs:documentation>Hill Croome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC027">
        <xs:annotation>
          <xs:documentation>Hillhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC028">
        <xs:annotation>
          <xs:documentation>Holdfast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC029">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC030">
        <xs:annotation>
          <xs:documentation>Kempsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC031">
        <xs:annotation>
          <xs:documentation>Kenswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC032">
        <xs:annotation>
          <xs:documentation>Knighton on Teme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC033">
        <xs:annotation>
          <xs:documentation>Knightwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC034">
        <xs:annotation>
          <xs:documentation>Kyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC035">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC036">
        <xs:annotation>
          <xs:documentation>Lindridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC037">
        <xs:annotation>
          <xs:documentation>Little Malvern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC038">
        <xs:annotation>
          <xs:documentation>Little Witley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC039">
        <xs:annotation>
          <xs:documentation>Longdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC040">
        <xs:annotation>
          <xs:documentation>Lower Sapey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC041">
        <xs:annotation>
          <xs:documentation>Lulsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC042">
        <xs:annotation>
          <xs:documentation>Madresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC043">
        <xs:annotation>
          <xs:documentation>Malvern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC044">
        <xs:annotation>
          <xs:documentation>Malvern Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC045">
        <xs:annotation>
          <xs:documentation>Mamble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC046">
        <xs:annotation>
          <xs:documentation>Martley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC047">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC048">
        <xs:annotation>
          <xs:documentation>Pendock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC049">
        <xs:annotation>
          <xs:documentation>Pensax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC050">
        <xs:annotation>
          <xs:documentation>Powick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC051">
        <xs:annotation>
          <xs:documentation>Queenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC052">
        <xs:annotation>
          <xs:documentation>Ripple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC053">
        <xs:annotation>
          <xs:documentation>Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC054">
        <xs:annotation>
          <xs:documentation>Rushwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC055">
        <xs:annotation>
          <xs:documentation>Severn Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC056">
        <xs:annotation>
          <xs:documentation>Shelsley Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC057">
        <xs:annotation>
          <xs:documentation>Shelsley Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC058">
        <xs:annotation>
          <xs:documentation>Shelsley Walsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC059">
        <xs:annotation>
          <xs:documentation>Shrawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC060">
        <xs:annotation>
          <xs:documentation>Stanford with Orleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC061">
        <xs:annotation>
          <xs:documentation>Stockton on Teme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC062">
        <xs:annotation>
          <xs:documentation>Stoke Bliss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC063">
        <xs:annotation>
          <xs:documentation>Suckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC064">
        <xs:annotation>
          <xs:documentation>Tenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC065">
        <xs:annotation>
          <xs:documentation>Upton-upon-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC066">
        <xs:annotation>
          <xs:documentation>Welland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC067">
        <xs:annotation>
          <xs:documentation>West Malvern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UC068">
        <xs:annotation>
          <xs:documentation>Wichenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UD001">
        <xs:annotation>
          <xs:documentation>Feckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UE001">
        <xs:annotation>
          <xs:documentation>St. Peter the Great County</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UE002">
        <xs:annotation>
          <xs:documentation>Warndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF001">
        <xs:annotation>
          <xs:documentation>Abberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF002">
        <xs:annotation>
          <xs:documentation>Abbots Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF003">
        <xs:annotation>
          <xs:documentation>Aldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF004">
        <xs:annotation>
          <xs:documentation>Ashton under Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF005">
        <xs:annotation>
          <xs:documentation>Aston Somerville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF006">
        <xs:annotation>
          <xs:documentation>Badsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF007">
        <xs:annotation>
          <xs:documentation>Beckford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF008">
        <xs:annotation>
          <xs:documentation>Besford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF009">
        <xs:annotation>
          <xs:documentation>Bickmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF010">
        <xs:annotation>
          <xs:documentation>Birlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF011">
        <xs:annotation>
          <xs:documentation>Bishampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF012">
        <xs:annotation>
          <xs:documentation>Bredicot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF013">
        <xs:annotation>
          <xs:documentation>Bredon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF014">
        <xs:annotation>
          <xs:documentation>Bredon's Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF015">
        <xs:annotation>
          <xs:documentation>Bretforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF016">
        <xs:annotation>
          <xs:documentation>Bricklehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF017">
        <xs:annotation>
          <xs:documentation>Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF018">
        <xs:annotation>
          <xs:documentation>Broughton Hackett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF019">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF020">
        <xs:annotation>
          <xs:documentation>Childswickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF021">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF022">
        <xs:annotation>
          <xs:documentation>Church Lench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF023">
        <xs:annotation>
          <xs:documentation>Cleeve Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF024">
        <xs:annotation>
          <xs:documentation>Conderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF025">
        <xs:annotation>
          <xs:documentation>Cookhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF026">
        <xs:annotation>
          <xs:documentation>Cropthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF027">
        <xs:annotation>
          <xs:documentation>Crowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF028">
        <xs:annotation>
          <xs:documentation>Defford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF029">
        <xs:annotation>
          <xs:documentation>Dodderhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF030">
        <xs:annotation>
          <xs:documentation>Dormston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF031">
        <xs:annotation>
          <xs:documentation>Doverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF032">
        <xs:annotation>
          <xs:documentation>Drakes Broughton and Wadborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF033">
        <xs:annotation>
          <xs:documentation>Droitwich Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF034">
        <xs:annotation>
          <xs:documentation>Eckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF035">
        <xs:annotation>
          <xs:documentation>Elmbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF036">
        <xs:annotation>
          <xs:documentation>Elmley Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF037">
        <xs:annotation>
          <xs:documentation>Elmley Lovett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF038">
        <xs:annotation>
          <xs:documentation>Evesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF039">
        <xs:annotation>
          <xs:documentation>Fladbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF040">
        <xs:annotation>
          <xs:documentation>Flyford Flavell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF041">
        <xs:annotation>
          <xs:documentation>Grafton Flyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF042">
        <xs:annotation>
          <xs:documentation>Great Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF043">
        <xs:annotation>
          <xs:documentation>Hadzor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF044">
        <xs:annotation>
          <xs:documentation>Hampton Lovett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF045">
        <xs:annotation>
          <xs:documentation>Hanbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF046">
        <xs:annotation>
          <xs:documentation>Hartlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF047">
        <xs:annotation>
          <xs:documentation>Harvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF048">
        <xs:annotation>
          <xs:documentation>Hill and Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF049">
        <xs:annotation>
          <xs:documentation>Himbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF050">
        <xs:annotation>
          <xs:documentation>Hindlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF051">
        <xs:annotation>
          <xs:documentation>Hinton on the Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF052">
        <xs:annotation>
          <xs:documentation>Honeybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF053">
        <xs:annotation>
          <xs:documentation>Huddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF054">
        <xs:annotation>
          <xs:documentation>Inkberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF055">
        <xs:annotation>
          <xs:documentation>Kemerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF056">
        <xs:annotation>
          <xs:documentation>Kington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF057">
        <xs:annotation>
          <xs:documentation>Little Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF058">
        <xs:annotation>
          <xs:documentation>Martin Hussingtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF059">
        <xs:annotation>
          <xs:documentation>Naunton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF060">
        <xs:annotation>
          <xs:documentation>Netherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF061">
        <xs:annotation>
          <xs:documentation>North and Middle Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF062">
        <xs:annotation>
          <xs:documentation>North Claines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF063">
        <xs:annotation>
          <xs:documentation>North Piddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF064">
        <xs:annotation>
          <xs:documentation>Norton and Lenchwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF065">
        <xs:annotation>
          <xs:documentation>Norton Juxta Kempsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF066">
        <xs:annotation>
          <xs:documentation>Oddingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF067">
        <xs:annotation>
          <xs:documentation>Offenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF068">
        <xs:annotation>
          <xs:documentation>Ombersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF069">
        <xs:annotation>
          <xs:documentation>Overbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF070">
        <xs:annotation>
          <xs:documentation>Pebworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF071">
        <xs:annotation>
          <xs:documentation>Peopleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF072">
        <xs:annotation>
          <xs:documentation>Pershore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF073">
        <xs:annotation>
          <xs:documentation>Pinvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF074">
        <xs:annotation>
          <xs:documentation>Pirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF075">
        <xs:annotation>
          <xs:documentation>Rous Lench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF076">
        <xs:annotation>
          <xs:documentation>Salwarpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF077">
        <xs:annotation>
          <xs:documentation>Sedgeberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF078">
        <xs:annotation>
          <xs:documentation>South Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF079">
        <xs:annotation>
          <xs:documentation>Spetchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF080">
        <xs:annotation>
          <xs:documentation>Stock and Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF081">
        <xs:annotation>
          <xs:documentation>Stoulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF082">
        <xs:annotation>
          <xs:documentation>Strensham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF083">
        <xs:annotation>
          <xs:documentation>Throckmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF084">
        <xs:annotation>
          <xs:documentation>Tibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF085">
        <xs:annotation>
          <xs:documentation>Upton Snodsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF086">
        <xs:annotation>
          <xs:documentation>Upton Warren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF087">
        <xs:annotation>
          <xs:documentation>Westwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF088">
        <xs:annotation>
          <xs:documentation>White Ladies Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF089">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF090">
        <xs:annotation>
          <xs:documentation>Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF091">
        <xs:annotation>
          <xs:documentation>Wickhamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UF092">
        <xs:annotation>
          <xs:documentation>Wyre Piddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG001">
        <xs:annotation>
          <xs:documentation>Bewdley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG002">
        <xs:annotation>
          <xs:documentation>Broome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG003">
        <xs:annotation>
          <xs:documentation>Chaddesley Corbett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG004">
        <xs:annotation>
          <xs:documentation>Churchill and Blakedown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG005">
        <xs:annotation>
          <xs:documentation>Kidderminster Foreign</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG006">
        <xs:annotation>
          <xs:documentation>Ribbesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG007">
        <xs:annotation>
          <xs:documentation>Rock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG008">
        <xs:annotation>
          <xs:documentation>Rushock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG009">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG010">
        <xs:annotation>
          <xs:documentation>Stourport-on-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG011">
        <xs:annotation>
          <xs:documentation>Upper Arley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UG012">
        <xs:annotation>
          <xs:documentation>Wolverley and Cookley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSWardCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="00AAFA">
        <xs:annotation>
          <xs:documentation>Aldersgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFB">
        <xs:annotation>
          <xs:documentation>Aldgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFC">
        <xs:annotation>
          <xs:documentation>Bassishaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFD">
        <xs:annotation>
          <xs:documentation>Billingsgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFE">
        <xs:annotation>
          <xs:documentation>Bishopsgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFF">
        <xs:annotation>
          <xs:documentation>Bread Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFG">
        <xs:annotation>
          <xs:documentation>Bridge &amp; Bridge Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFH">
        <xs:annotation>
          <xs:documentation>Broad Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFJ">
        <xs:annotation>
          <xs:documentation>Candlewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFK">
        <xs:annotation>
          <xs:documentation>Castle Baynard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFL">
        <xs:annotation>
          <xs:documentation>Cheap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFM">
        <xs:annotation>
          <xs:documentation>Coleman Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFN">
        <xs:annotation>
          <xs:documentation>Cordwainer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFP">
        <xs:annotation>
          <xs:documentation>Cornhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFQ">
        <xs:annotation>
          <xs:documentation>Cripplegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFR">
        <xs:annotation>
          <xs:documentation>Dowgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFS">
        <xs:annotation>
          <xs:documentation>Farringdon Within</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFT">
        <xs:annotation>
          <xs:documentation>Farringdon Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFU">
        <xs:annotation>
          <xs:documentation>Langbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFW">
        <xs:annotation>
          <xs:documentation>Lime Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFX">
        <xs:annotation>
          <xs:documentation>Portsoken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFY">
        <xs:annotation>
          <xs:documentation>Queenhithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAFZ">
        <xs:annotation>
          <xs:documentation>Tower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAGA">
        <xs:annotation>
          <xs:documentation>Vintry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AAGB">
        <xs:annotation>
          <xs:documentation>Walbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABFX">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABFY">
        <xs:annotation>
          <xs:documentation>Alibon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABFZ">
        <xs:annotation>
          <xs:documentation>Becontree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGA">
        <xs:annotation>
          <xs:documentation>Chadwell Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGB">
        <xs:annotation>
          <xs:documentation>Eastbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGC">
        <xs:annotation>
          <xs:documentation>Eastbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGD">
        <xs:annotation>
          <xs:documentation>Gascoigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGE">
        <xs:annotation>
          <xs:documentation>Goresbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGF">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGG">
        <xs:annotation>
          <xs:documentation>Longbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGH">
        <xs:annotation>
          <xs:documentation>Mayesbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGJ">
        <xs:annotation>
          <xs:documentation>Parsloes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGK">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGL">
        <xs:annotation>
          <xs:documentation>Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGM">
        <xs:annotation>
          <xs:documentation>Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGN">
        <xs:annotation>
          <xs:documentation>Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ABGP">
        <xs:annotation>
          <xs:documentation>Whalebone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACFX">
        <xs:annotation>
          <xs:documentation>Brunswick Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACFY">
        <xs:annotation>
          <xs:documentation>Burnt Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACFZ">
        <xs:annotation>
          <xs:documentation>Childs Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGA">
        <xs:annotation>
          <xs:documentation>Colindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGB">
        <xs:annotation>
          <xs:documentation>Coppetts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGC">
        <xs:annotation>
          <xs:documentation>East Barnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGD">
        <xs:annotation>
          <xs:documentation>East Finchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGE">
        <xs:annotation>
          <xs:documentation>Edgware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGF">
        <xs:annotation>
          <xs:documentation>Finchley Church End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGG">
        <xs:annotation>
          <xs:documentation>Garden Suburb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGH">
        <xs:annotation>
          <xs:documentation>Golders Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGJ">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGK">
        <xs:annotation>
          <xs:documentation>Hendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGL">
        <xs:annotation>
          <xs:documentation>High Barnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGM">
        <xs:annotation>
          <xs:documentation>Mill Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGN">
        <xs:annotation>
          <xs:documentation>Oakleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGP">
        <xs:annotation>
          <xs:documentation>Totteridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGQ">
        <xs:annotation>
          <xs:documentation>Underhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGR">
        <xs:annotation>
          <xs:documentation>West Finchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGS">
        <xs:annotation>
          <xs:documentation>West Hendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ACGT">
        <xs:annotation>
          <xs:documentation>Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGA">
        <xs:annotation>
          <xs:documentation>Barnehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGB">
        <xs:annotation>
          <xs:documentation>Belvedere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGC">
        <xs:annotation>
          <xs:documentation>Blackfen and Lamorbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGD">
        <xs:annotation>
          <xs:documentation>Blendon and Penhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGE">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGF">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGG">
        <xs:annotation>
          <xs:documentation>Colyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGH">
        <xs:annotation>
          <xs:documentation>Crayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGJ">
        <xs:annotation>
          <xs:documentation>Cray Meadows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGK">
        <xs:annotation>
          <xs:documentation>Danson Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGL">
        <xs:annotation>
          <xs:documentation>East Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGM">
        <xs:annotation>
          <xs:documentation>Erith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGN">
        <xs:annotation>
          <xs:documentation>Falconwood and Welling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGP">
        <xs:annotation>
          <xs:documentation>Lesnes Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGQ">
        <xs:annotation>
          <xs:documentation>Longlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGR">
        <xs:annotation>
          <xs:documentation>North End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGS">
        <xs:annotation>
          <xs:documentation>Northumberland Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGT">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGU">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGW">
        <xs:annotation>
          <xs:documentation>Sidcup</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ADGX">
        <xs:annotation>
          <xs:documentation>Thamesmead East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGJ">
        <xs:annotation>
          <xs:documentation>Alperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGK">
        <xs:annotation>
          <xs:documentation>Barnhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGL">
        <xs:annotation>
          <xs:documentation>Brondesbury Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGM">
        <xs:annotation>
          <xs:documentation>Dollis Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGN">
        <xs:annotation>
          <xs:documentation>Dudden Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGP">
        <xs:annotation>
          <xs:documentation>Fryent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGQ">
        <xs:annotation>
          <xs:documentation>Harlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGR">
        <xs:annotation>
          <xs:documentation>Kensal Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGS">
        <xs:annotation>
          <xs:documentation>Kenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGT">
        <xs:annotation>
          <xs:documentation>Kilburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGU">
        <xs:annotation>
          <xs:documentation>Mapesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGW">
        <xs:annotation>
          <xs:documentation>Northwick Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGX">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGY">
        <xs:annotation>
          <xs:documentation>Queens Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEGZ">
        <xs:annotation>
          <xs:documentation>Queensbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHA">
        <xs:annotation>
          <xs:documentation>Stonebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHB">
        <xs:annotation>
          <xs:documentation>Sudbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHC">
        <xs:annotation>
          <xs:documentation>Tokyngton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHD">
        <xs:annotation>
          <xs:documentation>Welsh Harp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHE">
        <xs:annotation>
          <xs:documentation>Wembley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AEHF">
        <xs:annotation>
          <xs:documentation>Willesden Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGD">
        <xs:annotation>
          <xs:documentation>Bickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGE">
        <xs:annotation>
          <xs:documentation>Biggin Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGF">
        <xs:annotation>
          <xs:documentation>Bromley Common and Keston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGG">
        <xs:annotation>
          <xs:documentation>Bromley Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGH">
        <xs:annotation>
          <xs:documentation>Chelsfield and Pratts Bottom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGJ">
        <xs:annotation>
          <xs:documentation>Chislehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGK">
        <xs:annotation>
          <xs:documentation>Clock House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGL">
        <xs:annotation>
          <xs:documentation>Copers Cope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGM">
        <xs:annotation>
          <xs:documentation>Cray Valley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGN">
        <xs:annotation>
          <xs:documentation>Cray Valley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGP">
        <xs:annotation>
          <xs:documentation>Crystal Palace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGQ">
        <xs:annotation>
          <xs:documentation>Darwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGR">
        <xs:annotation>
          <xs:documentation>Farnborough and Crofton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGS">
        <xs:annotation>
          <xs:documentation>Hayes and Coney Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGT">
        <xs:annotation>
          <xs:documentation>Kelsey and Eden Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGU">
        <xs:annotation>
          <xs:documentation>Mottingham and Chislehurst North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGW">
        <xs:annotation>
          <xs:documentation>Orpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGX">
        <xs:annotation>
          <xs:documentation>Penge and Cator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGY">
        <xs:annotation>
          <xs:documentation>Petts Wood and Knoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFGZ">
        <xs:annotation>
          <xs:documentation>Plaistow and Sundridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFHA">
        <xs:annotation>
          <xs:documentation>Shortlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AFHB">
        <xs:annotation>
          <xs:documentation>West Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGD">
        <xs:annotation>
          <xs:documentation>Belsize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGE">
        <xs:annotation>
          <xs:documentation>Bloomsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGF">
        <xs:annotation>
          <xs:documentation>Camden Town with Primrose Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGG">
        <xs:annotation>
          <xs:documentation>Cantelowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGH">
        <xs:annotation>
          <xs:documentation>Fortune Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGJ">
        <xs:annotation>
          <xs:documentation>Frognal and Fitzjohns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGK">
        <xs:annotation>
          <xs:documentation>Gospel Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGL">
        <xs:annotation>
          <xs:documentation>Hampstead Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGM">
        <xs:annotation>
          <xs:documentation>Haverstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGN">
        <xs:annotation>
          <xs:documentation>Highgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGP">
        <xs:annotation>
          <xs:documentation>Holborn and Covent Garden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGQ">
        <xs:annotation>
          <xs:documentation>Kentish Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGR">
        <xs:annotation>
          <xs:documentation>Kilburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGS">
        <xs:annotation>
          <xs:documentation>King's Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGT">
        <xs:annotation>
          <xs:documentation>Regent's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGU">
        <xs:annotation>
          <xs:documentation>St Pancras and Somers Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGW">
        <xs:annotation>
          <xs:documentation>Swiss Cottage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AGGX">
        <xs:annotation>
          <xs:documentation>West Hampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGE">
        <xs:annotation>
          <xs:documentation>Addiscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGF">
        <xs:annotation>
          <xs:documentation>Ashburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGG">
        <xs:annotation>
          <xs:documentation>Bensham Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGH">
        <xs:annotation>
          <xs:documentation>Broad Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGJ">
        <xs:annotation>
          <xs:documentation>Coulsdon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGK">
        <xs:annotation>
          <xs:documentation>Coulsdon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGL">
        <xs:annotation>
          <xs:documentation>Croham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGM">
        <xs:annotation>
          <xs:documentation>Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGN">
        <xs:annotation>
          <xs:documentation>Fieldway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGP">
        <xs:annotation>
          <xs:documentation>Heathfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGQ">
        <xs:annotation>
          <xs:documentation>Kenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGR">
        <xs:annotation>
          <xs:documentation>New Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGS">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGT">
        <xs:annotation>
          <xs:documentation>Purley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGU">
        <xs:annotation>
          <xs:documentation>Sanderstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGW">
        <xs:annotation>
          <xs:documentation>Selhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGX">
        <xs:annotation>
          <xs:documentation>Selsdon and Ballards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGY">
        <xs:annotation>
          <xs:documentation>Shirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHGZ">
        <xs:annotation>
          <xs:documentation>South Norwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHHA">
        <xs:annotation>
          <xs:documentation>Thornton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHHB">
        <xs:annotation>
          <xs:documentation>Upper Norwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHHC">
        <xs:annotation>
          <xs:documentation>Waddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHHD">
        <xs:annotation>
          <xs:documentation>West Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AHHE">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGC">
        <xs:annotation>
          <xs:documentation>Acton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGD">
        <xs:annotation>
          <xs:documentation>Cleveland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGE">
        <xs:annotation>
          <xs:documentation>Dormers Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGF">
        <xs:annotation>
          <xs:documentation>Ealing Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGG">
        <xs:annotation>
          <xs:documentation>Ealing Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGH">
        <xs:annotation>
          <xs:documentation>East Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGJ">
        <xs:annotation>
          <xs:documentation>Elthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGK">
        <xs:annotation>
          <xs:documentation>Greenford Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGL">
        <xs:annotation>
          <xs:documentation>Greenford Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGM">
        <xs:annotation>
          <xs:documentation>Hanger Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGN">
        <xs:annotation>
          <xs:documentation>Hobbayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGP">
        <xs:annotation>
          <xs:documentation>Lady Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGQ">
        <xs:annotation>
          <xs:documentation>Northfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGR">
        <xs:annotation>
          <xs:documentation>North Greenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGS">
        <xs:annotation>
          <xs:documentation>Northolt Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGT">
        <xs:annotation>
          <xs:documentation>Northolt West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGU">
        <xs:annotation>
          <xs:documentation>Norwood Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGW">
        <xs:annotation>
          <xs:documentation>Perivale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGX">
        <xs:annotation>
          <xs:documentation>South Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGY">
        <xs:annotation>
          <xs:documentation>Southall Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJGZ">
        <xs:annotation>
          <xs:documentation>Southall Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJHA">
        <xs:annotation>
          <xs:documentation>Southfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AJHB">
        <xs:annotation>
          <xs:documentation>Walpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGL">
        <xs:annotation>
          <xs:documentation>Bowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGM">
        <xs:annotation>
          <xs:documentation>Bush Hill Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGN">
        <xs:annotation>
          <xs:documentation>Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGP">
        <xs:annotation>
          <xs:documentation>Cockfosters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGQ">
        <xs:annotation>
          <xs:documentation>Edmonton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGR">
        <xs:annotation>
          <xs:documentation>Enfield Highway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGS">
        <xs:annotation>
          <xs:documentation>Enfield Lock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGT">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGU">
        <xs:annotation>
          <xs:documentation>Haselbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGW">
        <xs:annotation>
          <xs:documentation>Highlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGX">
        <xs:annotation>
          <xs:documentation>Jubilee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGY">
        <xs:annotation>
          <xs:documentation>Lower Edmonton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKGZ">
        <xs:annotation>
          <xs:documentation>Palmers Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHA">
        <xs:annotation>
          <xs:documentation>Ponders End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHB">
        <xs:annotation>
          <xs:documentation>Southbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHC">
        <xs:annotation>
          <xs:documentation>Southgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHD">
        <xs:annotation>
          <xs:documentation>Southgate Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHE">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHF">
        <xs:annotation>
          <xs:documentation>Turkey Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHG">
        <xs:annotation>
          <xs:documentation>Upper Edmonton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AKHH">
        <xs:annotation>
          <xs:documentation>Winchmore Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGP">
        <xs:annotation>
          <xs:documentation>Abbey Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGQ">
        <xs:annotation>
          <xs:documentation>Blackheath Westcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGR">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGS">
        <xs:annotation>
          <xs:documentation>Coldharbour and New Eltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGT">
        <xs:annotation>
          <xs:documentation>Eltham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGU">
        <xs:annotation>
          <xs:documentation>Eltham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGW">
        <xs:annotation>
          <xs:documentation>Eltham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGX">
        <xs:annotation>
          <xs:documentation>Glyndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGY">
        <xs:annotation>
          <xs:documentation>Greenwich West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALGZ">
        <xs:annotation>
          <xs:documentation>Kidbrooke with Hornfair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHA">
        <xs:annotation>
          <xs:documentation>Middle Park and Sutcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHB">
        <xs:annotation>
          <xs:documentation>Peninsula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHC">
        <xs:annotation>
          <xs:documentation>Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHD">
        <xs:annotation>
          <xs:documentation>Shooters Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHE">
        <xs:annotation>
          <xs:documentation>Thamesmead Moorings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHF">
        <xs:annotation>
          <xs:documentation>Woolwich Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ALHG">
        <xs:annotation>
          <xs:documentation>Woolwich Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGA">
        <xs:annotation>
          <xs:documentation>Brownswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGB">
        <xs:annotation>
          <xs:documentation>Cazenove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGC">
        <xs:annotation>
          <xs:documentation>Chatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGD">
        <xs:annotation>
          <xs:documentation>Clissold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGE">
        <xs:annotation>
          <xs:documentation>Dalston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGF">
        <xs:annotation>
          <xs:documentation>De Beauvoir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGG">
        <xs:annotation>
          <xs:documentation>Hackney Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGH">
        <xs:annotation>
          <xs:documentation>Hackney Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGJ">
        <xs:annotation>
          <xs:documentation>Haggerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGK">
        <xs:annotation>
          <xs:documentation>Hoxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGL">
        <xs:annotation>
          <xs:documentation>King's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGM">
        <xs:annotation>
          <xs:documentation>Leabridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGN">
        <xs:annotation>
          <xs:documentation>Lordship</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGP">
        <xs:annotation>
          <xs:documentation>New River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGQ">
        <xs:annotation>
          <xs:documentation>Queensbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGR">
        <xs:annotation>
          <xs:documentation>Springfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGS">
        <xs:annotation>
          <xs:documentation>Stoke Newington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGT">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AMGU">
        <xs:annotation>
          <xs:documentation>Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGA">
        <xs:annotation>
          <xs:documentation>Addison</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGB">
        <xs:annotation>
          <xs:documentation>Askew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGC">
        <xs:annotation>
          <xs:documentation>Avonmore and Brook Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGD">
        <xs:annotation>
          <xs:documentation>College Park and Old Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGE">
        <xs:annotation>
          <xs:documentation>Fulham Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGF">
        <xs:annotation>
          <xs:documentation>Fulham Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGG">
        <xs:annotation>
          <xs:documentation>Hammersmith Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGH">
        <xs:annotation>
          <xs:documentation>Munster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGJ">
        <xs:annotation>
          <xs:documentation>North End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGK">
        <xs:annotation>
          <xs:documentation>Palace Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGL">
        <xs:annotation>
          <xs:documentation>Parsons Green and Walham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGM">
        <xs:annotation>
          <xs:documentation>Ravenscourt Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGN">
        <xs:annotation>
          <xs:documentation>Sands End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGP">
        <xs:annotation>
          <xs:documentation>Shepherd's Bush Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGQ">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ANGR">
        <xs:annotation>
          <xs:documentation>Wormholt and White City</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGA">
        <xs:annotation>
          <xs:documentation>Alexandra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGB">
        <xs:annotation>
          <xs:documentation>Bounds Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGC">
        <xs:annotation>
          <xs:documentation>Bruce Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGD">
        <xs:annotation>
          <xs:documentation>Crouch End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGE">
        <xs:annotation>
          <xs:documentation>Fortis Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGF">
        <xs:annotation>
          <xs:documentation>Harringay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGG">
        <xs:annotation>
          <xs:documentation>Highgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGH">
        <xs:annotation>
          <xs:documentation>Hornsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGJ">
        <xs:annotation>
          <xs:documentation>Muswell Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGK">
        <xs:annotation>
          <xs:documentation>Noel Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGL">
        <xs:annotation>
          <xs:documentation>Northumberland Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGM">
        <xs:annotation>
          <xs:documentation>St Ann's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGN">
        <xs:annotation>
          <xs:documentation>Seven Sisters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGP">
        <xs:annotation>
          <xs:documentation>Stroud Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGQ">
        <xs:annotation>
          <xs:documentation>Tottenham Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGR">
        <xs:annotation>
          <xs:documentation>Tottenham Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGS">
        <xs:annotation>
          <xs:documentation>West Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGT">
        <xs:annotation>
          <xs:documentation>White Hart Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00APGU">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQFY">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQFZ">
        <xs:annotation>
          <xs:documentation>Canons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGA">
        <xs:annotation>
          <xs:documentation>Edgware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGB">
        <xs:annotation>
          <xs:documentation>Greenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGC">
        <xs:annotation>
          <xs:documentation>Harrow on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGD">
        <xs:annotation>
          <xs:documentation>Harrow Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGE">
        <xs:annotation>
          <xs:documentation>Hatch End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGF">
        <xs:annotation>
          <xs:documentation>Headstone North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGG">
        <xs:annotation>
          <xs:documentation>Headstone South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGH">
        <xs:annotation>
          <xs:documentation>Kenton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGJ">
        <xs:annotation>
          <xs:documentation>Kenton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGK">
        <xs:annotation>
          <xs:documentation>Marlborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGL">
        <xs:annotation>
          <xs:documentation>Pinner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGM">
        <xs:annotation>
          <xs:documentation>Pinner South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGN">
        <xs:annotation>
          <xs:documentation>Queensbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGP">
        <xs:annotation>
          <xs:documentation>Rayners Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGQ">
        <xs:annotation>
          <xs:documentation>Roxbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGR">
        <xs:annotation>
          <xs:documentation>Roxeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGS">
        <xs:annotation>
          <xs:documentation>Stanmore Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGT">
        <xs:annotation>
          <xs:documentation>Wealdstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AQGU">
        <xs:annotation>
          <xs:documentation>West Harrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGC">
        <xs:annotation>
          <xs:documentation>Brooklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGD">
        <xs:annotation>
          <xs:documentation>Cranham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGE">
        <xs:annotation>
          <xs:documentation>Elm Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGF">
        <xs:annotation>
          <xs:documentation>Emerson Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGG">
        <xs:annotation>
          <xs:documentation>Gooshays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGH">
        <xs:annotation>
          <xs:documentation>Hacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGJ">
        <xs:annotation>
          <xs:documentation>Harold Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGK">
        <xs:annotation>
          <xs:documentation>Havering Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGL">
        <xs:annotation>
          <xs:documentation>Heaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGM">
        <xs:annotation>
          <xs:documentation>Hylands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGN">
        <xs:annotation>
          <xs:documentation>Mawneys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGP">
        <xs:annotation>
          <xs:documentation>Pettits</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGQ">
        <xs:annotation>
          <xs:documentation>Rainham and Wennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGR">
        <xs:annotation>
          <xs:documentation>Romford Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGS">
        <xs:annotation>
          <xs:documentation>St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGT">
        <xs:annotation>
          <xs:documentation>South Hornchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGU">
        <xs:annotation>
          <xs:documentation>Squirrel's Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ARGW">
        <xs:annotation>
          <xs:documentation>Upminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGG">
        <xs:annotation>
          <xs:documentation>Barnhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGH">
        <xs:annotation>
          <xs:documentation>Botwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGJ">
        <xs:annotation>
          <xs:documentation>Brunel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGK">
        <xs:annotation>
          <xs:documentation>Cavendish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGL">
        <xs:annotation>
          <xs:documentation>Charville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGM">
        <xs:annotation>
          <xs:documentation>Eastcote and East Ruislip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGN">
        <xs:annotation>
          <xs:documentation>Harefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGP">
        <xs:annotation>
          <xs:documentation>Heathrow Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGQ">
        <xs:annotation>
          <xs:documentation>Hillingdon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGR">
        <xs:annotation>
          <xs:documentation>Ickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGS">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGT">
        <xs:annotation>
          <xs:documentation>Northwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGU">
        <xs:annotation>
          <xs:documentation>Northwood Hills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGW">
        <xs:annotation>
          <xs:documentation>Pinkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGX">
        <xs:annotation>
          <xs:documentation>South Ruislip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGY">
        <xs:annotation>
          <xs:documentation>Townfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASGZ">
        <xs:annotation>
          <xs:documentation>Uxbridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASHA">
        <xs:annotation>
          <xs:documentation>Uxbridge South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASHB">
        <xs:annotation>
          <xs:documentation>West Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASHC">
        <xs:annotation>
          <xs:documentation>West Ruislip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASHD">
        <xs:annotation>
          <xs:documentation>Yeading</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ASHE">
        <xs:annotation>
          <xs:documentation>Yiewsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATFY">
        <xs:annotation>
          <xs:documentation>Bedfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATFZ">
        <xs:annotation>
          <xs:documentation>Brentford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGA">
        <xs:annotation>
          <xs:documentation>Chiswick Homefields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGB">
        <xs:annotation>
          <xs:documentation>Chiswick Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGC">
        <xs:annotation>
          <xs:documentation>Cranford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGD">
        <xs:annotation>
          <xs:documentation>Feltham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGE">
        <xs:annotation>
          <xs:documentation>Feltham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGF">
        <xs:annotation>
          <xs:documentation>Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGG">
        <xs:annotation>
          <xs:documentation>Hanworth Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGH">
        <xs:annotation>
          <xs:documentation>Heston Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGJ">
        <xs:annotation>
          <xs:documentation>Heston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGK">
        <xs:annotation>
          <xs:documentation>Heston West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGL">
        <xs:annotation>
          <xs:documentation>Hounslow Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGM">
        <xs:annotation>
          <xs:documentation>Hounslow Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGN">
        <xs:annotation>
          <xs:documentation>Hounslow South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGP">
        <xs:annotation>
          <xs:documentation>Hounslow West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGQ">
        <xs:annotation>
          <xs:documentation>Isleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGR">
        <xs:annotation>
          <xs:documentation>Osterley and Spring Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGS">
        <xs:annotation>
          <xs:documentation>Syon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ATGT">
        <xs:annotation>
          <xs:documentation>Turnham Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUFX">
        <xs:annotation>
          <xs:documentation>Barnsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUFY">
        <xs:annotation>
          <xs:documentation>Bunhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUFZ">
        <xs:annotation>
          <xs:documentation>Caledonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGA">
        <xs:annotation>
          <xs:documentation>Canonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGB">
        <xs:annotation>
          <xs:documentation>Clerkenwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGC">
        <xs:annotation>
          <xs:documentation>Finsbury Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGD">
        <xs:annotation>
          <xs:documentation>Highbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGE">
        <xs:annotation>
          <xs:documentation>Highbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGF">
        <xs:annotation>
          <xs:documentation>Hillrise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGG">
        <xs:annotation>
          <xs:documentation>Holloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGH">
        <xs:annotation>
          <xs:documentation>Junction</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGJ">
        <xs:annotation>
          <xs:documentation>Mildmay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGK">
        <xs:annotation>
          <xs:documentation>St George's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGL">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGM">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AUGN">
        <xs:annotation>
          <xs:documentation>Tollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWFY">
        <xs:annotation>
          <xs:documentation>Abingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWFZ">
        <xs:annotation>
          <xs:documentation>Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGA">
        <xs:annotation>
          <xs:documentation>Campden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGB">
        <xs:annotation>
          <xs:documentation>Colville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGC">
        <xs:annotation>
          <xs:documentation>Courtfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGD">
        <xs:annotation>
          <xs:documentation>Cremorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGE">
        <xs:annotation>
          <xs:documentation>Earl's Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGF">
        <xs:annotation>
          <xs:documentation>Golborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGG">
        <xs:annotation>
          <xs:documentation>Hans Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGH">
        <xs:annotation>
          <xs:documentation>Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGJ">
        <xs:annotation>
          <xs:documentation>Norland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGK">
        <xs:annotation>
          <xs:documentation>Notting Barns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGL">
        <xs:annotation>
          <xs:documentation>Pembridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGM">
        <xs:annotation>
          <xs:documentation>Queen's Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGN">
        <xs:annotation>
          <xs:documentation>Redcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGP">
        <xs:annotation>
          <xs:documentation>Royal Hospital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGQ">
        <xs:annotation>
          <xs:documentation>St Charles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AWGR">
        <xs:annotation>
          <xs:documentation>Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXFX">
        <xs:annotation>
          <xs:documentation>Alexandra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXFY">
        <xs:annotation>
          <xs:documentation>Berrylands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXFZ">
        <xs:annotation>
          <xs:documentation>Beverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGA">
        <xs:annotation>
          <xs:documentation>Canbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGB">
        <xs:annotation>
          <xs:documentation>Chessington North and Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGC">
        <xs:annotation>
          <xs:documentation>Chessington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGD">
        <xs:annotation>
          <xs:documentation>Coombe Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGE">
        <xs:annotation>
          <xs:documentation>Coombe Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGF">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGG">
        <xs:annotation>
          <xs:documentation>Norbiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGH">
        <xs:annotation>
          <xs:documentation>Old Malden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGJ">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGK">
        <xs:annotation>
          <xs:documentation>St Mark's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGL">
        <xs:annotation>
          <xs:documentation>Surbiton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGM">
        <xs:annotation>
          <xs:documentation>Tolworth and Hook Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AXGN">
        <xs:annotation>
          <xs:documentation>Tudor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYFZ">
        <xs:annotation>
          <xs:documentation>Bishop's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGA">
        <xs:annotation>
          <xs:documentation>Brixton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGB">
        <xs:annotation>
          <xs:documentation>Clapham Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGC">
        <xs:annotation>
          <xs:documentation>Clapham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGD">
        <xs:annotation>
          <xs:documentation>Coldharbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGE">
        <xs:annotation>
          <xs:documentation>Ferndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGF">
        <xs:annotation>
          <xs:documentation>Gipsy Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGG">
        <xs:annotation>
          <xs:documentation>Herne Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGH">
        <xs:annotation>
          <xs:documentation>Knight's Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGJ">
        <xs:annotation>
          <xs:documentation>Larkhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGK">
        <xs:annotation>
          <xs:documentation>Oval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGL">
        <xs:annotation>
          <xs:documentation>Prince's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGM">
        <xs:annotation>
          <xs:documentation>St Leonard's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGN">
        <xs:annotation>
          <xs:documentation>Stockwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGP">
        <xs:annotation>
          <xs:documentation>Streatham Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGQ">
        <xs:annotation>
          <xs:documentation>Streatham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGR">
        <xs:annotation>
          <xs:documentation>Streatham Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGS">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGT">
        <xs:annotation>
          <xs:documentation>Thurlow Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGU">
        <xs:annotation>
          <xs:documentation>Tulse Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AYGW">
        <xs:annotation>
          <xs:documentation>Vassall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGD">
        <xs:annotation>
          <xs:documentation>Bellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGE">
        <xs:annotation>
          <xs:documentation>Blackheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGF">
        <xs:annotation>
          <xs:documentation>Brockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGG">
        <xs:annotation>
          <xs:documentation>Catford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGH">
        <xs:annotation>
          <xs:documentation>Crofton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGJ">
        <xs:annotation>
          <xs:documentation>Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGK">
        <xs:annotation>
          <xs:documentation>Evelyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGL">
        <xs:annotation>
          <xs:documentation>Forest Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGM">
        <xs:annotation>
          <xs:documentation>Grove Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGN">
        <xs:annotation>
          <xs:documentation>Ladywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGP">
        <xs:annotation>
          <xs:documentation>Lee Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGQ">
        <xs:annotation>
          <xs:documentation>Lewisham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGR">
        <xs:annotation>
          <xs:documentation>New Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGS">
        <xs:annotation>
          <xs:documentation>Perry Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGT">
        <xs:annotation>
          <xs:documentation>Rushey Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGU">
        <xs:annotation>
          <xs:documentation>Sydenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGW">
        <xs:annotation>
          <xs:documentation>Telegraph Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00AZGX">
        <xs:annotation>
          <xs:documentation>Whitefoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAFX">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAFY">
        <xs:annotation>
          <xs:documentation>Cannon Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAFZ">
        <xs:annotation>
          <xs:documentation>Colliers Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGA">
        <xs:annotation>
          <xs:documentation>Cricket Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGB">
        <xs:annotation>
          <xs:documentation>Dundonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGC">
        <xs:annotation>
          <xs:documentation>Figge's Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGD">
        <xs:annotation>
          <xs:documentation>Graveney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGE">
        <xs:annotation>
          <xs:documentation>Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGF">
        <xs:annotation>
          <xs:documentation>Lavender Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGG">
        <xs:annotation>
          <xs:documentation>Longthornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGH">
        <xs:annotation>
          <xs:documentation>Lower Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGJ">
        <xs:annotation>
          <xs:documentation>Merton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGK">
        <xs:annotation>
          <xs:documentation>Pollards Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGL">
        <xs:annotation>
          <xs:documentation>Ravensbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGM">
        <xs:annotation>
          <xs:documentation>Raynes Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGN">
        <xs:annotation>
          <xs:documentation>St Helier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGP">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGQ">
        <xs:annotation>
          <xs:documentation>Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGR">
        <xs:annotation>
          <xs:documentation>West Barnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BAGS">
        <xs:annotation>
          <xs:documentation>Wimbledon Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGB">
        <xs:annotation>
          <xs:documentation>Beckton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGC">
        <xs:annotation>
          <xs:documentation>Boleyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGD">
        <xs:annotation>
          <xs:documentation>Canning Town North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGE">
        <xs:annotation>
          <xs:documentation>Canning Town South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGF">
        <xs:annotation>
          <xs:documentation>Custom House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGG">
        <xs:annotation>
          <xs:documentation>East Ham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGH">
        <xs:annotation>
          <xs:documentation>East Ham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGJ">
        <xs:annotation>
          <xs:documentation>East Ham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGK">
        <xs:annotation>
          <xs:documentation>Forest Gate North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGL">
        <xs:annotation>
          <xs:documentation>Forest Gate South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGM">
        <xs:annotation>
          <xs:documentation>Green Street East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGN">
        <xs:annotation>
          <xs:documentation>Green Street West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGP">
        <xs:annotation>
          <xs:documentation>Little Ilford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGQ">
        <xs:annotation>
          <xs:documentation>Manor Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGR">
        <xs:annotation>
          <xs:documentation>Plaistow North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGS">
        <xs:annotation>
          <xs:documentation>Plaistow South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGT">
        <xs:annotation>
          <xs:documentation>Royal Docks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGU">
        <xs:annotation>
          <xs:documentation>Stratford and New Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGW">
        <xs:annotation>
          <xs:documentation>Wall End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BBGX">
        <xs:annotation>
          <xs:documentation>West Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCFY">
        <xs:annotation>
          <xs:documentation>Aldborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCFZ">
        <xs:annotation>
          <xs:documentation>Barkingside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGA">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGB">
        <xs:annotation>
          <xs:documentation>Chadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGC">
        <xs:annotation>
          <xs:documentation>Church End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGD">
        <xs:annotation>
          <xs:documentation>Clayhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGE">
        <xs:annotation>
          <xs:documentation>Clementswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGF">
        <xs:annotation>
          <xs:documentation>Cranbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGG">
        <xs:annotation>
          <xs:documentation>Fairlop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGH">
        <xs:annotation>
          <xs:documentation>Fullwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGJ">
        <xs:annotation>
          <xs:documentation>Goodmayes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGK">
        <xs:annotation>
          <xs:documentation>Hainault</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGL">
        <xs:annotation>
          <xs:documentation>Loxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGM">
        <xs:annotation>
          <xs:documentation>Mayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGN">
        <xs:annotation>
          <xs:documentation>Monkhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGP">
        <xs:annotation>
          <xs:documentation>Newbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGQ">
        <xs:annotation>
          <xs:documentation>Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGR">
        <xs:annotation>
          <xs:documentation>Seven Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGS">
        <xs:annotation>
          <xs:documentation>Snaresbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGT">
        <xs:annotation>
          <xs:documentation>Valentines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BCGU">
        <xs:annotation>
          <xs:documentation>Wanstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDFW">
        <xs:annotation>
          <xs:documentation>Barnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDFX">
        <xs:annotation>
          <xs:documentation>East Sheen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDFY">
        <xs:annotation>
          <xs:documentation>Fulwell and Hampton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDFZ">
        <xs:annotation>
          <xs:documentation>Ham, Petersham and Richmond Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGA">
        <xs:annotation>
          <xs:documentation>Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGB">
        <xs:annotation>
          <xs:documentation>Hampton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGC">
        <xs:annotation>
          <xs:documentation>Hampton Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGD">
        <xs:annotation>
          <xs:documentation>Heathfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGE">
        <xs:annotation>
          <xs:documentation>Kew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGF">
        <xs:annotation>
          <xs:documentation>Mortlake and Barnes Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGG">
        <xs:annotation>
          <xs:documentation>North Richmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGH">
        <xs:annotation>
          <xs:documentation>St Margarets and North Twickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGJ">
        <xs:annotation>
          <xs:documentation>South Richmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGK">
        <xs:annotation>
          <xs:documentation>South Twickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGL">
        <xs:annotation>
          <xs:documentation>Teddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGM">
        <xs:annotation>
          <xs:documentation>Twickenham Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGN">
        <xs:annotation>
          <xs:documentation>West Twickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BDGP">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGC">
        <xs:annotation>
          <xs:documentation>Brunswick Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGD">
        <xs:annotation>
          <xs:documentation>Camberwell Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGE">
        <xs:annotation>
          <xs:documentation>Cathedrals</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGF">
        <xs:annotation>
          <xs:documentation>Chaucer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGG">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGH">
        <xs:annotation>
          <xs:documentation>East Dulwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGJ">
        <xs:annotation>
          <xs:documentation>East Walworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGK">
        <xs:annotation>
          <xs:documentation>Faraday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGL">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGM">
        <xs:annotation>
          <xs:documentation>Livesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGN">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGP">
        <xs:annotation>
          <xs:documentation>Nunhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGQ">
        <xs:annotation>
          <xs:documentation>Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGR">
        <xs:annotation>
          <xs:documentation>Peckham Rye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGS">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGT">
        <xs:annotation>
          <xs:documentation>Rotherhithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGU">
        <xs:annotation>
          <xs:documentation>South Bermondsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGW">
        <xs:annotation>
          <xs:documentation>South Camberwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGX">
        <xs:annotation>
          <xs:documentation>Surrey Docks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGY">
        <xs:annotation>
          <xs:documentation>The Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BEGZ">
        <xs:annotation>
          <xs:documentation>Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGC">
        <xs:annotation>
          <xs:documentation>Beddington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGD">
        <xs:annotation>
          <xs:documentation>Beddington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGE">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGF">
        <xs:annotation>
          <xs:documentation>Carshalton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGG">
        <xs:annotation>
          <xs:documentation>Carshalton South and Clockhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGH">
        <xs:annotation>
          <xs:documentation>Cheam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGJ">
        <xs:annotation>
          <xs:documentation>Nonsuch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGK">
        <xs:annotation>
          <xs:documentation>St Helier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGL">
        <xs:annotation>
          <xs:documentation>Stonecot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGM">
        <xs:annotation>
          <xs:documentation>Sutton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGN">
        <xs:annotation>
          <xs:documentation>Sutton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGP">
        <xs:annotation>
          <xs:documentation>Sutton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGQ">
        <xs:annotation>
          <xs:documentation>Sutton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGR">
        <xs:annotation>
          <xs:documentation>The Wrythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGS">
        <xs:annotation>
          <xs:documentation>Wallington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGT">
        <xs:annotation>
          <xs:documentation>Wallington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGU">
        <xs:annotation>
          <xs:documentation>Wandle Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BFGW">
        <xs:annotation>
          <xs:documentation>Worcester Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGFW">
        <xs:annotation>
          <xs:documentation>Bethnal Green North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGFX">
        <xs:annotation>
          <xs:documentation>Bethnal Green South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGFY">
        <xs:annotation>
          <xs:documentation>Blackwall and Cubitt Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGFZ">
        <xs:annotation>
          <xs:documentation>Bow East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGA">
        <xs:annotation>
          <xs:documentation>Bow West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGB">
        <xs:annotation>
          <xs:documentation>Bromley-by-Bow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGC">
        <xs:annotation>
          <xs:documentation>East India and Lansbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGD">
        <xs:annotation>
          <xs:documentation>Limehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGE">
        <xs:annotation>
          <xs:documentation>Mile End and Globe Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGF">
        <xs:annotation>
          <xs:documentation>Mile End East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGG">
        <xs:annotation>
          <xs:documentation>Millwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGH">
        <xs:annotation>
          <xs:documentation>St Dunstan's and Stepney Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGJ">
        <xs:annotation>
          <xs:documentation>St Katharine's and Wapping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGK">
        <xs:annotation>
          <xs:documentation>Shadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGL">
        <xs:annotation>
          <xs:documentation>Spitalfields and Banglatown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGM">
        <xs:annotation>
          <xs:documentation>Weavers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BGGN">
        <xs:annotation>
          <xs:documentation>Whitechapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHFX">
        <xs:annotation>
          <xs:documentation>Cann Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHFY">
        <xs:annotation>
          <xs:documentation>Cathall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHFZ">
        <xs:annotation>
          <xs:documentation>Chapel End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGA">
        <xs:annotation>
          <xs:documentation>Chingford Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGB">
        <xs:annotation>
          <xs:documentation>Endlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGC">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGD">
        <xs:annotation>
          <xs:documentation>Grove Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGE">
        <xs:annotation>
          <xs:documentation>Hale End and Highams Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGF">
        <xs:annotation>
          <xs:documentation>Hatch Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGG">
        <xs:annotation>
          <xs:documentation>High Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGH">
        <xs:annotation>
          <xs:documentation>Higham Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGJ">
        <xs:annotation>
          <xs:documentation>Hoe Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGK">
        <xs:annotation>
          <xs:documentation>Larkswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGL">
        <xs:annotation>
          <xs:documentation>Lea Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGM">
        <xs:annotation>
          <xs:documentation>Leyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGN">
        <xs:annotation>
          <xs:documentation>Leytonstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGP">
        <xs:annotation>
          <xs:documentation>Markhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGQ">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGR">
        <xs:annotation>
          <xs:documentation>William Morris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BHGS">
        <xs:annotation>
          <xs:documentation>Wood Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJFZ">
        <xs:annotation>
          <xs:documentation>Balham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGA">
        <xs:annotation>
          <xs:documentation>Bedford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGB">
        <xs:annotation>
          <xs:documentation>Earlsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGC">
        <xs:annotation>
          <xs:documentation>East Putney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGD">
        <xs:annotation>
          <xs:documentation>Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGE">
        <xs:annotation>
          <xs:documentation>Furzedown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGF">
        <xs:annotation>
          <xs:documentation>Graveney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGG">
        <xs:annotation>
          <xs:documentation>Latchmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGH">
        <xs:annotation>
          <xs:documentation>Nightingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGJ">
        <xs:annotation>
          <xs:documentation>Northcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGK">
        <xs:annotation>
          <xs:documentation>Queenstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGL">
        <xs:annotation>
          <xs:documentation>Roehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGM">
        <xs:annotation>
          <xs:documentation>St Mary's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGN">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGP">
        <xs:annotation>
          <xs:documentation>Southfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGQ">
        <xs:annotation>
          <xs:documentation>Thamesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGR">
        <xs:annotation>
          <xs:documentation>Tooting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGS">
        <xs:annotation>
          <xs:documentation>Wandsworth Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGT">
        <xs:annotation>
          <xs:documentation>West Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BJGU">
        <xs:annotation>
          <xs:documentation>West Putney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGA">
        <xs:annotation>
          <xs:documentation>Abbey Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGB">
        <xs:annotation>
          <xs:documentation>Bayswater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGC">
        <xs:annotation>
          <xs:documentation>Bryanston and Dorset Square</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGD">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGE">
        <xs:annotation>
          <xs:documentation>Church Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGF">
        <xs:annotation>
          <xs:documentation>Harrow Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGG">
        <xs:annotation>
          <xs:documentation>Hyde Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGH">
        <xs:annotation>
          <xs:documentation>Knightsbridge and Belgravia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGJ">
        <xs:annotation>
          <xs:documentation>Lancaster Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGK">
        <xs:annotation>
          <xs:documentation>Little Venice</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGL">
        <xs:annotation>
          <xs:documentation>Maida Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGM">
        <xs:annotation>
          <xs:documentation>Marylebone High Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGN">
        <xs:annotation>
          <xs:documentation>Queen's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGP">
        <xs:annotation>
          <xs:documentation>Regent's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGQ">
        <xs:annotation>
          <xs:documentation>St James's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGR">
        <xs:annotation>
          <xs:documentation>Tachbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGS">
        <xs:annotation>
          <xs:documentation>Vincent Square</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGT">
        <xs:annotation>
          <xs:documentation>Warwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGU">
        <xs:annotation>
          <xs:documentation>Westbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BKGW">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLFX">
        <xs:annotation>
          <xs:documentation>Astley Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLFY">
        <xs:annotation>
          <xs:documentation>Bradshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLFZ">
        <xs:annotation>
          <xs:documentation>Breightmet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGA">
        <xs:annotation>
          <xs:documentation>Bromley Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGB">
        <xs:annotation>
          <xs:documentation>Crompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGC">
        <xs:annotation>
          <xs:documentation>Farnworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGD">
        <xs:annotation>
          <xs:documentation>Great Lever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGE">
        <xs:annotation>
          <xs:documentation>Halliwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGF">
        <xs:annotation>
          <xs:documentation>Harper Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGG">
        <xs:annotation>
          <xs:documentation>Heaton and Lostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGH">
        <xs:annotation>
          <xs:documentation>Horwich and Blackrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGJ">
        <xs:annotation>
          <xs:documentation>Horwich North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGK">
        <xs:annotation>
          <xs:documentation>Hulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGL">
        <xs:annotation>
          <xs:documentation>Kearsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGM">
        <xs:annotation>
          <xs:documentation>Little Lever and Darcy Lever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGN">
        <xs:annotation>
          <xs:documentation>Rumworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGP">
        <xs:annotation>
          <xs:documentation>Smithills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGQ">
        <xs:annotation>
          <xs:documentation>Tonge with the Haulgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGR">
        <xs:annotation>
          <xs:documentation>Westhoughton North and Chew Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BLGS">
        <xs:annotation>
          <xs:documentation>Westhoughton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFS">
        <xs:annotation>
          <xs:documentation>Besses</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFT">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFU">
        <xs:annotation>
          <xs:documentation>East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFW">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFX">
        <xs:annotation>
          <xs:documentation>Holyrood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFY">
        <xs:annotation>
          <xs:documentation>Moorside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMFZ">
        <xs:annotation>
          <xs:documentation>North Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGA">
        <xs:annotation>
          <xs:documentation>Pilkington Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGB">
        <xs:annotation>
          <xs:documentation>Radcliffe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGC">
        <xs:annotation>
          <xs:documentation>Radcliffe North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGD">
        <xs:annotation>
          <xs:documentation>Radcliffe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGE">
        <xs:annotation>
          <xs:documentation>Ramsbottom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGF">
        <xs:annotation>
          <xs:documentation>Redvales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGG">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGH">
        <xs:annotation>
          <xs:documentation>Sedgley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGJ">
        <xs:annotation>
          <xs:documentation>Tottington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BMGK">
        <xs:annotation>
          <xs:documentation>Unsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGL">
        <xs:annotation>
          <xs:documentation>Ancoats and Clayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGM">
        <xs:annotation>
          <xs:documentation>Ardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGN">
        <xs:annotation>
          <xs:documentation>Baguley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGP">
        <xs:annotation>
          <xs:documentation>Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGQ">
        <xs:annotation>
          <xs:documentation>Brooklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGR">
        <xs:annotation>
          <xs:documentation>Burnage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGS">
        <xs:annotation>
          <xs:documentation>Charlestown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGT">
        <xs:annotation>
          <xs:documentation>Cheetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGU">
        <xs:annotation>
          <xs:documentation>Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGW">
        <xs:annotation>
          <xs:documentation>Chorlton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGX">
        <xs:annotation>
          <xs:documentation>City Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGY">
        <xs:annotation>
          <xs:documentation>Crumpsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNGZ">
        <xs:annotation>
          <xs:documentation>Didsbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHA">
        <xs:annotation>
          <xs:documentation>Didsbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHB">
        <xs:annotation>
          <xs:documentation>Fallowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHC">
        <xs:annotation>
          <xs:documentation>Gorton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHD">
        <xs:annotation>
          <xs:documentation>Gorton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHE">
        <xs:annotation>
          <xs:documentation>Harpurhey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHF">
        <xs:annotation>
          <xs:documentation>Higher Blackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHG">
        <xs:annotation>
          <xs:documentation>Hulme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHH">
        <xs:annotation>
          <xs:documentation>Levenshulme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHJ">
        <xs:annotation>
          <xs:documentation>Longsight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHK">
        <xs:annotation>
          <xs:documentation>Miles Platting and Newton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHL">
        <xs:annotation>
          <xs:documentation>Moss Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHM">
        <xs:annotation>
          <xs:documentation>Moston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHN">
        <xs:annotation>
          <xs:documentation>Northenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHP">
        <xs:annotation>
          <xs:documentation>Old Moat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHQ">
        <xs:annotation>
          <xs:documentation>Rusholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHR">
        <xs:annotation>
          <xs:documentation>Sharston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHS">
        <xs:annotation>
          <xs:documentation>Whalley Range</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHT">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BNHU">
        <xs:annotation>
          <xs:documentation>Woodhouse Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPFX">
        <xs:annotation>
          <xs:documentation>Alexandra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPFY">
        <xs:annotation>
          <xs:documentation>Chadderton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPFZ">
        <xs:annotation>
          <xs:documentation>Chadderton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGA">
        <xs:annotation>
          <xs:documentation>Chadderton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGB">
        <xs:annotation>
          <xs:documentation>Coldhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGC">
        <xs:annotation>
          <xs:documentation>Crompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGD">
        <xs:annotation>
          <xs:documentation>Failsworth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGE">
        <xs:annotation>
          <xs:documentation>Failsworth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGF">
        <xs:annotation>
          <xs:documentation>Hollinwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGG">
        <xs:annotation>
          <xs:documentation>Medlock Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGH">
        <xs:annotation>
          <xs:documentation>Royton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGJ">
        <xs:annotation>
          <xs:documentation>Royton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGK">
        <xs:annotation>
          <xs:documentation>Saddleworth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGL">
        <xs:annotation>
          <xs:documentation>Saddleworth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGM">
        <xs:annotation>
          <xs:documentation>Saddleworth West and Lees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGN">
        <xs:annotation>
          <xs:documentation>St James'</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGP">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGQ">
        <xs:annotation>
          <xs:documentation>Shaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGR">
        <xs:annotation>
          <xs:documentation>Waterhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BPGS">
        <xs:annotation>
          <xs:documentation>Werneth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQFX">
        <xs:annotation>
          <xs:documentation>Balderstone and Kirkholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQFY">
        <xs:annotation>
          <xs:documentation>Bamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQFZ">
        <xs:annotation>
          <xs:documentation>Castleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGA">
        <xs:annotation>
          <xs:documentation>Central Rochdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGB">
        <xs:annotation>
          <xs:documentation>East Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGC">
        <xs:annotation>
          <xs:documentation>Healey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGD">
        <xs:annotation>
          <xs:documentation>Hopwood Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGE">
        <xs:annotation>
          <xs:documentation>Kingsway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGF">
        <xs:annotation>
          <xs:documentation>Littleborough Lakeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGG">
        <xs:annotation>
          <xs:documentation>Milkstone and Deeplish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGH">
        <xs:annotation>
          <xs:documentation>Milnrow and Newhey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGJ">
        <xs:annotation>
          <xs:documentation>Norden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGK">
        <xs:annotation>
          <xs:documentation>North Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGL">
        <xs:annotation>
          <xs:documentation>North Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGM">
        <xs:annotation>
          <xs:documentation>Smallbridge and Firgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGN">
        <xs:annotation>
          <xs:documentation>South Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGP">
        <xs:annotation>
          <xs:documentation>Spotland and Falinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGQ">
        <xs:annotation>
          <xs:documentation>Wardle and West Littleborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGR">
        <xs:annotation>
          <xs:documentation>West Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BQGS">
        <xs:annotation>
          <xs:documentation>West Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRFX">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRFY">
        <xs:annotation>
          <xs:documentation>Boothstown and Ellenbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRFZ">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGA">
        <xs:annotation>
          <xs:documentation>Cadishead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGB">
        <xs:annotation>
          <xs:documentation>Claremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGC">
        <xs:annotation>
          <xs:documentation>Eccles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGD">
        <xs:annotation>
          <xs:documentation>Irlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGE">
        <xs:annotation>
          <xs:documentation>Irwell Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGF">
        <xs:annotation>
          <xs:documentation>Kersal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGG">
        <xs:annotation>
          <xs:documentation>Langworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGH">
        <xs:annotation>
          <xs:documentation>Little Hulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGJ">
        <xs:annotation>
          <xs:documentation>Ordsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGK">
        <xs:annotation>
          <xs:documentation>Pendlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGL">
        <xs:annotation>
          <xs:documentation>Swinton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGM">
        <xs:annotation>
          <xs:documentation>Swinton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGN">
        <xs:annotation>
          <xs:documentation>Walkden North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGP">
        <xs:annotation>
          <xs:documentation>Walkden South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGQ">
        <xs:annotation>
          <xs:documentation>Weaste and Seedley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGR">
        <xs:annotation>
          <xs:documentation>Winton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BRGS">
        <xs:annotation>
          <xs:documentation>Worsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSFY">
        <xs:annotation>
          <xs:documentation>Bramhall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSFZ">
        <xs:annotation>
          <xs:documentation>Bramhall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGA">
        <xs:annotation>
          <xs:documentation>Bredbury and Woodley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGB">
        <xs:annotation>
          <xs:documentation>Bredbury Green and Romiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGC">
        <xs:annotation>
          <xs:documentation>Brinnington and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGD">
        <xs:annotation>
          <xs:documentation>Cheadle and Gatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGE">
        <xs:annotation>
          <xs:documentation>Cheadle Hulme North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGF">
        <xs:annotation>
          <xs:documentation>Cheadle Hulme South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGG">
        <xs:annotation>
          <xs:documentation>Davenport and Cale Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGH">
        <xs:annotation>
          <xs:documentation>Edgeley and Cheadle Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGJ">
        <xs:annotation>
          <xs:documentation>Hazel Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGK">
        <xs:annotation>
          <xs:documentation>Heald Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGL">
        <xs:annotation>
          <xs:documentation>Heatons North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGM">
        <xs:annotation>
          <xs:documentation>Heatons South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGN">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGP">
        <xs:annotation>
          <xs:documentation>Marple North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGQ">
        <xs:annotation>
          <xs:documentation>Marple South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGR">
        <xs:annotation>
          <xs:documentation>Offerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGS">
        <xs:annotation>
          <xs:documentation>Reddish North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGT">
        <xs:annotation>
          <xs:documentation>Reddish South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BSGU">
        <xs:annotation>
          <xs:documentation>Stepping Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTFW">
        <xs:annotation>
          <xs:documentation>Ashton Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTFX">
        <xs:annotation>
          <xs:documentation>Ashton St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTFY">
        <xs:annotation>
          <xs:documentation>Ashton Waterloo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTFZ">
        <xs:annotation>
          <xs:documentation>Audenshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGA">
        <xs:annotation>
          <xs:documentation>Denton North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGB">
        <xs:annotation>
          <xs:documentation>Denton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGC">
        <xs:annotation>
          <xs:documentation>Denton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGD">
        <xs:annotation>
          <xs:documentation>Droylsden East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGE">
        <xs:annotation>
          <xs:documentation>Droylsden West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGF">
        <xs:annotation>
          <xs:documentation>Dukinfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGG">
        <xs:annotation>
          <xs:documentation>Dukinfield Stalybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGH">
        <xs:annotation>
          <xs:documentation>Hyde Godley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGJ">
        <xs:annotation>
          <xs:documentation>Hyde Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGK">
        <xs:annotation>
          <xs:documentation>Hyde Werneth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGL">
        <xs:annotation>
          <xs:documentation>Longdendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGM">
        <xs:annotation>
          <xs:documentation>Mossley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGN">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGP">
        <xs:annotation>
          <xs:documentation>Stalybridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BTGQ">
        <xs:annotation>
          <xs:documentation>Stalybridge South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUFY">
        <xs:annotation>
          <xs:documentation>Altrincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUFZ">
        <xs:annotation>
          <xs:documentation>Ashton upon Mersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGA">
        <xs:annotation>
          <xs:documentation>Bowdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGB">
        <xs:annotation>
          <xs:documentation>Broadheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGC">
        <xs:annotation>
          <xs:documentation>Brooklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGD">
        <xs:annotation>
          <xs:documentation>Bucklow-St Martins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGE">
        <xs:annotation>
          <xs:documentation>Clifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGF">
        <xs:annotation>
          <xs:documentation>Davyhulme East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGG">
        <xs:annotation>
          <xs:documentation>Davyhulme West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGH">
        <xs:annotation>
          <xs:documentation>Flixton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGJ">
        <xs:annotation>
          <xs:documentation>Gorse Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGK">
        <xs:annotation>
          <xs:documentation>Hale Barns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGL">
        <xs:annotation>
          <xs:documentation>Hale Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGM">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGN">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGP">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGQ">
        <xs:annotation>
          <xs:documentation>Sale Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGR">
        <xs:annotation>
          <xs:documentation>Stretford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGS">
        <xs:annotation>
          <xs:documentation>Timperley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGT">
        <xs:annotation>
          <xs:documentation>Urmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BUGU">
        <xs:annotation>
          <xs:documentation>Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGB">
        <xs:annotation>
          <xs:documentation>Abram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGC">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGD">
        <xs:annotation>
          <xs:documentation>Aspull New Springs Whelley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGE">
        <xs:annotation>
          <xs:documentation>Astley Mosley Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGF">
        <xs:annotation>
          <xs:documentation>Atherleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGG">
        <xs:annotation>
          <xs:documentation>Atherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGH">
        <xs:annotation>
          <xs:documentation>Bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGJ">
        <xs:annotation>
          <xs:documentation>Douglas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGK">
        <xs:annotation>
          <xs:documentation>Golborne and Lowton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGL">
        <xs:annotation>
          <xs:documentation>Hindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGM">
        <xs:annotation>
          <xs:documentation>Hindley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGN">
        <xs:annotation>
          <xs:documentation>Ince</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGP">
        <xs:annotation>
          <xs:documentation>Leigh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGQ">
        <xs:annotation>
          <xs:documentation>Leigh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGR">
        <xs:annotation>
          <xs:documentation>Leigh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGS">
        <xs:annotation>
          <xs:documentation>Lowton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGT">
        <xs:annotation>
          <xs:documentation>Orrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGU">
        <xs:annotation>
          <xs:documentation>Pemberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGW">
        <xs:annotation>
          <xs:documentation>Shevington with Lower Ground</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGX">
        <xs:annotation>
          <xs:documentation>Standish with Langtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGY">
        <xs:annotation>
          <xs:documentation>Tyldesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWGZ">
        <xs:annotation>
          <xs:documentation>Wigan Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWHA">
        <xs:annotation>
          <xs:documentation>Wigan West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWHB">
        <xs:annotation>
          <xs:documentation>Winstanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BWHC">
        <xs:annotation>
          <xs:documentation>Worsley Mesnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXFZ">
        <xs:annotation>
          <xs:documentation>Cherryfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGA">
        <xs:annotation>
          <xs:documentation>Halewood North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGB">
        <xs:annotation>
          <xs:documentation>Halewood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGC">
        <xs:annotation>
          <xs:documentation>Halewood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGD">
        <xs:annotation>
          <xs:documentation>Kirkby Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGE">
        <xs:annotation>
          <xs:documentation>Longview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGF">
        <xs:annotation>
          <xs:documentation>Northwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGG">
        <xs:annotation>
          <xs:documentation>Page Moss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGH">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGJ">
        <xs:annotation>
          <xs:documentation>Prescot East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGK">
        <xs:annotation>
          <xs:documentation>Prescot West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGL">
        <xs:annotation>
          <xs:documentation>Roby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGM">
        <xs:annotation>
          <xs:documentation>St Bartholomews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGN">
        <xs:annotation>
          <xs:documentation>St Gabriels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGP">
        <xs:annotation>
          <xs:documentation>St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGQ">
        <xs:annotation>
          <xs:documentation>Shevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGR">
        <xs:annotation>
          <xs:documentation>Stockbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGS">
        <xs:annotation>
          <xs:documentation>Swanside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGT">
        <xs:annotation>
          <xs:documentation>Whiston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGU">
        <xs:annotation>
          <xs:documentation>Whiston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BXGW">
        <xs:annotation>
          <xs:documentation>Whitefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGL">
        <xs:annotation>
          <xs:documentation>Allerton and Hunts Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGM">
        <xs:annotation>
          <xs:documentation>Anfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGN">
        <xs:annotation>
          <xs:documentation>Belle Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGP">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGQ">
        <xs:annotation>
          <xs:documentation>Childwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGR">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGS">
        <xs:annotation>
          <xs:documentation>Clubmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGT">
        <xs:annotation>
          <xs:documentation>County</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGU">
        <xs:annotation>
          <xs:documentation>Cressington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGW">
        <xs:annotation>
          <xs:documentation>Croxteth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGX">
        <xs:annotation>
          <xs:documentation>Everton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGY">
        <xs:annotation>
          <xs:documentation>Fazakerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYGZ">
        <xs:annotation>
          <xs:documentation>Greenbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHA">
        <xs:annotation>
          <xs:documentation>Kensington and Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHB">
        <xs:annotation>
          <xs:documentation>Kirkdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHC">
        <xs:annotation>
          <xs:documentation>Knotty Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHD">
        <xs:annotation>
          <xs:documentation>Mossley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHE">
        <xs:annotation>
          <xs:documentation>Norris Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHF">
        <xs:annotation>
          <xs:documentation>Old Swan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHG">
        <xs:annotation>
          <xs:documentation>Picton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHH">
        <xs:annotation>
          <xs:documentation>Princes Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHJ">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHK">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHL">
        <xs:annotation>
          <xs:documentation>Speke-Garston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHM">
        <xs:annotation>
          <xs:documentation>Tuebrook and Stoneycroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHN">
        <xs:annotation>
          <xs:documentation>Warbreck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHP">
        <xs:annotation>
          <xs:documentation>Wavertree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHQ">
        <xs:annotation>
          <xs:documentation>West Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHR">
        <xs:annotation>
          <xs:documentation>Woolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BYHS">
        <xs:annotation>
          <xs:documentation>Yew Tree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZFU">
        <xs:annotation>
          <xs:documentation>Billinge and Seneley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZFW">
        <xs:annotation>
          <xs:documentation>Blackbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZFX">
        <xs:annotation>
          <xs:documentation>Bold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZFY">
        <xs:annotation>
          <xs:documentation>Earlestown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZFZ">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGA">
        <xs:annotation>
          <xs:documentation>Haydock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGB">
        <xs:annotation>
          <xs:documentation>Moss Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGC">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGD">
        <xs:annotation>
          <xs:documentation>Parr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGE">
        <xs:annotation>
          <xs:documentation>Rainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGF">
        <xs:annotation>
          <xs:documentation>Rainhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGG">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGH">
        <xs:annotation>
          <xs:documentation>Thatto Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGJ">
        <xs:annotation>
          <xs:documentation>Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGK">
        <xs:annotation>
          <xs:documentation>West Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZGL">
        <xs:annotation>
          <xs:documentation>Windle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAGZ">
        <xs:annotation>
          <xs:documentation>Ainsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHA">
        <xs:annotation>
          <xs:documentation>Birkdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHB">
        <xs:annotation>
          <xs:documentation>Blundellsands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHC">
        <xs:annotation>
          <xs:documentation>Cambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHD">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHE">
        <xs:annotation>
          <xs:documentation>Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHF">
        <xs:annotation>
          <xs:documentation>Duke's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHG">
        <xs:annotation>
          <xs:documentation>Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHH">
        <xs:annotation>
          <xs:documentation>Harington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHJ">
        <xs:annotation>
          <xs:documentation>Kew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHK">
        <xs:annotation>
          <xs:documentation>Linacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHL">
        <xs:annotation>
          <xs:documentation>Litherland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHM">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHN">
        <xs:annotation>
          <xs:documentation>Meols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHP">
        <xs:annotation>
          <xs:documentation>Molyneux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHQ">
        <xs:annotation>
          <xs:documentation>Netherton and Orrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHR">
        <xs:annotation>
          <xs:documentation>Norwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHS">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHT">
        <xs:annotation>
          <xs:documentation>Ravenmeols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHU">
        <xs:annotation>
          <xs:documentation>St Oswald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHW">
        <xs:annotation>
          <xs:documentation>Sudell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CAHX">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBFZ">
        <xs:annotation>
          <xs:documentation>Bebington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGA">
        <xs:annotation>
          <xs:documentation>Bidston and St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGB">
        <xs:annotation>
          <xs:documentation>Birkenhead and Tranmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGC">
        <xs:annotation>
          <xs:documentation>Bromborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGD">
        <xs:annotation>
          <xs:documentation>Clatterbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGE">
        <xs:annotation>
          <xs:documentation>Claughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGF">
        <xs:annotation>
          <xs:documentation>Eastham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGG">
        <xs:annotation>
          <xs:documentation>Greasby, Frankby and Irby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGH">
        <xs:annotation>
          <xs:documentation>Heswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGJ">
        <xs:annotation>
          <xs:documentation>Hoylake and Meols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGK">
        <xs:annotation>
          <xs:documentation>Leasowe and Moreton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGL">
        <xs:annotation>
          <xs:documentation>Liscard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGM">
        <xs:annotation>
          <xs:documentation>Moreton West and Saughall Massie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGN">
        <xs:annotation>
          <xs:documentation>New Brighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGP">
        <xs:annotation>
          <xs:documentation>Oxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGQ">
        <xs:annotation>
          <xs:documentation>Pensby and Thingwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGR">
        <xs:annotation>
          <xs:documentation>Prenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGS">
        <xs:annotation>
          <xs:documentation>Rock Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGT">
        <xs:annotation>
          <xs:documentation>Seacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGU">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGW">
        <xs:annotation>
          <xs:documentation>Wallasey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CBGX">
        <xs:annotation>
          <xs:documentation>West Kirby and Thurstaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCFZ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGA">
        <xs:annotation>
          <xs:documentation>Cudworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGB">
        <xs:annotation>
          <xs:documentation>Darfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGC">
        <xs:annotation>
          <xs:documentation>Darton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGD">
        <xs:annotation>
          <xs:documentation>Darton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGE">
        <xs:annotation>
          <xs:documentation>Dearne North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGF">
        <xs:annotation>
          <xs:documentation>Dearne South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGG">
        <xs:annotation>
          <xs:documentation>Dodworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGH">
        <xs:annotation>
          <xs:documentation>Hoyland Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGJ">
        <xs:annotation>
          <xs:documentation>Kingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGK">
        <xs:annotation>
          <xs:documentation>Monk Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGL">
        <xs:annotation>
          <xs:documentation>North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGM">
        <xs:annotation>
          <xs:documentation>Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGN">
        <xs:annotation>
          <xs:documentation>Penistone East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGP">
        <xs:annotation>
          <xs:documentation>Penistone West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGQ">
        <xs:annotation>
          <xs:documentation>Rockingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGR">
        <xs:annotation>
          <xs:documentation>Royston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGS">
        <xs:annotation>
          <xs:documentation>St Helens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGT">
        <xs:annotation>
          <xs:documentation>Stairfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGU">
        <xs:annotation>
          <xs:documentation>Wombwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CCGW">
        <xs:annotation>
          <xs:documentation>Worsbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEFY">
        <xs:annotation>
          <xs:documentation>Adwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEFZ">
        <xs:annotation>
          <xs:documentation>Armthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGA">
        <xs:annotation>
          <xs:documentation>Askern Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGB">
        <xs:annotation>
          <xs:documentation>Balby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGC">
        <xs:annotation>
          <xs:documentation>Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGD">
        <xs:annotation>
          <xs:documentation>Bessacarr and Cantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGE">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGF">
        <xs:annotation>
          <xs:documentation>Conisbrough and Denaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGG">
        <xs:annotation>
          <xs:documentation>Edenthorpe, Kirk Sandall and Barnby Dun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGH">
        <xs:annotation>
          <xs:documentation>Edlington and Warmsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGJ">
        <xs:annotation>
          <xs:documentation>Finningley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGK">
        <xs:annotation>
          <xs:documentation>Great North Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGL">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGM">
        <xs:annotation>
          <xs:documentation>Mexborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGN">
        <xs:annotation>
          <xs:documentation>Rossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGP">
        <xs:annotation>
          <xs:documentation>Sprotbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGQ">
        <xs:annotation>
          <xs:documentation>Stainforth and Moorends</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGR">
        <xs:annotation>
          <xs:documentation>Thorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGS">
        <xs:annotation>
          <xs:documentation>Torne Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGT">
        <xs:annotation>
          <xs:documentation>Town Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CEGU">
        <xs:annotation>
          <xs:documentation>Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFFZ">
        <xs:annotation>
          <xs:documentation>Anston and Woodsetts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGA">
        <xs:annotation>
          <xs:documentation>Boston Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGB">
        <xs:annotation>
          <xs:documentation>Brinsworth and Catcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGC">
        <xs:annotation>
          <xs:documentation>Dinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGD">
        <xs:annotation>
          <xs:documentation>Hellaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGE">
        <xs:annotation>
          <xs:documentation>Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGF">
        <xs:annotation>
          <xs:documentation>Hoober</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGG">
        <xs:annotation>
          <xs:documentation>Keppel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGH">
        <xs:annotation>
          <xs:documentation>Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGJ">
        <xs:annotation>
          <xs:documentation>Rawmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGK">
        <xs:annotation>
          <xs:documentation>Rother Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGL">
        <xs:annotation>
          <xs:documentation>Rotherham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGM">
        <xs:annotation>
          <xs:documentation>Rotherham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGN">
        <xs:annotation>
          <xs:documentation>Silverwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGP">
        <xs:annotation>
          <xs:documentation>Sitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGQ">
        <xs:annotation>
          <xs:documentation>Swinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGR">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGS">
        <xs:annotation>
          <xs:documentation>Wales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGT">
        <xs:annotation>
          <xs:documentation>Wath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGU">
        <xs:annotation>
          <xs:documentation>Wickersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CFGW">
        <xs:annotation>
          <xs:documentation>Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGG">
        <xs:annotation>
          <xs:documentation>Arbourthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGH">
        <xs:annotation>
          <xs:documentation>Beauchief and Greenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGJ">
        <xs:annotation>
          <xs:documentation>Beighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGK">
        <xs:annotation>
          <xs:documentation>Birley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGL">
        <xs:annotation>
          <xs:documentation>Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGM">
        <xs:annotation>
          <xs:documentation>Burngreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGN">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGP">
        <xs:annotation>
          <xs:documentation>Crookes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGQ">
        <xs:annotation>
          <xs:documentation>Darnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGR">
        <xs:annotation>
          <xs:documentation>Dore and Totley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGS">
        <xs:annotation>
          <xs:documentation>East Ecclesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGT">
        <xs:annotation>
          <xs:documentation>Ecclesall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGU">
        <xs:annotation>
          <xs:documentation>Firth Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGW">
        <xs:annotation>
          <xs:documentation>Fulwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGX">
        <xs:annotation>
          <xs:documentation>Gleadless Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGY">
        <xs:annotation>
          <xs:documentation>Graves Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGGZ">
        <xs:annotation>
          <xs:documentation>Hillsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHA">
        <xs:annotation>
          <xs:documentation>Manor Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHB">
        <xs:annotation>
          <xs:documentation>Mosborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHC">
        <xs:annotation>
          <xs:documentation>Nether Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHD">
        <xs:annotation>
          <xs:documentation>Richmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHE">
        <xs:annotation>
          <xs:documentation>Shiregreen and Brightside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHF">
        <xs:annotation>
          <xs:documentation>Southey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHG">
        <xs:annotation>
          <xs:documentation>Stannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHH">
        <xs:annotation>
          <xs:documentation>Stocksbridge and Upper Don</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHJ">
        <xs:annotation>
          <xs:documentation>Walkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHK">
        <xs:annotation>
          <xs:documentation>West Ecclesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CGHL">
        <xs:annotation>
          <xs:documentation>Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHFZ">
        <xs:annotation>
          <xs:documentation>Birtley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGA">
        <xs:annotation>
          <xs:documentation>Blaydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGB">
        <xs:annotation>
          <xs:documentation>Bridges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGC">
        <xs:annotation>
          <xs:documentation>Chopwell and Rowlands Gill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGD">
        <xs:annotation>
          <xs:documentation>Chowdene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGE">
        <xs:annotation>
          <xs:documentation>Crawcrook and Greenside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGF">
        <xs:annotation>
          <xs:documentation>Deckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGG">
        <xs:annotation>
          <xs:documentation>Dunston and Teams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGH">
        <xs:annotation>
          <xs:documentation>Dunston Hill and Whickham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGJ">
        <xs:annotation>
          <xs:documentation>Felling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGK">
        <xs:annotation>
          <xs:documentation>High Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGL">
        <xs:annotation>
          <xs:documentation>Lamesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGM">
        <xs:annotation>
          <xs:documentation>Lobley Hill and Bensham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGN">
        <xs:annotation>
          <xs:documentation>Low Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGP">
        <xs:annotation>
          <xs:documentation>Pelaw and Heworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGQ">
        <xs:annotation>
          <xs:documentation>Ryton, Crookhill and Stella</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGR">
        <xs:annotation>
          <xs:documentation>Saltwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGS">
        <xs:annotation>
          <xs:documentation>Wardley and Leam Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGT">
        <xs:annotation>
          <xs:documentation>Whickham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGU">
        <xs:annotation>
          <xs:documentation>Whickham South and Sunniside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGW">
        <xs:annotation>
          <xs:documentation>Windy Nook and Whitehills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CHGX">
        <xs:annotation>
          <xs:documentation>Winlaton and High Spen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGD">
        <xs:annotation>
          <xs:documentation>Benwell and Scotswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGE">
        <xs:annotation>
          <xs:documentation>Blakelaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGF">
        <xs:annotation>
          <xs:documentation>Byker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGG">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGH">
        <xs:annotation>
          <xs:documentation>Dene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGJ">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGK">
        <xs:annotation>
          <xs:documentation>East Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGL">
        <xs:annotation>
          <xs:documentation>Elswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGM">
        <xs:annotation>
          <xs:documentation>Fawdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGN">
        <xs:annotation>
          <xs:documentation>Fenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGP">
        <xs:annotation>
          <xs:documentation>Kenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGQ">
        <xs:annotation>
          <xs:documentation>Lemington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGR">
        <xs:annotation>
          <xs:documentation>Newburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGS">
        <xs:annotation>
          <xs:documentation>North Heaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGT">
        <xs:annotation>
          <xs:documentation>North Jesmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGU">
        <xs:annotation>
          <xs:documentation>Ouseburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGW">
        <xs:annotation>
          <xs:documentation>Parklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGX">
        <xs:annotation>
          <xs:documentation>South Heaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGY">
        <xs:annotation>
          <xs:documentation>South Jesmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJGZ">
        <xs:annotation>
          <xs:documentation>Walker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHA">
        <xs:annotation>
          <xs:documentation>Walkergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHB">
        <xs:annotation>
          <xs:documentation>Westerhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHC">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHD">
        <xs:annotation>
          <xs:documentation>West Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHE">
        <xs:annotation>
          <xs:documentation>Wingrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJHF">
        <xs:annotation>
          <xs:documentation>Woolsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKFX">
        <xs:annotation>
          <xs:documentation>Battle Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKFY">
        <xs:annotation>
          <xs:documentation>Benton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKFZ">
        <xs:annotation>
          <xs:documentation>Camperdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGA">
        <xs:annotation>
          <xs:documentation>Chirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGB">
        <xs:annotation>
          <xs:documentation>Collingwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGC">
        <xs:annotation>
          <xs:documentation>Cullercoats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGD">
        <xs:annotation>
          <xs:documentation>Howdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGE">
        <xs:annotation>
          <xs:documentation>Killingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGF">
        <xs:annotation>
          <xs:documentation>Longbenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGG">
        <xs:annotation>
          <xs:documentation>Monkseaton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGH">
        <xs:annotation>
          <xs:documentation>Monkseaton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGJ">
        <xs:annotation>
          <xs:documentation>Northumberland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGK">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGL">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGM">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGN">
        <xs:annotation>
          <xs:documentation>Tynemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGP">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGQ">
        <xs:annotation>
          <xs:documentation>Wallsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGR">
        <xs:annotation>
          <xs:documentation>Weetslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CKGS">
        <xs:annotation>
          <xs:documentation>Whitley Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLFX">
        <xs:annotation>
          <xs:documentation>Beacon and Bents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLFY">
        <xs:annotation>
          <xs:documentation>Bede</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLFZ">
        <xs:annotation>
          <xs:documentation>Biddick and All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGA">
        <xs:annotation>
          <xs:documentation>Boldon Colliery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGB">
        <xs:annotation>
          <xs:documentation>Cleadon and East Boldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGC">
        <xs:annotation>
          <xs:documentation>Cleadon Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGD">
        <xs:annotation>
          <xs:documentation>Fellgate and Hedworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGE">
        <xs:annotation>
          <xs:documentation>Harton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGF">
        <xs:annotation>
          <xs:documentation>Hebburn North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGG">
        <xs:annotation>
          <xs:documentation>Hebburn South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGH">
        <xs:annotation>
          <xs:documentation>Horsley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGJ">
        <xs:annotation>
          <xs:documentation>Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGK">
        <xs:annotation>
          <xs:documentation>Primrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGL">
        <xs:annotation>
          <xs:documentation>Simonside and Rekendyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGM">
        <xs:annotation>
          <xs:documentation>Westoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGN">
        <xs:annotation>
          <xs:documentation>West Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGP">
        <xs:annotation>
          <xs:documentation>Whitburn and Marsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CLGQ">
        <xs:annotation>
          <xs:documentation>Whiteleas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGC">
        <xs:annotation>
          <xs:documentation>Barnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGD">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGE">
        <xs:annotation>
          <xs:documentation>Copt Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGF">
        <xs:annotation>
          <xs:documentation>Doxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGG">
        <xs:annotation>
          <xs:documentation>Fulwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGH">
        <xs:annotation>
          <xs:documentation>Hendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGJ">
        <xs:annotation>
          <xs:documentation>Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGK">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGL">
        <xs:annotation>
          <xs:documentation>Millfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGM">
        <xs:annotation>
          <xs:documentation>Pallion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGN">
        <xs:annotation>
          <xs:documentation>Redhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGP">
        <xs:annotation>
          <xs:documentation>Ryhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGQ">
        <xs:annotation>
          <xs:documentation>St Anne's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGR">
        <xs:annotation>
          <xs:documentation>St Chad's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGS">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGT">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGU">
        <xs:annotation>
          <xs:documentation>Sandhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGW">
        <xs:annotation>
          <xs:documentation>Shiney Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGX">
        <xs:annotation>
          <xs:documentation>Silksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGY">
        <xs:annotation>
          <xs:documentation>Southwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMGZ">
        <xs:annotation>
          <xs:documentation>Washington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMHA">
        <xs:annotation>
          <xs:documentation>Washington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMHB">
        <xs:annotation>
          <xs:documentation>Washington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMHC">
        <xs:annotation>
          <xs:documentation>Washington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CMHD">
        <xs:annotation>
          <xs:documentation>Washington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGS">
        <xs:annotation>
          <xs:documentation>Acocks Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGT">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGU">
        <xs:annotation>
          <xs:documentation>Bartley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGW">
        <xs:annotation>
          <xs:documentation>Billesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGX">
        <xs:annotation>
          <xs:documentation>Bordesley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGY">
        <xs:annotation>
          <xs:documentation>Bournville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNGZ">
        <xs:annotation>
          <xs:documentation>Brandwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHA">
        <xs:annotation>
          <xs:documentation>Edgbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHB">
        <xs:annotation>
          <xs:documentation>Erdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHC">
        <xs:annotation>
          <xs:documentation>Hall Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHD">
        <xs:annotation>
          <xs:documentation>Handsworth Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHE">
        <xs:annotation>
          <xs:documentation>Harborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHF">
        <xs:annotation>
          <xs:documentation>Hodge Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHG">
        <xs:annotation>
          <xs:documentation>Kings Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHH">
        <xs:annotation>
          <xs:documentation>Kingstanding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHJ">
        <xs:annotation>
          <xs:documentation>Ladywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHK">
        <xs:annotation>
          <xs:documentation>Longbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHL">
        <xs:annotation>
          <xs:documentation>Lozells and East Handsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHM">
        <xs:annotation>
          <xs:documentation>Moseley and Kings Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHN">
        <xs:annotation>
          <xs:documentation>Nechells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHP">
        <xs:annotation>
          <xs:documentation>Northfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHQ">
        <xs:annotation>
          <xs:documentation>Oscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHR">
        <xs:annotation>
          <xs:documentation>Perry Barr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHS">
        <xs:annotation>
          <xs:documentation>Quinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHT">
        <xs:annotation>
          <xs:documentation>Selly Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHU">
        <xs:annotation>
          <xs:documentation>Shard End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHW">
        <xs:annotation>
          <xs:documentation>Sheldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHX">
        <xs:annotation>
          <xs:documentation>Soho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHY">
        <xs:annotation>
          <xs:documentation>South Yardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNHZ">
        <xs:annotation>
          <xs:documentation>Sparkbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJA">
        <xs:annotation>
          <xs:documentation>Springfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJB">
        <xs:annotation>
          <xs:documentation>Stechford and Yardley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJC">
        <xs:annotation>
          <xs:documentation>Stockland Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJD">
        <xs:annotation>
          <xs:documentation>Sutton Four Oaks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJE">
        <xs:annotation>
          <xs:documentation>Sutton New Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJF">
        <xs:annotation>
          <xs:documentation>Sutton Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJG">
        <xs:annotation>
          <xs:documentation>Sutton Vesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJH">
        <xs:annotation>
          <xs:documentation>Tyburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJJ">
        <xs:annotation>
          <xs:documentation>Washwood Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CNJK">
        <xs:annotation>
          <xs:documentation>Weoley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQFU">
        <xs:annotation>
          <xs:documentation>Bablake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQFW">
        <xs:annotation>
          <xs:documentation>Binley and Willenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQFX">
        <xs:annotation>
          <xs:documentation>Cheylesmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQFY">
        <xs:annotation>
          <xs:documentation>Earlsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQFZ">
        <xs:annotation>
          <xs:documentation>Foleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGA">
        <xs:annotation>
          <xs:documentation>Henley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGB">
        <xs:annotation>
          <xs:documentation>Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGC">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGD">
        <xs:annotation>
          <xs:documentation>Lower Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGE">
        <xs:annotation>
          <xs:documentation>Radford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGF">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGG">
        <xs:annotation>
          <xs:documentation>Sherbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGH">
        <xs:annotation>
          <xs:documentation>Upper Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGJ">
        <xs:annotation>
          <xs:documentation>Wainbody</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGK">
        <xs:annotation>
          <xs:documentation>Westwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGL">
        <xs:annotation>
          <xs:documentation>Whoberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGM">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQGN">
        <xs:annotation>
          <xs:documentation>Wyken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGB">
        <xs:annotation>
          <xs:documentation>Amblecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGC">
        <xs:annotation>
          <xs:documentation>Belle Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGD">
        <xs:annotation>
          <xs:documentation>Brierley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGE">
        <xs:annotation>
          <xs:documentation>Brockmoor and Pensnett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGF">
        <xs:annotation>
          <xs:documentation>Castle and Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGG">
        <xs:annotation>
          <xs:documentation>Coseley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGH">
        <xs:annotation>
          <xs:documentation>Cradley and Foxcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGJ">
        <xs:annotation>
          <xs:documentation>Gornal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGK">
        <xs:annotation>
          <xs:documentation>Halesowen North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGL">
        <xs:annotation>
          <xs:documentation>Halesowen South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGM">
        <xs:annotation>
          <xs:documentation>Hayley Green and Cradley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGN">
        <xs:annotation>
          <xs:documentation>Kingswinford North and Wall Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGP">
        <xs:annotation>
          <xs:documentation>Kingswinford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGQ">
        <xs:annotation>
          <xs:documentation>Lye and Wollescote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGR">
        <xs:annotation>
          <xs:documentation>Netherton, Woodside and St Andrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGS">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGT">
        <xs:annotation>
          <xs:documentation>Pedmore and Stourbridge East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGU">
        <xs:annotation>
          <xs:documentation>Quarry Bank and Dudley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGW">
        <xs:annotation>
          <xs:documentation>St James's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGX">
        <xs:annotation>
          <xs:documentation>St Thomas's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGY">
        <xs:annotation>
          <xs:documentation>Sedgley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRGZ">
        <xs:annotation>
          <xs:documentation>Upper Gornal and Woodsetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRHA">
        <xs:annotation>
          <xs:documentation>Wollaston and Stourbridge Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CRHB">
        <xs:annotation>
          <xs:documentation>Wordsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGB">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGC">
        <xs:annotation>
          <xs:documentation>Blackheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGD">
        <xs:annotation>
          <xs:documentation>Bristnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGE">
        <xs:annotation>
          <xs:documentation>Charlemont with Grove Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGF">
        <xs:annotation>
          <xs:documentation>Cradley Heath and Old Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGG">
        <xs:annotation>
          <xs:documentation>Friar Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGH">
        <xs:annotation>
          <xs:documentation>Great Barr with Yew Tree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGJ">
        <xs:annotation>
          <xs:documentation>Great Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGK">
        <xs:annotation>
          <xs:documentation>Greets Green and Lyng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGL">
        <xs:annotation>
          <xs:documentation>Hateley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGM">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGN">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGP">
        <xs:annotation>
          <xs:documentation>Old Warley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGQ">
        <xs:annotation>
          <xs:documentation>Oldbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGR">
        <xs:annotation>
          <xs:documentation>Princes End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGS">
        <xs:annotation>
          <xs:documentation>Rowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGT">
        <xs:annotation>
          <xs:documentation>St Pauls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGU">
        <xs:annotation>
          <xs:documentation>Smethwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGW">
        <xs:annotation>
          <xs:documentation>Soho and Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGX">
        <xs:annotation>
          <xs:documentation>Tipton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGY">
        <xs:annotation>
          <xs:documentation>Tividale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSGZ">
        <xs:annotation>
          <xs:documentation>Wednesbury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSHA">
        <xs:annotation>
          <xs:documentation>Wednesbury South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CSHB">
        <xs:annotation>
          <xs:documentation>West Bromwich Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFT">
        <xs:annotation>
          <xs:documentation>Bickenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFU">
        <xs:annotation>
          <xs:documentation>Blythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFW">
        <xs:annotation>
          <xs:documentation>Castle Bromwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFX">
        <xs:annotation>
          <xs:documentation>Chelmsley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFY">
        <xs:annotation>
          <xs:documentation>Dorridge and Hockley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTFZ">
        <xs:annotation>
          <xs:documentation>Elmdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGA">
        <xs:annotation>
          <xs:documentation>Kingshurst and Fordbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGB">
        <xs:annotation>
          <xs:documentation>Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGC">
        <xs:annotation>
          <xs:documentation>Lyndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGD">
        <xs:annotation>
          <xs:documentation>Meriden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGE">
        <xs:annotation>
          <xs:documentation>Olton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGF">
        <xs:annotation>
          <xs:documentation>St Alphege</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGG">
        <xs:annotation>
          <xs:documentation>Shirley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGH">
        <xs:annotation>
          <xs:documentation>Shirley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGJ">
        <xs:annotation>
          <xs:documentation>Shirley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGK">
        <xs:annotation>
          <xs:documentation>Silhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CTGL">
        <xs:annotation>
          <xs:documentation>Smith's Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUFX">
        <xs:annotation>
          <xs:documentation>Aldridge Central and South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUFY">
        <xs:annotation>
          <xs:documentation>Aldridge North and Walsall Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUFZ">
        <xs:annotation>
          <xs:documentation>Bentley and Darlaston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGA">
        <xs:annotation>
          <xs:documentation>Birchills Leamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGB">
        <xs:annotation>
          <xs:documentation>Blakenall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGC">
        <xs:annotation>
          <xs:documentation>Bloxwich East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGD">
        <xs:annotation>
          <xs:documentation>Bloxwich West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGE">
        <xs:annotation>
          <xs:documentation>Brownhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGF">
        <xs:annotation>
          <xs:documentation>Darlaston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGG">
        <xs:annotation>
          <xs:documentation>Paddock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGH">
        <xs:annotation>
          <xs:documentation>Palfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGJ">
        <xs:annotation>
          <xs:documentation>Pelsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGK">
        <xs:annotation>
          <xs:documentation>Pheasey Park Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGL">
        <xs:annotation>
          <xs:documentation>Pleck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGM">
        <xs:annotation>
          <xs:documentation>Rushall-Shelfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGN">
        <xs:annotation>
          <xs:documentation>St Matthew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGP">
        <xs:annotation>
          <xs:documentation>Short Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGQ">
        <xs:annotation>
          <xs:documentation>Streetly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGR">
        <xs:annotation>
          <xs:documentation>Willenhall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CUGS">
        <xs:annotation>
          <xs:documentation>Willenhall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWFX">
        <xs:annotation>
          <xs:documentation>Bilston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWFY">
        <xs:annotation>
          <xs:documentation>Bilston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWFZ">
        <xs:annotation>
          <xs:documentation>Blakenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGA">
        <xs:annotation>
          <xs:documentation>Bushbury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGB">
        <xs:annotation>
          <xs:documentation>Bushbury South and Low Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGC">
        <xs:annotation>
          <xs:documentation>East Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGD">
        <xs:annotation>
          <xs:documentation>Ettingshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGE">
        <xs:annotation>
          <xs:documentation>Fallings Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGF">
        <xs:annotation>
          <xs:documentation>Graiseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGG">
        <xs:annotation>
          <xs:documentation>Heath Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGH">
        <xs:annotation>
          <xs:documentation>Merry Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGJ">
        <xs:annotation>
          <xs:documentation>Oxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGK">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGL">
        <xs:annotation>
          <xs:documentation>Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGM">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGN">
        <xs:annotation>
          <xs:documentation>Spring Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGP">
        <xs:annotation>
          <xs:documentation>Tettenhall Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGQ">
        <xs:annotation>
          <xs:documentation>Tettenhall Wightwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGR">
        <xs:annotation>
          <xs:documentation>Wednesfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CWGS">
        <xs:annotation>
          <xs:documentation>Wednesfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGH">
        <xs:annotation>
          <xs:documentation>Baildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGJ">
        <xs:annotation>
          <xs:documentation>Bingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGK">
        <xs:annotation>
          <xs:documentation>Bingley Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGL">
        <xs:annotation>
          <xs:documentation>Bolton and Undercliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGM">
        <xs:annotation>
          <xs:documentation>Bowling and Barkerend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGN">
        <xs:annotation>
          <xs:documentation>Bradford Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGP">
        <xs:annotation>
          <xs:documentation>City</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGQ">
        <xs:annotation>
          <xs:documentation>Clayton and Fairweather Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGR">
        <xs:annotation>
          <xs:documentation>Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGS">
        <xs:annotation>
          <xs:documentation>Eccleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGT">
        <xs:annotation>
          <xs:documentation>Great Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGU">
        <xs:annotation>
          <xs:documentation>Heaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGW">
        <xs:annotation>
          <xs:documentation>Idle and Thackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGX">
        <xs:annotation>
          <xs:documentation>Ilkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGY">
        <xs:annotation>
          <xs:documentation>Keighley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXGZ">
        <xs:annotation>
          <xs:documentation>Keighley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHA">
        <xs:annotation>
          <xs:documentation>Keighley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHB">
        <xs:annotation>
          <xs:documentation>Little Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHC">
        <xs:annotation>
          <xs:documentation>Manningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHD">
        <xs:annotation>
          <xs:documentation>Queensbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHE">
        <xs:annotation>
          <xs:documentation>Royds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHF">
        <xs:annotation>
          <xs:documentation>Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHG">
        <xs:annotation>
          <xs:documentation>Thornton and Allerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHH">
        <xs:annotation>
          <xs:documentation>Toller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHJ">
        <xs:annotation>
          <xs:documentation>Tong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHK">
        <xs:annotation>
          <xs:documentation>Wharfedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHL">
        <xs:annotation>
          <xs:documentation>Wibsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHM">
        <xs:annotation>
          <xs:documentation>Windhill and Wrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHN">
        <xs:annotation>
          <xs:documentation>Worth Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CXHP">
        <xs:annotation>
          <xs:documentation>Wyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYFU">
        <xs:annotation>
          <xs:documentation>Brighouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYFW">
        <xs:annotation>
          <xs:documentation>Calder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYFX">
        <xs:annotation>
          <xs:documentation>Elland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYFY">
        <xs:annotation>
          <xs:documentation>Greetland and Stainland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYFZ">
        <xs:annotation>
          <xs:documentation>Hipperholme and Lightcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGA">
        <xs:annotation>
          <xs:documentation>Illingworth and Mixenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGB">
        <xs:annotation>
          <xs:documentation>Luddendenfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGC">
        <xs:annotation>
          <xs:documentation>Northowram and Shelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGD">
        <xs:annotation>
          <xs:documentation>Ovenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGE">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGF">
        <xs:annotation>
          <xs:documentation>Rastrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGG">
        <xs:annotation>
          <xs:documentation>Ryburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGH">
        <xs:annotation>
          <xs:documentation>Skircoat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGJ">
        <xs:annotation>
          <xs:documentation>Sowerby Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGK">
        <xs:annotation>
          <xs:documentation>Todmorden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGL">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CYGM">
        <xs:annotation>
          <xs:documentation>Warley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGB">
        <xs:annotation>
          <xs:documentation>Almondbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGC">
        <xs:annotation>
          <xs:documentation>Ashbrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGD">
        <xs:annotation>
          <xs:documentation>Batley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGE">
        <xs:annotation>
          <xs:documentation>Batley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGF">
        <xs:annotation>
          <xs:documentation>Birstall and Birkenshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGG">
        <xs:annotation>
          <xs:documentation>Cleckheaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGH">
        <xs:annotation>
          <xs:documentation>Colne Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGJ">
        <xs:annotation>
          <xs:documentation>Crosland Moor and Netherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGK">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGL">
        <xs:annotation>
          <xs:documentation>Denby Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGM">
        <xs:annotation>
          <xs:documentation>Dewsbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGN">
        <xs:annotation>
          <xs:documentation>Dewsbury South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGP">
        <xs:annotation>
          <xs:documentation>Dewsbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGQ">
        <xs:annotation>
          <xs:documentation>Golcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGR">
        <xs:annotation>
          <xs:documentation>Greenhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGS">
        <xs:annotation>
          <xs:documentation>Heckmondwike</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGT">
        <xs:annotation>
          <xs:documentation>Holme Valley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGU">
        <xs:annotation>
          <xs:documentation>Holme Valley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGW">
        <xs:annotation>
          <xs:documentation>Kirkburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGX">
        <xs:annotation>
          <xs:documentation>Lindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGY">
        <xs:annotation>
          <xs:documentation>Liversedge and Gomersal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZGZ">
        <xs:annotation>
          <xs:documentation>Mirfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZHA">
        <xs:annotation>
          <xs:documentation>Newsome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGL">
        <xs:annotation>
          <xs:documentation>Adel and Wharfedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGM">
        <xs:annotation>
          <xs:documentation>Alwoodley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGN">
        <xs:annotation>
          <xs:documentation>Ardsley and Robin Hood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGP">
        <xs:annotation>
          <xs:documentation>Armley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGQ">
        <xs:annotation>
          <xs:documentation>Beeston and Holbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGR">
        <xs:annotation>
          <xs:documentation>Bramley and Stanningley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGS">
        <xs:annotation>
          <xs:documentation>Burmantofts and Richmond Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGT">
        <xs:annotation>
          <xs:documentation>Calverley and Farsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGU">
        <xs:annotation>
          <xs:documentation>Chapel Allerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGW">
        <xs:annotation>
          <xs:documentation>City and Hunslet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGX">
        <xs:annotation>
          <xs:documentation>Cross Gates and Whinmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGY">
        <xs:annotation>
          <xs:documentation>Farnley and Wortley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAGZ">
        <xs:annotation>
          <xs:documentation>Garforth and Swillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHA">
        <xs:annotation>
          <xs:documentation>Gipton and Harehills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHB">
        <xs:annotation>
          <xs:documentation>Guiseley and Rawdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHC">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHD">
        <xs:annotation>
          <xs:documentation>Headingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHE">
        <xs:annotation>
          <xs:documentation>Horsforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHF">
        <xs:annotation>
          <xs:documentation>Hyde Park and Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHG">
        <xs:annotation>
          <xs:documentation>Killingbeck and Seacroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHH">
        <xs:annotation>
          <xs:documentation>Kippax and Methley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHJ">
        <xs:annotation>
          <xs:documentation>Kirkstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHK">
        <xs:annotation>
          <xs:documentation>Middleton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHL">
        <xs:annotation>
          <xs:documentation>Moortown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHM">
        <xs:annotation>
          <xs:documentation>Morley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHN">
        <xs:annotation>
          <xs:documentation>Morley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHP">
        <xs:annotation>
          <xs:documentation>Otley and Yeadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHQ">
        <xs:annotation>
          <xs:documentation>Pudsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHR">
        <xs:annotation>
          <xs:documentation>Rothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHS">
        <xs:annotation>
          <xs:documentation>Roundhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHT">
        <xs:annotation>
          <xs:documentation>Temple Newsam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHU">
        <xs:annotation>
          <xs:documentation>Weetwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DAHW">
        <xs:annotation>
          <xs:documentation>Wetherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBFY">
        <xs:annotation>
          <xs:documentation>Ackworth, North Elmsall and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBFZ">
        <xs:annotation>
          <xs:documentation>Airedale and Ferry Fryston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGA">
        <xs:annotation>
          <xs:documentation>Altofts and Whitwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGB">
        <xs:annotation>
          <xs:documentation>Castleford Central and Glasshoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGC">
        <xs:annotation>
          <xs:documentation>Crofton, Ryhill and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGD">
        <xs:annotation>
          <xs:documentation>Featherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGE">
        <xs:annotation>
          <xs:documentation>Hemsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGF">
        <xs:annotation>
          <xs:documentation>Horbury and South Ossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGG">
        <xs:annotation>
          <xs:documentation>Knottingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGH">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGJ">
        <xs:annotation>
          <xs:documentation>Ossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGK">
        <xs:annotation>
          <xs:documentation>Pontefract North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGL">
        <xs:annotation>
          <xs:documentation>Pontefract South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGM">
        <xs:annotation>
          <xs:documentation>South Elmsall and South Kirkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGN">
        <xs:annotation>
          <xs:documentation>Stanley and Outwood East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGP">
        <xs:annotation>
          <xs:documentation>Wakefield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGQ">
        <xs:annotation>
          <xs:documentation>Wakefield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGR">
        <xs:annotation>
          <xs:documentation>Wakefield Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGS">
        <xs:annotation>
          <xs:documentation>Wakefield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGT">
        <xs:annotation>
          <xs:documentation>Wakefield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DBGU">
        <xs:annotation>
          <xs:documentation>Wrenthorpe and Outwood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMT">
        <xs:annotation>
          <xs:documentation>Brus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMU">
        <xs:annotation>
          <xs:documentation>Burn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMW">
        <xs:annotation>
          <xs:documentation>Dyke House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMX">
        <xs:annotation>
          <xs:documentation>Elwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMY">
        <xs:annotation>
          <xs:documentation>Fens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBMZ">
        <xs:annotation>
          <xs:documentation>Foggy Furze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNA">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNB">
        <xs:annotation>
          <xs:documentation>Greatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNC">
        <xs:annotation>
          <xs:documentation>Hart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBND">
        <xs:annotation>
          <xs:documentation>Owton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNE">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNF">
        <xs:annotation>
          <xs:documentation>Rift House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNG">
        <xs:annotation>
          <xs:documentation>Rossmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNH">
        <xs:annotation>
          <xs:documentation>St Hilda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNJ">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNK">
        <xs:annotation>
          <xs:documentation>Stranton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EBNL">
        <xs:annotation>
          <xs:documentation>Throston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNC">
        <xs:annotation>
          <xs:documentation>Acklam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECND">
        <xs:annotation>
          <xs:documentation>Ayresome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNE">
        <xs:annotation>
          <xs:documentation>Beckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNF">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNG">
        <xs:annotation>
          <xs:documentation>Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNH">
        <xs:annotation>
          <xs:documentation>Clairville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNJ">
        <xs:annotation>
          <xs:documentation>Coulby Newham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNK">
        <xs:annotation>
          <xs:documentation>Gresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNL">
        <xs:annotation>
          <xs:documentation>Hemlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNM">
        <xs:annotation>
          <xs:documentation>Kader</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNN">
        <xs:annotation>
          <xs:documentation>Ladgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNP">
        <xs:annotation>
          <xs:documentation>Linthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNQ">
        <xs:annotation>
          <xs:documentation>North Ormesby and Brambles Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNR">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNS">
        <xs:annotation>
          <xs:documentation>Marton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNT">
        <xs:annotation>
          <xs:documentation>Middlehaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNU">
        <xs:annotation>
          <xs:documentation>Nunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNW">
        <xs:annotation>
          <xs:documentation>Pallister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNX">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNY">
        <xs:annotation>
          <xs:documentation>Park End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECNZ">
        <xs:annotation>
          <xs:documentation>Stainton and Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECPA">
        <xs:annotation>
          <xs:documentation>Thorntree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ECPB">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EEMZ">
        <xs:annotation>
          <xs:documentation>Brotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENA">
        <xs:annotation>
          <xs:documentation>Coatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENB">
        <xs:annotation>
          <xs:documentation>Dormanstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENC">
        <xs:annotation>
          <xs:documentation>Eston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EEND">
        <xs:annotation>
          <xs:documentation>Grangetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENE">
        <xs:annotation>
          <xs:documentation>Guisborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENF">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENG">
        <xs:annotation>
          <xs:documentation>Kirkleatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENH">
        <xs:annotation>
          <xs:documentation>Lockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENJ">
        <xs:annotation>
          <xs:documentation>Loftus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENK">
        <xs:annotation>
          <xs:documentation>Longbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENL">
        <xs:annotation>
          <xs:documentation>Newcomen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENM">
        <xs:annotation>
          <xs:documentation>Normanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENN">
        <xs:annotation>
          <xs:documentation>Ormesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENP">
        <xs:annotation>
          <xs:documentation>St Germain's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENQ">
        <xs:annotation>
          <xs:documentation>Saltburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENR">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENS">
        <xs:annotation>
          <xs:documentation>South Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENT">
        <xs:annotation>
          <xs:documentation>Teesville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENU">
        <xs:annotation>
          <xs:documentation>West Dyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENW">
        <xs:annotation>
          <xs:documentation>Westworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EENX">
        <xs:annotation>
          <xs:documentation>Zetland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNH">
        <xs:annotation>
          <xs:documentation>Billingham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNJ">
        <xs:annotation>
          <xs:documentation>Billingham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNK">
        <xs:annotation>
          <xs:documentation>Billingham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNL">
        <xs:annotation>
          <xs:documentation>Billingham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNM">
        <xs:annotation>
          <xs:documentation>Billingham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNN">
        <xs:annotation>
          <xs:documentation>Bishopsgarth and Elm Tree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNP">
        <xs:annotation>
          <xs:documentation>Eaglescliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNQ">
        <xs:annotation>
          <xs:documentation>Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNR">
        <xs:annotation>
          <xs:documentation>Grangefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNS">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNT">
        <xs:annotation>
          <xs:documentation>Hartburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNU">
        <xs:annotation>
          <xs:documentation>Ingleby Barwick East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNW">
        <xs:annotation>
          <xs:documentation>Ingleby Barwick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNX">
        <xs:annotation>
          <xs:documentation>Mandale and Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNY">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFNZ">
        <xs:annotation>
          <xs:documentation>Northern Parishes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPA">
        <xs:annotation>
          <xs:documentation>Norton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPB">
        <xs:annotation>
          <xs:documentation>Norton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPC">
        <xs:annotation>
          <xs:documentation>Norton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPD">
        <xs:annotation>
          <xs:documentation>Parkfield and Oxbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPE">
        <xs:annotation>
          <xs:documentation>Roseworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPF">
        <xs:annotation>
          <xs:documentation>Stainsby Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPG">
        <xs:annotation>
          <xs:documentation>Stockton Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPH">
        <xs:annotation>
          <xs:documentation>Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPJ">
        <xs:annotation>
          <xs:documentation>Western Parishes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EFPK">
        <xs:annotation>
          <xs:documentation>Yarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNC">
        <xs:annotation>
          <xs:documentation>Bank Top</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHND">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNE">
        <xs:annotation>
          <xs:documentation>Cockerton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNF">
        <xs:annotation>
          <xs:documentation>Cockerton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNG">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNH">
        <xs:annotation>
          <xs:documentation>Eastbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNJ">
        <xs:annotation>
          <xs:documentation>Faverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNK">
        <xs:annotation>
          <xs:documentation>Harrowgate Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNL">
        <xs:annotation>
          <xs:documentation>Haughton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNM">
        <xs:annotation>
          <xs:documentation>Haughton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNN">
        <xs:annotation>
          <xs:documentation>Haughton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNP">
        <xs:annotation>
          <xs:documentation>Heighington and Coniscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNQ">
        <xs:annotation>
          <xs:documentation>Hummersknott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNR">
        <xs:annotation>
          <xs:documentation>Hurworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNS">
        <xs:annotation>
          <xs:documentation>Lascelles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNT">
        <xs:annotation>
          <xs:documentation>Lingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNU">
        <xs:annotation>
          <xs:documentation>Middleton St George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNW">
        <xs:annotation>
          <xs:documentation>Mowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNX">
        <xs:annotation>
          <xs:documentation>North Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNY">
        <xs:annotation>
          <xs:documentation>Northgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHNZ">
        <xs:annotation>
          <xs:documentation>Park East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHPA">
        <xs:annotation>
          <xs:documentation>Park West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHPB">
        <xs:annotation>
          <xs:documentation>Pierremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EHPC">
        <xs:annotation>
          <xs:documentation>Sadberge and Whessoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETMY">
        <xs:annotation>
          <xs:documentation>Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETMZ">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNA">
        <xs:annotation>
          <xs:documentation>Birchfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNB">
        <xs:annotation>
          <xs:documentation>Broadheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNC">
        <xs:annotation>
          <xs:documentation>Castlefields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETND">
        <xs:annotation>
          <xs:documentation>Daresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNE">
        <xs:annotation>
          <xs:documentation>Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNF">
        <xs:annotation>
          <xs:documentation>Farnworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNG">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNH">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNJ">
        <xs:annotation>
          <xs:documentation>Halton Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNK">
        <xs:annotation>
          <xs:documentation>Halton Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNL">
        <xs:annotation>
          <xs:documentation>Halton View</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNM">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNN">
        <xs:annotation>
          <xs:documentation>Hough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNP">
        <xs:annotation>
          <xs:documentation>Kingsway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNQ">
        <xs:annotation>
          <xs:documentation>Mersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNR">
        <xs:annotation>
          <xs:documentation>Norton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNS">
        <xs:annotation>
          <xs:documentation>Norton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNT">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ETNU">
        <xs:annotation>
          <xs:documentation>Windmill Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNB">
        <xs:annotation>
          <xs:documentation>Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNC">
        <xs:annotation>
          <xs:documentation>Bewsey and Whitecross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUND">
        <xs:annotation>
          <xs:documentation>Birchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNE">
        <xs:annotation>
          <xs:documentation>Burtonwood and Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNF">
        <xs:annotation>
          <xs:documentation>Culcheth, Glazebury and Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNG">
        <xs:annotation>
          <xs:documentation>Fairfield and Howley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNH">
        <xs:annotation>
          <xs:documentation>Grappenhall and Thelwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNJ">
        <xs:annotation>
          <xs:documentation>Great Sankey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNK">
        <xs:annotation>
          <xs:documentation>Great Sankey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNL">
        <xs:annotation>
          <xs:documentation>Hatton, Stretton and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNM">
        <xs:annotation>
          <xs:documentation>Latchford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNN">
        <xs:annotation>
          <xs:documentation>Latchford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNP">
        <xs:annotation>
          <xs:documentation>Lymm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNQ">
        <xs:annotation>
          <xs:documentation>Orford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNR">
        <xs:annotation>
          <xs:documentation>Penketh and Cuerdley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNS">
        <xs:annotation>
          <xs:documentation>Poplars and Hulme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNT">
        <xs:annotation>
          <xs:documentation>Poulton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNU">
        <xs:annotation>
          <xs:documentation>Poulton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNW">
        <xs:annotation>
          <xs:documentation>Rixton and Woolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNX">
        <xs:annotation>
          <xs:documentation>Stockton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNY">
        <xs:annotation>
          <xs:documentation>Westbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EUNZ">
        <xs:annotation>
          <xs:documentation>Whittle Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXMZ">
        <xs:annotation>
          <xs:documentation>Audley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNA">
        <xs:annotation>
          <xs:documentation>Bastwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNB">
        <xs:annotation>
          <xs:documentation>Beardwood with Lammack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNC">
        <xs:annotation>
          <xs:documentation>Corporation Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXND">
        <xs:annotation>
          <xs:documentation>Earcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNE">
        <xs:annotation>
          <xs:documentation>East Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNF">
        <xs:annotation>
          <xs:documentation>Ewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNG">
        <xs:annotation>
          <xs:documentation>Fernhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNH">
        <xs:annotation>
          <xs:documentation>Higher Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNJ">
        <xs:annotation>
          <xs:documentation>Little Harwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNK">
        <xs:annotation>
          <xs:documentation>Livesey with Pleasington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNL">
        <xs:annotation>
          <xs:documentation>Marsh House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNM">
        <xs:annotation>
          <xs:documentation>Meadowhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNN">
        <xs:annotation>
          <xs:documentation>Mill Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNP">
        <xs:annotation>
          <xs:documentation>North Turton with Tockholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNQ">
        <xs:annotation>
          <xs:documentation>Queen's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNR">
        <xs:annotation>
          <xs:documentation>Roe Lee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNS">
        <xs:annotation>
          <xs:documentation>Shadsworth with Whitebirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNT">
        <xs:annotation>
          <xs:documentation>Shear Brow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNU">
        <xs:annotation>
          <xs:documentation>Sudell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNW">
        <xs:annotation>
          <xs:documentation>Sunnyhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNX">
        <xs:annotation>
          <xs:documentation>Wensley Fold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EXNY">
        <xs:annotation>
          <xs:documentation>Whitehall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYMZ">
        <xs:annotation>
          <xs:documentation>Anchorsholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNA">
        <xs:annotation>
          <xs:documentation>Bispham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNB">
        <xs:annotation>
          <xs:documentation>Bloomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNC">
        <xs:annotation>
          <xs:documentation>Brunswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYND">
        <xs:annotation>
          <xs:documentation>Claremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNE">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNF">
        <xs:annotation>
          <xs:documentation>Greenlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNG">
        <xs:annotation>
          <xs:documentation>Hawes Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNH">
        <xs:annotation>
          <xs:documentation>Highfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNJ">
        <xs:annotation>
          <xs:documentation>Ingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNK">
        <xs:annotation>
          <xs:documentation>Layton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNL">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNM">
        <xs:annotation>
          <xs:documentation>Norbreck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNN">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNP">
        <xs:annotation>
          <xs:documentation>Squires Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNQ">
        <xs:annotation>
          <xs:documentation>Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNR">
        <xs:annotation>
          <xs:documentation>Talbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNS">
        <xs:annotation>
          <xs:documentation>Tyldesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNT">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNU">
        <xs:annotation>
          <xs:documentation>Warbreck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EYNW">
        <xs:annotation>
          <xs:documentation>Waterloo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FAMX">
        <xs:annotation>
          <xs:documentation>Avenue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FAMY">
        <xs:annotation>
          <xs:documentation>Beverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FAMZ">
        <xs:annotation>
          <xs:documentation>Boothferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANA">
        <xs:annotation>
          <xs:documentation>Bransholme East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANB">
        <xs:annotation>
          <xs:documentation>Bransholme West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANC">
        <xs:annotation>
          <xs:documentation>Bricknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FAND">
        <xs:annotation>
          <xs:documentation>Derringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANE">
        <xs:annotation>
          <xs:documentation>Drypool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANF">
        <xs:annotation>
          <xs:documentation>Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANG">
        <xs:annotation>
          <xs:documentation>Ings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANH">
        <xs:annotation>
          <xs:documentation>Kings Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANJ">
        <xs:annotation>
          <xs:documentation>Longhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANK">
        <xs:annotation>
          <xs:documentation>Marfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANL">
        <xs:annotation>
          <xs:documentation>Myton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANM">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANN">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANP">
        <xs:annotation>
          <xs:documentation>Orchard Park and Greenwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANQ">
        <xs:annotation>
          <xs:documentation>Pickering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANR">
        <xs:annotation>
          <xs:documentation>St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANS">
        <xs:annotation>
          <xs:documentation>Southcoates East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANT">
        <xs:annotation>
          <xs:documentation>Southcoates West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANU">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FANW">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBND">
        <xs:annotation>
          <xs:documentation>Beverley Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNE">
        <xs:annotation>
          <xs:documentation>Bridlington Central and Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNF">
        <xs:annotation>
          <xs:documentation>Bridlington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNG">
        <xs:annotation>
          <xs:documentation>Bridlington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNH">
        <xs:annotation>
          <xs:documentation>Cottingham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNJ">
        <xs:annotation>
          <xs:documentation>Cottingham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNK">
        <xs:annotation>
          <xs:documentation>Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNL">
        <xs:annotation>
          <xs:documentation>Driffield and Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNM">
        <xs:annotation>
          <xs:documentation>East Wolds and Coastal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNN">
        <xs:annotation>
          <xs:documentation>Goole North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNP">
        <xs:annotation>
          <xs:documentation>Goole South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNQ">
        <xs:annotation>
          <xs:documentation>Hessle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNR">
        <xs:annotation>
          <xs:documentation>Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNS">
        <xs:annotation>
          <xs:documentation>Howdenshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNT">
        <xs:annotation>
          <xs:documentation>Mid Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNU">
        <xs:annotation>
          <xs:documentation>Minster and Woodmansey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNW">
        <xs:annotation>
          <xs:documentation>North Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNX">
        <xs:annotation>
          <xs:documentation>Pocklington Provincial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNY">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBNZ">
        <xs:annotation>
          <xs:documentation>Snaith, Airmyn, Rawcliffe and Marshland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPA">
        <xs:annotation>
          <xs:documentation>South East Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPB">
        <xs:annotation>
          <xs:documentation>South Hunsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPC">
        <xs:annotation>
          <xs:documentation>South West Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPD">
        <xs:annotation>
          <xs:documentation>Tranby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPE">
        <xs:annotation>
          <xs:documentation>Willerby and Kirk Ella</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FBPF">
        <xs:annotation>
          <xs:documentation>Wolds Weighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMQ">
        <xs:annotation>
          <xs:documentation>Croft Baker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMR">
        <xs:annotation>
          <xs:documentation>East Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMS">
        <xs:annotation>
          <xs:documentation>Freshney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMT">
        <xs:annotation>
          <xs:documentation>Haverstoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMU">
        <xs:annotation>
          <xs:documentation>Heneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMW">
        <xs:annotation>
          <xs:documentation>Humberston and New Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMX">
        <xs:annotation>
          <xs:documentation>Immingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMY">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCMZ">
        <xs:annotation>
          <xs:documentation>Scartho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCNA">
        <xs:annotation>
          <xs:documentation>Sidney Sussex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCNB">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCNC">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCND">
        <xs:annotation>
          <xs:documentation>West Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCNE">
        <xs:annotation>
          <xs:documentation>Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FCNF">
        <xs:annotation>
          <xs:documentation>Yarborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMR">
        <xs:annotation>
          <xs:documentation>Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMS">
        <xs:annotation>
          <xs:documentation>Axholme Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMT">
        <xs:annotation>
          <xs:documentation>Axholme North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMU">
        <xs:annotation>
          <xs:documentation>Axholme South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMW">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMX">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMY">
        <xs:annotation>
          <xs:documentation>Brigg and Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDMZ">
        <xs:annotation>
          <xs:documentation>Broughton and Appleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNA">
        <xs:annotation>
          <xs:documentation>Brumby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNB">
        <xs:annotation>
          <xs:documentation>Burringham and Gunness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNC">
        <xs:annotation>
          <xs:documentation>Burton upon Stather and Winterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDND">
        <xs:annotation>
          <xs:documentation>Crosby and Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNE">
        <xs:annotation>
          <xs:documentation>Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNF">
        <xs:annotation>
          <xs:documentation>Frodingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNG">
        <xs:annotation>
          <xs:documentation>Kingsway with Lincoln Gardens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNH">
        <xs:annotation>
          <xs:documentation>Ridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FDNJ">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNG">
        <xs:annotation>
          <xs:documentation>Acomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNH">
        <xs:annotation>
          <xs:documentation>Bishopthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNJ">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNK">
        <xs:annotation>
          <xs:documentation>Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNL">
        <xs:annotation>
          <xs:documentation>Dringhouses and Woodthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNM">
        <xs:annotation>
          <xs:documentation>Fishergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNN">
        <xs:annotation>
          <xs:documentation>Fulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNP">
        <xs:annotation>
          <xs:documentation>Guildhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNQ">
        <xs:annotation>
          <xs:documentation>Haxby and Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNR">
        <xs:annotation>
          <xs:documentation>Heslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNS">
        <xs:annotation>
          <xs:documentation>Heworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNT">
        <xs:annotation>
          <xs:documentation>Heworth Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNU">
        <xs:annotation>
          <xs:documentation>Holgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNW">
        <xs:annotation>
          <xs:documentation>Hull Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNX">
        <xs:annotation>
          <xs:documentation>Huntington and New Earswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNY">
        <xs:annotation>
          <xs:documentation>Micklegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFNZ">
        <xs:annotation>
          <xs:documentation>Osbaldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFPA">
        <xs:annotation>
          <xs:documentation>Rural West York</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFPB">
        <xs:annotation>
          <xs:documentation>Skelton, Rawcliffe and Clifton Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFPC">
        <xs:annotation>
          <xs:documentation>Strensall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFPD">
        <xs:annotation>
          <xs:documentation>Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FFPE">
        <xs:annotation>
          <xs:documentation>Wheldrake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKMX">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKMY">
        <xs:annotation>
          <xs:documentation>Allestree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKMZ">
        <xs:annotation>
          <xs:documentation>Alvaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNA">
        <xs:annotation>
          <xs:documentation>Arboretum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNB">
        <xs:annotation>
          <xs:documentation>Blagreaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNC">
        <xs:annotation>
          <xs:documentation>Boulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKND">
        <xs:annotation>
          <xs:documentation>Chaddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNE">
        <xs:annotation>
          <xs:documentation>Chellaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNF">
        <xs:annotation>
          <xs:documentation>Darley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNG">
        <xs:annotation>
          <xs:documentation>Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNH">
        <xs:annotation>
          <xs:documentation>Littleover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNJ">
        <xs:annotation>
          <xs:documentation>Mackworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNK">
        <xs:annotation>
          <xs:documentation>Mickleover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNL">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNM">
        <xs:annotation>
          <xs:documentation>Oakwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNN">
        <xs:annotation>
          <xs:documentation>Sinfin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FKNP">
        <xs:annotation>
          <xs:documentation>Spondon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNF">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNG">
        <xs:annotation>
          <xs:documentation>Aylestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNH">
        <xs:annotation>
          <xs:documentation>Beaumont Leys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNJ">
        <xs:annotation>
          <xs:documentation>Belgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNK">
        <xs:annotation>
          <xs:documentation>Braunstone Park and Rowley Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNL">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNM">
        <xs:annotation>
          <xs:documentation>Charnwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNN">
        <xs:annotation>
          <xs:documentation>Coleman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNP">
        <xs:annotation>
          <xs:documentation>Evington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNQ">
        <xs:annotation>
          <xs:documentation>Eyres Monsell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNR">
        <xs:annotation>
          <xs:documentation>Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNS">
        <xs:annotation>
          <xs:documentation>Freemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNT">
        <xs:annotation>
          <xs:documentation>Humberstone and Hamilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNU">
        <xs:annotation>
          <xs:documentation>Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNW">
        <xs:annotation>
          <xs:documentation>Latimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNX">
        <xs:annotation>
          <xs:documentation>New Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNY">
        <xs:annotation>
          <xs:documentation>Rushey Mead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNNZ">
        <xs:annotation>
          <xs:documentation>Spinney Hills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNPA">
        <xs:annotation>
          <xs:documentation>Stoneygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNPB">
        <xs:annotation>
          <xs:documentation>Thurncourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNPC">
        <xs:annotation>
          <xs:documentation>Westcotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FNPD">
        <xs:annotation>
          <xs:documentation>Western Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMS">
        <xs:annotation>
          <xs:documentation>Braunston and Belton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMT">
        <xs:annotation>
          <xs:documentation>Cottesmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMU">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMW">
        <xs:annotation>
          <xs:documentation>Greetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMX">
        <xs:annotation>
          <xs:documentation>Ketton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMY">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPMZ">
        <xs:annotation>
          <xs:documentation>Lyddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNA">
        <xs:annotation>
          <xs:documentation>Martinsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNB">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNC">
        <xs:annotation>
          <xs:documentation>Oakham North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPND">
        <xs:annotation>
          <xs:documentation>Oakham North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNE">
        <xs:annotation>
          <xs:documentation>Oakham South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNF">
        <xs:annotation>
          <xs:documentation>Oakham South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNG">
        <xs:annotation>
          <xs:documentation>Ryhall and Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNH">
        <xs:annotation>
          <xs:documentation>Uppingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FPNJ">
        <xs:annotation>
          <xs:documentation>Whissendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNE">
        <xs:annotation>
          <xs:documentation>Arboretum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNF">
        <xs:annotation>
          <xs:documentation>Aspley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNG">
        <xs:annotation>
          <xs:documentation>Basford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNH">
        <xs:annotation>
          <xs:documentation>Berridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNJ">
        <xs:annotation>
          <xs:documentation>Bestwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNK">
        <xs:annotation>
          <xs:documentation>Bilborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNL">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNM">
        <xs:annotation>
          <xs:documentation>Bulwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNN">
        <xs:annotation>
          <xs:documentation>Bulwell Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNP">
        <xs:annotation>
          <xs:documentation>Clifton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNQ">
        <xs:annotation>
          <xs:documentation>Clifton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNR">
        <xs:annotation>
          <xs:documentation>Dales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNS">
        <xs:annotation>
          <xs:documentation>Dunkirk and Lenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNT">
        <xs:annotation>
          <xs:documentation>Leen Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNU">
        <xs:annotation>
          <xs:documentation>Mapperley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNW">
        <xs:annotation>
          <xs:documentation>Radford and Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNX">
        <xs:annotation>
          <xs:documentation>St Ann's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNY">
        <xs:annotation>
          <xs:documentation>Sherwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYNZ">
        <xs:annotation>
          <xs:documentation>Wollaton East and Lenton Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FYPA">
        <xs:annotation>
          <xs:documentation>Wollaton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GANY">
        <xs:annotation>
          <xs:documentation>Aylestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GANZ">
        <xs:annotation>
          <xs:documentation>Backbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPA">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPB">
        <xs:annotation>
          <xs:documentation>Bircher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPC">
        <xs:annotation>
          <xs:documentation>Bringsty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPD">
        <xs:annotation>
          <xs:documentation>Bromyard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPE">
        <xs:annotation>
          <xs:documentation>Burghill, Holmer and Lyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPF">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPG">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPH">
        <xs:annotation>
          <xs:documentation>Credenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPJ">
        <xs:annotation>
          <xs:documentation>Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPK">
        <xs:annotation>
          <xs:documentation>Golden Cross with Weobley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPL">
        <xs:annotation>
          <xs:documentation>Golden Valley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPM">
        <xs:annotation>
          <xs:documentation>Golden Valley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPN">
        <xs:annotation>
          <xs:documentation>Hagley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPP">
        <xs:annotation>
          <xs:documentation>Hampton Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPQ">
        <xs:annotation>
          <xs:documentation>Hollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPR">
        <xs:annotation>
          <xs:documentation>Hope End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPS">
        <xs:annotation>
          <xs:documentation>Kerne Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPT">
        <xs:annotation>
          <xs:documentation>Kington Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPU">
        <xs:annotation>
          <xs:documentation>Ledbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPW">
        <xs:annotation>
          <xs:documentation>Leominster North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPX">
        <xs:annotation>
          <xs:documentation>Leominster South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPY">
        <xs:annotation>
          <xs:documentation>Llangarron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAPZ">
        <xs:annotation>
          <xs:documentation>Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQA">
        <xs:annotation>
          <xs:documentation>Old Gore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQB">
        <xs:annotation>
          <xs:documentation>Pembridge and Lyonshall with Titley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQC">
        <xs:annotation>
          <xs:documentation>Penyard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQD">
        <xs:annotation>
          <xs:documentation>Pontrilas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQE">
        <xs:annotation>
          <xs:documentation>Ross-on-Wye East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQF">
        <xs:annotation>
          <xs:documentation>Ross-on-Wye West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQG">
        <xs:annotation>
          <xs:documentation>St Martins and Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQH">
        <xs:annotation>
          <xs:documentation>St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQJ">
        <xs:annotation>
          <xs:documentation>Stoney Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQK">
        <xs:annotation>
          <xs:documentation>Sutton Walls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQL">
        <xs:annotation>
          <xs:documentation>Three Elms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQM">
        <xs:annotation>
          <xs:documentation>Tupsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQN">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQP">
        <xs:annotation>
          <xs:documentation>Valletts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GAQQ">
        <xs:annotation>
          <xs:documentation>Wormsley Ridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNM">
        <xs:annotation>
          <xs:documentation>Apley Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNN">
        <xs:annotation>
          <xs:documentation>Arleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNP">
        <xs:annotation>
          <xs:documentation>Brookside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNQ">
        <xs:annotation>
          <xs:documentation>Church Aston and Lilleshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNR">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNS">
        <xs:annotation>
          <xs:documentation>Cuckoo Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNT">
        <xs:annotation>
          <xs:documentation>Dawley Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNU">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNW">
        <xs:annotation>
          <xs:documentation>Dothill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNX">
        <xs:annotation>
          <xs:documentation>Edgmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNY">
        <xs:annotation>
          <xs:documentation>Ercall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFNZ">
        <xs:annotation>
          <xs:documentation>Ercall Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPA">
        <xs:annotation>
          <xs:documentation>Hadley and Leegomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPB">
        <xs:annotation>
          <xs:documentation>Haygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPC">
        <xs:annotation>
          <xs:documentation>Horsehay and Lightmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPD">
        <xs:annotation>
          <xs:documentation>Ironbridge Gorge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPE">
        <xs:annotation>
          <xs:documentation>Ketley and Oakengates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPF">
        <xs:annotation>
          <xs:documentation>Lawley and Overdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPG">
        <xs:annotation>
          <xs:documentation>Madeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPH">
        <xs:annotation>
          <xs:documentation>Malinslee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPJ">
        <xs:annotation>
          <xs:documentation>Muxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPK">
        <xs:annotation>
          <xs:documentation>Newport East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPL">
        <xs:annotation>
          <xs:documentation>Newport North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPM">
        <xs:annotation>
          <xs:documentation>Newport South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPN">
        <xs:annotation>
          <xs:documentation>Newport West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPP">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPQ">
        <xs:annotation>
          <xs:documentation>Priorslee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPR">
        <xs:annotation>
          <xs:documentation>St Georges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPS">
        <xs:annotation>
          <xs:documentation>Shawbirch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPT">
        <xs:annotation>
          <xs:documentation>The Nedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPU">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPW">
        <xs:annotation>
          <xs:documentation>Wrockwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GFPX">
        <xs:annotation>
          <xs:documentation>Wrockwardine Wood and Trench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLMX">
        <xs:annotation>
          <xs:documentation>Abbey Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLMY">
        <xs:annotation>
          <xs:documentation>Bentilee and Townsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLMZ">
        <xs:annotation>
          <xs:documentation>Berryhill and Hanley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNA">
        <xs:annotation>
          <xs:documentation>Blurton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNB">
        <xs:annotation>
          <xs:documentation>Burslem North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNC">
        <xs:annotation>
          <xs:documentation>Burslem South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLND">
        <xs:annotation>
          <xs:documentation>Chell and Packmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNE">
        <xs:annotation>
          <xs:documentation>East Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNF">
        <xs:annotation>
          <xs:documentation>Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNG">
        <xs:annotation>
          <xs:documentation>Hanley West and Shelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNH">
        <xs:annotation>
          <xs:documentation>Hartshill and Penkhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNJ">
        <xs:annotation>
          <xs:documentation>Longton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNK">
        <xs:annotation>
          <xs:documentation>Longton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNL">
        <xs:annotation>
          <xs:documentation>Meir Park and Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNM">
        <xs:annotation>
          <xs:documentation>Northwood and Birches Head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNN">
        <xs:annotation>
          <xs:documentation>Norton and Bradeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNP">
        <xs:annotation>
          <xs:documentation>Stoke and Trent Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNQ">
        <xs:annotation>
          <xs:documentation>Trentham and Hanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNR">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GLNS">
        <xs:annotation>
          <xs:documentation>Weston and Meir North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANP">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANQ">
        <xs:annotation>
          <xs:documentation>Bathavon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANR">
        <xs:annotation>
          <xs:documentation>Bathavon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANS">
        <xs:annotation>
          <xs:documentation>Bathavon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANT">
        <xs:annotation>
          <xs:documentation>Bathwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANU">
        <xs:annotation>
          <xs:documentation>Chew Valley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANW">
        <xs:annotation>
          <xs:documentation>Chew Valley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANX">
        <xs:annotation>
          <xs:documentation>Clutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANY">
        <xs:annotation>
          <xs:documentation>Combe Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HANZ">
        <xs:annotation>
          <xs:documentation>Farmborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPA">
        <xs:annotation>
          <xs:documentation>High Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPB">
        <xs:annotation>
          <xs:documentation>Keynsham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPC">
        <xs:annotation>
          <xs:documentation>Keynsham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPD">
        <xs:annotation>
          <xs:documentation>Keynsham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPE">
        <xs:annotation>
          <xs:documentation>Kingsmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPF">
        <xs:annotation>
          <xs:documentation>Lambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPG">
        <xs:annotation>
          <xs:documentation>Lansdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPH">
        <xs:annotation>
          <xs:documentation>Lyncombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPJ">
        <xs:annotation>
          <xs:documentation>Mendip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPK">
        <xs:annotation>
          <xs:documentation>Midsomer Norton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPL">
        <xs:annotation>
          <xs:documentation>Midsomer Norton Redfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPM">
        <xs:annotation>
          <xs:documentation>Newbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPN">
        <xs:annotation>
          <xs:documentation>Odd Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPP">
        <xs:annotation>
          <xs:documentation>Oldfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPQ">
        <xs:annotation>
          <xs:documentation>Paulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPR">
        <xs:annotation>
          <xs:documentation>Peasedown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPS">
        <xs:annotation>
          <xs:documentation>Publow and Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPT">
        <xs:annotation>
          <xs:documentation>Radstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPU">
        <xs:annotation>
          <xs:documentation>Saltford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPW">
        <xs:annotation>
          <xs:documentation>Southdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPX">
        <xs:annotation>
          <xs:documentation>Timsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPY">
        <xs:annotation>
          <xs:documentation>Twerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAPZ">
        <xs:annotation>
          <xs:documentation>Walcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAQA">
        <xs:annotation>
          <xs:documentation>Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAQB">
        <xs:annotation>
          <xs:documentation>Westmoreland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAQC">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HAQD">
        <xs:annotation>
          <xs:documentation>Widcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNM">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNN">
        <xs:annotation>
          <xs:documentation>Avonmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNP">
        <xs:annotation>
          <xs:documentation>Bedminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNQ">
        <xs:annotation>
          <xs:documentation>Bishopston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNR">
        <xs:annotation>
          <xs:documentation>Bishopsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNS">
        <xs:annotation>
          <xs:documentation>Brislington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNT">
        <xs:annotation>
          <xs:documentation>Brislington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNU">
        <xs:annotation>
          <xs:documentation>Cabot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNW">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNX">
        <xs:annotation>
          <xs:documentation>Clifton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNY">
        <xs:annotation>
          <xs:documentation>Cotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBNZ">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPA">
        <xs:annotation>
          <xs:documentation>Eastville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPB">
        <xs:annotation>
          <xs:documentation>Filwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPC">
        <xs:annotation>
          <xs:documentation>Frome Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPD">
        <xs:annotation>
          <xs:documentation>Hartcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPE">
        <xs:annotation>
          <xs:documentation>Henbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPF">
        <xs:annotation>
          <xs:documentation>Hengrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPG">
        <xs:annotation>
          <xs:documentation>Henleaze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPH">
        <xs:annotation>
          <xs:documentation>Hillfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPJ">
        <xs:annotation>
          <xs:documentation>Horfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPK">
        <xs:annotation>
          <xs:documentation>Kingsweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPL">
        <xs:annotation>
          <xs:documentation>Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPM">
        <xs:annotation>
          <xs:documentation>Lawrence Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPN">
        <xs:annotation>
          <xs:documentation>Lockleaze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPP">
        <xs:annotation>
          <xs:documentation>Redland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPQ">
        <xs:annotation>
          <xs:documentation>St George East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPR">
        <xs:annotation>
          <xs:documentation>St George West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPS">
        <xs:annotation>
          <xs:documentation>Southmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPT">
        <xs:annotation>
          <xs:documentation>Southville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPU">
        <xs:annotation>
          <xs:documentation>Stockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPW">
        <xs:annotation>
          <xs:documentation>Stoke Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPX">
        <xs:annotation>
          <xs:documentation>Westbury-on-Trym</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPY">
        <xs:annotation>
          <xs:documentation>Whitchurch Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HBPZ">
        <xs:annotation>
          <xs:documentation>Windmill Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNP">
        <xs:annotation>
          <xs:documentation>Backwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNQ">
        <xs:annotation>
          <xs:documentation>Banwell and Winscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNR">
        <xs:annotation>
          <xs:documentation>Blagdon and Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNS">
        <xs:annotation>
          <xs:documentation>Clevedon Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNT">
        <xs:annotation>
          <xs:documentation>Clevedon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNU">
        <xs:annotation>
          <xs:documentation>Clevedon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNW">
        <xs:annotation>
          <xs:documentation>Clevedon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNX">
        <xs:annotation>
          <xs:documentation>Clevedon Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNY">
        <xs:annotation>
          <xs:documentation>Clevedon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCNZ">
        <xs:annotation>
          <xs:documentation>Clevedon Yeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPA">
        <xs:annotation>
          <xs:documentation>Congresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPB">
        <xs:annotation>
          <xs:documentation>Easton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPC">
        <xs:annotation>
          <xs:documentation>Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPD">
        <xs:annotation>
          <xs:documentation>Hutton and Locking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPE">
        <xs:annotation>
          <xs:documentation>Kewstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPF">
        <xs:annotation>
          <xs:documentation>Nailsea East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPG">
        <xs:annotation>
          <xs:documentation>Nailsea North and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPH">
        <xs:annotation>
          <xs:documentation>Pill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPJ">
        <xs:annotation>
          <xs:documentation>Portishead Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPK">
        <xs:annotation>
          <xs:documentation>Portishead Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPL">
        <xs:annotation>
          <xs:documentation>Portishead East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPM">
        <xs:annotation>
          <xs:documentation>Portishead Redcliffe Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPN">
        <xs:annotation>
          <xs:documentation>Portishead South and North Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPP">
        <xs:annotation>
          <xs:documentation>Portishead West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPQ">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPR">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare Clarence and Uphill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPS">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPT">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare Milton and Old Worle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPU">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare North Worle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPW">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPX">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare South Worle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPY">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCPZ">
        <xs:annotation>
          <xs:documentation>Winford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCQA">
        <xs:annotation>
          <xs:documentation>Wraxall and Long Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCQB">
        <xs:annotation>
          <xs:documentation>Wrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HCQC">
        <xs:annotation>
          <xs:documentation>Yatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNR">
        <xs:annotation>
          <xs:documentation>Almondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNS">
        <xs:annotation>
          <xs:documentation>Alveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNT">
        <xs:annotation>
          <xs:documentation>Bitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNU">
        <xs:annotation>
          <xs:documentation>Boyd Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNW">
        <xs:annotation>
          <xs:documentation>Bradley Stoke Baileys Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNX">
        <xs:annotation>
          <xs:documentation>Bradley Stoke Bowsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNY">
        <xs:annotation>
          <xs:documentation>Bradley Stoke Sherbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDNZ">
        <xs:annotation>
          <xs:documentation>Charfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPA">
        <xs:annotation>
          <xs:documentation>Chipping Sodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPB">
        <xs:annotation>
          <xs:documentation>Cotswold Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPC">
        <xs:annotation>
          <xs:documentation>Dodington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPD">
        <xs:annotation>
          <xs:documentation>Downend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPE">
        <xs:annotation>
          <xs:documentation>Filton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPF">
        <xs:annotation>
          <xs:documentation>Frampton Cotterell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPG">
        <xs:annotation>
          <xs:documentation>Hanham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPH">
        <xs:annotation>
          <xs:documentation>Kings Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPJ">
        <xs:annotation>
          <xs:documentation>Ladden Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPK">
        <xs:annotation>
          <xs:documentation>Longwell Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPL">
        <xs:annotation>
          <xs:documentation>Oldland Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPM">
        <xs:annotation>
          <xs:documentation>Parkwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPN">
        <xs:annotation>
          <xs:documentation>Patchway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPP">
        <xs:annotation>
          <xs:documentation>Pilning and Severn Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPQ">
        <xs:annotation>
          <xs:documentation>Rodway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPR">
        <xs:annotation>
          <xs:documentation>Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPS">
        <xs:annotation>
          <xs:documentation>Siston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPT">
        <xs:annotation>
          <xs:documentation>Staple Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPU">
        <xs:annotation>
          <xs:documentation>Stoke Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPW">
        <xs:annotation>
          <xs:documentation>Thornbury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPX">
        <xs:annotation>
          <xs:documentation>Thornbury South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPY">
        <xs:annotation>
          <xs:documentation>Westerleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDPZ">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDQA">
        <xs:annotation>
          <xs:documentation>Woodstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDQB">
        <xs:annotation>
          <xs:documentation>Yate Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDQC">
        <xs:annotation>
          <xs:documentation>Yate North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HDQD">
        <xs:annotation>
          <xs:documentation>Yate West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGMX">
        <xs:annotation>
          <xs:documentation>Budshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGMY">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGMZ">
        <xs:annotation>
          <xs:documentation>Devonport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNA">
        <xs:annotation>
          <xs:documentation>Drake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNB">
        <xs:annotation>
          <xs:documentation>Efford and Lipson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNC">
        <xs:annotation>
          <xs:documentation>Eggbuckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGND">
        <xs:annotation>
          <xs:documentation>Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNE">
        <xs:annotation>
          <xs:documentation>Honicknowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNF">
        <xs:annotation>
          <xs:documentation>Moor View</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNG">
        <xs:annotation>
          <xs:documentation>Peverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNH">
        <xs:annotation>
          <xs:documentation>Plympton Chaddlewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNJ">
        <xs:annotation>
          <xs:documentation>Plympton Erle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNK">
        <xs:annotation>
          <xs:documentation>Plympton St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNL">
        <xs:annotation>
          <xs:documentation>Plymstock Dunstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNM">
        <xs:annotation>
          <xs:documentation>Plymstock Radford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNN">
        <xs:annotation>
          <xs:documentation>St Budeaux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNP">
        <xs:annotation>
          <xs:documentation>St Peter and the Waterfront</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNQ">
        <xs:annotation>
          <xs:documentation>Southway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNR">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HGNS">
        <xs:annotation>
          <xs:documentation>Sutton and Mount Gould</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMN">
        <xs:annotation>
          <xs:documentation>Berry Head-with-Furzeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMP">
        <xs:annotation>
          <xs:documentation>Blatchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMQ">
        <xs:annotation>
          <xs:documentation>Churston-with-Galmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMR">
        <xs:annotation>
          <xs:documentation>Clifton-with-Maidenway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMS">
        <xs:annotation>
          <xs:documentation>Cockington-with-Chelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMT">
        <xs:annotation>
          <xs:documentation>Ellacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMU">
        <xs:annotation>
          <xs:documentation>Goodrington-with-Roselands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMW">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMX">
        <xs:annotation>
          <xs:documentation>Roundham-with-Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMY">
        <xs:annotation>
          <xs:documentation>St Marychurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHMZ">
        <xs:annotation>
          <xs:documentation>St Mary's-with-Summercombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHNA">
        <xs:annotation>
          <xs:documentation>Shiphay-with-the-Willows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHNB">
        <xs:annotation>
          <xs:documentation>Tormohun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHNC">
        <xs:annotation>
          <xs:documentation>Watcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HHND">
        <xs:annotation>
          <xs:documentation>Wellswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNMW">
        <xs:annotation>
          <xs:documentation>Boscombe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNMX">
        <xs:annotation>
          <xs:documentation>Boscombe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNMY">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNMZ">
        <xs:annotation>
          <xs:documentation>East Cliff and Springbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNA">
        <xs:annotation>
          <xs:documentation>East Southbourne and Tuckton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNB">
        <xs:annotation>
          <xs:documentation>Kinson North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNC">
        <xs:annotation>
          <xs:documentation>Kinson South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNND">
        <xs:annotation>
          <xs:documentation>Littledown and Iford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNE">
        <xs:annotation>
          <xs:documentation>Moordown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNF">
        <xs:annotation>
          <xs:documentation>Queen's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNG">
        <xs:annotation>
          <xs:documentation>Redhill and Northbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNH">
        <xs:annotation>
          <xs:documentation>Strouden Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNJ">
        <xs:annotation>
          <xs:documentation>Talbot and Branksome Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNK">
        <xs:annotation>
          <xs:documentation>Throop and Muscliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNL">
        <xs:annotation>
          <xs:documentation>Wallisdown and Winton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNM">
        <xs:annotation>
          <xs:documentation>West Southbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNN">
        <xs:annotation>
          <xs:documentation>Westbourne and West Cliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HNNP">
        <xs:annotation>
          <xs:documentation>Winton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMP">
        <xs:annotation>
          <xs:documentation>Alderney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMQ">
        <xs:annotation>
          <xs:documentation>Branksome East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMR">
        <xs:annotation>
          <xs:documentation>Branksome West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMS">
        <xs:annotation>
          <xs:documentation>Broadstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMT">
        <xs:annotation>
          <xs:documentation>Canford Cliffs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMU">
        <xs:annotation>
          <xs:documentation>Canford Heath East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMW">
        <xs:annotation>
          <xs:documentation>Canford Heath West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMX">
        <xs:annotation>
          <xs:documentation>Creekmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMY">
        <xs:annotation>
          <xs:documentation>Hamworthy East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPMZ">
        <xs:annotation>
          <xs:documentation>Hamworthy West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPNA">
        <xs:annotation>
          <xs:documentation>Merley and Bearwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPNB">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPNC">
        <xs:annotation>
          <xs:documentation>Oakdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPND">
        <xs:annotation>
          <xs:documentation>Parkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPNE">
        <xs:annotation>
          <xs:documentation>Penn Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HPNF">
        <xs:annotation>
          <xs:documentation>Poole Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXMY">
        <xs:annotation>
          <xs:documentation>Abbey Meads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXMZ">
        <xs:annotation>
          <xs:documentation>Blunsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNA">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNB">
        <xs:annotation>
          <xs:documentation>Covingham and Nythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNC">
        <xs:annotation>
          <xs:documentation>Dorcan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXND">
        <xs:annotation>
          <xs:documentation>Eastcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNE">
        <xs:annotation>
          <xs:documentation>Freshbrook and Grange Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNF">
        <xs:annotation>
          <xs:documentation>Gorse Hill and Pinehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNG">
        <xs:annotation>
          <xs:documentation>Haydon Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNH">
        <xs:annotation>
          <xs:documentation>Highworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNJ">
        <xs:annotation>
          <xs:documentation>Moredon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNK">
        <xs:annotation>
          <xs:documentation>Old Town and Lawn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNL">
        <xs:annotation>
          <xs:documentation>Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNM">
        <xs:annotation>
          <xs:documentation>Penhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNN">
        <xs:annotation>
          <xs:documentation>Ridgeway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNP">
        <xs:annotation>
          <xs:documentation>St Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNQ">
        <xs:annotation>
          <xs:documentation>St Philip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNR">
        <xs:annotation>
          <xs:documentation>Shaw and Nine Elms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNS">
        <xs:annotation>
          <xs:documentation>Toothill and Westlea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNT">
        <xs:annotation>
          <xs:documentation>Walcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNU">
        <xs:annotation>
          <xs:documentation>Western</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HXNW">
        <xs:annotation>
          <xs:documentation>Wroughton and Chiseldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANB">
        <xs:annotation>
          <xs:documentation>Barnack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANC">
        <xs:annotation>
          <xs:documentation>Bretton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JAND">
        <xs:annotation>
          <xs:documentation>Bretton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANE">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANF">
        <xs:annotation>
          <xs:documentation>Dogsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANG">
        <xs:annotation>
          <xs:documentation>East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANH">
        <xs:annotation>
          <xs:documentation>Eye and Thorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANJ">
        <xs:annotation>
          <xs:documentation>Fletton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANK">
        <xs:annotation>
          <xs:documentation>Glinton and Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANL">
        <xs:annotation>
          <xs:documentation>Newborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANM">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANN">
        <xs:annotation>
          <xs:documentation>Northborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANP">
        <xs:annotation>
          <xs:documentation>Orton Longueville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANQ">
        <xs:annotation>
          <xs:documentation>Orton Waterville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANR">
        <xs:annotation>
          <xs:documentation>Orton with Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANS">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANT">
        <xs:annotation>
          <xs:documentation>Paston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANU">
        <xs:annotation>
          <xs:documentation>Ravensthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANW">
        <xs:annotation>
          <xs:documentation>Stanground Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANX">
        <xs:annotation>
          <xs:documentation>Stanground East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANY">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JANZ">
        <xs:annotation>
          <xs:documentation>Werrington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JAPA">
        <xs:annotation>
          <xs:documentation>Werrington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JAPB">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMS">
        <xs:annotation>
          <xs:documentation>Barnfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMT">
        <xs:annotation>
          <xs:documentation>Biscot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMU">
        <xs:annotation>
          <xs:documentation>Bramingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMW">
        <xs:annotation>
          <xs:documentation>Challney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMX">
        <xs:annotation>
          <xs:documentation>Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMY">
        <xs:annotation>
          <xs:documentation>Dallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAMZ">
        <xs:annotation>
          <xs:documentation>Farley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANA">
        <xs:annotation>
          <xs:documentation>High Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANB">
        <xs:annotation>
          <xs:documentation>Icknield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANC">
        <xs:annotation>
          <xs:documentation>Leagrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KAND">
        <xs:annotation>
          <xs:documentation>Lewsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANE">
        <xs:annotation>
          <xs:documentation>Limbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANF">
        <xs:annotation>
          <xs:documentation>Northwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANG">
        <xs:annotation>
          <xs:documentation>Round Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANH">
        <xs:annotation>
          <xs:documentation>Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANJ">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANK">
        <xs:annotation>
          <xs:documentation>Stopsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANL">
        <xs:annotation>
          <xs:documentation>Sundon Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KANM">
        <xs:annotation>
          <xs:documentation>Wigmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMP">
        <xs:annotation>
          <xs:documentation>Belfairs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMQ">
        <xs:annotation>
          <xs:documentation>Blenheim Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMR">
        <xs:annotation>
          <xs:documentation>Chalkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMS">
        <xs:annotation>
          <xs:documentation>Eastwood Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMT">
        <xs:annotation>
          <xs:documentation>Kursaal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMU">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMW">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMX">
        <xs:annotation>
          <xs:documentation>Prittlewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMY">
        <xs:annotation>
          <xs:documentation>St Laurence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFMZ">
        <xs:annotation>
          <xs:documentation>St. Luke's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNA">
        <xs:annotation>
          <xs:documentation>Shoeburyness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNB">
        <xs:annotation>
          <xs:documentation>Southchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNC">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFND">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNE">
        <xs:annotation>
          <xs:documentation>Westborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNF">
        <xs:annotation>
          <xs:documentation>West Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KFNG">
        <xs:annotation>
          <xs:documentation>West Shoebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGMX">
        <xs:annotation>
          <xs:documentation>Aveley and Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGMY">
        <xs:annotation>
          <xs:documentation>Belhus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGMZ">
        <xs:annotation>
          <xs:documentation>Chadwell St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNA">
        <xs:annotation>
          <xs:documentation>Chafford and North Stifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNB">
        <xs:annotation>
          <xs:documentation>Corringham and Fobbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNC">
        <xs:annotation>
          <xs:documentation>East Tilbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGND">
        <xs:annotation>
          <xs:documentation>Grays Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNE">
        <xs:annotation>
          <xs:documentation>Grays Thurrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNF">
        <xs:annotation>
          <xs:documentation>Little Thurrock Blackshots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNG">
        <xs:annotation>
          <xs:documentation>Little Thurrock Rectory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNH">
        <xs:annotation>
          <xs:documentation>Ockendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNJ">
        <xs:annotation>
          <xs:documentation>Orsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNK">
        <xs:annotation>
          <xs:documentation>South Chafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNL">
        <xs:annotation>
          <xs:documentation>Stanford East and Corringham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNM">
        <xs:annotation>
          <xs:documentation>Stanford-le-Hope West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNN">
        <xs:annotation>
          <xs:documentation>Stifford Clays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNP">
        <xs:annotation>
          <xs:documentation>The Homesteads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNQ">
        <xs:annotation>
          <xs:documentation>Tilbury Riverside and Thurrock Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNR">
        <xs:annotation>
          <xs:documentation>Tilbury St Chads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KGNS">
        <xs:annotation>
          <xs:documentation>West Thurrock and South Stifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNN">
        <xs:annotation>
          <xs:documentation>Chatham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNP">
        <xs:annotation>
          <xs:documentation>Cuxton and Halling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNQ">
        <xs:annotation>
          <xs:documentation>Gillingham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNR">
        <xs:annotation>
          <xs:documentation>Gillingham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNS">
        <xs:annotation>
          <xs:documentation>Hempstead and Wigmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNT">
        <xs:annotation>
          <xs:documentation>Lordswood and Capstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNU">
        <xs:annotation>
          <xs:documentation>Luton and Wayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNW">
        <xs:annotation>
          <xs:documentation>Peninsula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNX">
        <xs:annotation>
          <xs:documentation>Princes Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNY">
        <xs:annotation>
          <xs:documentation>Rainham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCNZ">
        <xs:annotation>
          <xs:documentation>Rainham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPA">
        <xs:annotation>
          <xs:documentation>Rainham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPB">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPC">
        <xs:annotation>
          <xs:documentation>Rochester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPD">
        <xs:annotation>
          <xs:documentation>Rochester South and Horsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPE">
        <xs:annotation>
          <xs:documentation>Rochester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPF">
        <xs:annotation>
          <xs:documentation>Strood North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPG">
        <xs:annotation>
          <xs:documentation>Strood Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPH">
        <xs:annotation>
          <xs:documentation>Strood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPJ">
        <xs:annotation>
          <xs:documentation>Twydall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPK">
        <xs:annotation>
          <xs:documentation>Walderslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LCPL">
        <xs:annotation>
          <xs:documentation>Watling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MAMW">
        <xs:annotation>
          <xs:documentation>Ascot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MAMX">
        <xs:annotation>
          <xs:documentation>Binfield with Warfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MAMY">
        <xs:annotation>
          <xs:documentation>Bullbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MAMZ">
        <xs:annotation>
          <xs:documentation>Central Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANA">
        <xs:annotation>
          <xs:documentation>College Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANB">
        <xs:annotation>
          <xs:documentation>Crown Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANC">
        <xs:annotation>
          <xs:documentation>Crowthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MAND">
        <xs:annotation>
          <xs:documentation>Great Hollands North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANE">
        <xs:annotation>
          <xs:documentation>Great Hollands South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANF">
        <xs:annotation>
          <xs:documentation>Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANG">
        <xs:annotation>
          <xs:documentation>Harmans Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANH">
        <xs:annotation>
          <xs:documentation>Little Sandhurst and Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANJ">
        <xs:annotation>
          <xs:documentation>Old Bracknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANK">
        <xs:annotation>
          <xs:documentation>Owlsmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANL">
        <xs:annotation>
          <xs:documentation>Priestwood and Garth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANM">
        <xs:annotation>
          <xs:documentation>Warfield Harvest Ride</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANN">
        <xs:annotation>
          <xs:documentation>Wildridings and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MANP">
        <xs:annotation>
          <xs:documentation>Winkfield and Cranbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNJ">
        <xs:annotation>
          <xs:documentation>Aldermaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNK">
        <xs:annotation>
          <xs:documentation>Basildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNL">
        <xs:annotation>
          <xs:documentation>Birch Copse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNM">
        <xs:annotation>
          <xs:documentation>Bucklebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNN">
        <xs:annotation>
          <xs:documentation>Burghfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNP">
        <xs:annotation>
          <xs:documentation>Calcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNQ">
        <xs:annotation>
          <xs:documentation>Chieveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNR">
        <xs:annotation>
          <xs:documentation>Clay Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNS">
        <xs:annotation>
          <xs:documentation>Cold Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNT">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNU">
        <xs:annotation>
          <xs:documentation>Downlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNW">
        <xs:annotation>
          <xs:documentation>Falkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNX">
        <xs:annotation>
          <xs:documentation>Greenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNY">
        <xs:annotation>
          <xs:documentation>Hungerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBNZ">
        <xs:annotation>
          <xs:documentation>Kintbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPA">
        <xs:annotation>
          <xs:documentation>Lambourn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPB">
        <xs:annotation>
          <xs:documentation>Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPC">
        <xs:annotation>
          <xs:documentation>Northcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPD">
        <xs:annotation>
          <xs:documentation>Pangbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPE">
        <xs:annotation>
          <xs:documentation>Purley on Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPF">
        <xs:annotation>
          <xs:documentation>St Johns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPG">
        <xs:annotation>
          <xs:documentation>Speen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPH">
        <xs:annotation>
          <xs:documentation>Sulhamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPJ">
        <xs:annotation>
          <xs:documentation>Thatcham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPK">
        <xs:annotation>
          <xs:documentation>Thatcham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPL">
        <xs:annotation>
          <xs:documentation>Thatcham South and Crookham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPM">
        <xs:annotation>
          <xs:documentation>Thatcham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPN">
        <xs:annotation>
          <xs:documentation>Theale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPP">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MBPQ">
        <xs:annotation>
          <xs:documentation>Westwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMR">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMS">
        <xs:annotation>
          <xs:documentation>Battle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMT">
        <xs:annotation>
          <xs:documentation>Caversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMU">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMW">
        <xs:annotation>
          <xs:documentation>Katesgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMX">
        <xs:annotation>
          <xs:documentation>Kentwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMY">
        <xs:annotation>
          <xs:documentation>Mapledurham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCMZ">
        <xs:annotation>
          <xs:documentation>Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNA">
        <xs:annotation>
          <xs:documentation>Norcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNB">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNC">
        <xs:annotation>
          <xs:documentation>Peppard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCND">
        <xs:annotation>
          <xs:documentation>Redlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNE">
        <xs:annotation>
          <xs:documentation>Southcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNF">
        <xs:annotation>
          <xs:documentation>Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNG">
        <xs:annotation>
          <xs:documentation>Tilehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MCNH">
        <xs:annotation>
          <xs:documentation>Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMQ">
        <xs:annotation>
          <xs:documentation>Baylis and Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMR">
        <xs:annotation>
          <xs:documentation>Britwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMS">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMT">
        <xs:annotation>
          <xs:documentation>Chalvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMU">
        <xs:annotation>
          <xs:documentation>Cippenham Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMW">
        <xs:annotation>
          <xs:documentation>Cippenham Meadows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMX">
        <xs:annotation>
          <xs:documentation>Colnbrook with Poyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMY">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDMZ">
        <xs:annotation>
          <xs:documentation>Foxborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDNA">
        <xs:annotation>
          <xs:documentation>Haymill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDNB">
        <xs:annotation>
          <xs:documentation>Kedermister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDNC">
        <xs:annotation>
          <xs:documentation>Langley St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDND">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MDNE">
        <xs:annotation>
          <xs:documentation>Wexham Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MEMZ">
        <xs:annotation>
          <xs:documentation>Ascot and Cheapside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENA">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENB">
        <xs:annotation>
          <xs:documentation>Bisham and Cookham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENC">
        <xs:annotation>
          <xs:documentation>Boyn Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MEND">
        <xs:annotation>
          <xs:documentation>Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENE">
        <xs:annotation>
          <xs:documentation>Castle Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENF">
        <xs:annotation>
          <xs:documentation>Clewer East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENG">
        <xs:annotation>
          <xs:documentation>Clewer North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENH">
        <xs:annotation>
          <xs:documentation>Clewer South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENJ">
        <xs:annotation>
          <xs:documentation>Cox Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENK">
        <xs:annotation>
          <xs:documentation>Datchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENL">
        <xs:annotation>
          <xs:documentation>Eton and Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENM">
        <xs:annotation>
          <xs:documentation>Eton Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENN">
        <xs:annotation>
          <xs:documentation>Furze Platt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENP">
        <xs:annotation>
          <xs:documentation>Horton and Wraysbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENQ">
        <xs:annotation>
          <xs:documentation>Hurley and Walthams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENR">
        <xs:annotation>
          <xs:documentation>Maidenhead Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENS">
        <xs:annotation>
          <xs:documentation>Old Windsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENT">
        <xs:annotation>
          <xs:documentation>Oldfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENU">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENW">
        <xs:annotation>
          <xs:documentation>Pinkneys Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENX">
        <xs:annotation>
          <xs:documentation>Sunningdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MENY">
        <xs:annotation>
          <xs:documentation>Sunninghill and South Ascot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNB">
        <xs:annotation>
          <xs:documentation>Arborfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNC">
        <xs:annotation>
          <xs:documentation>Barkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFND">
        <xs:annotation>
          <xs:documentation>Bulmershe and Whitegates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNE">
        <xs:annotation>
          <xs:documentation>Charvil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNF">
        <xs:annotation>
          <xs:documentation>Coronation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNG">
        <xs:annotation>
          <xs:documentation>Emmbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNH">
        <xs:annotation>
          <xs:documentation>Evendons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNJ">
        <xs:annotation>
          <xs:documentation>Finchampstead North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNK">
        <xs:annotation>
          <xs:documentation>Finchampstead South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNL">
        <xs:annotation>
          <xs:documentation>Hawkedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNM">
        <xs:annotation>
          <xs:documentation>Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNN">
        <xs:annotation>
          <xs:documentation>Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNP">
        <xs:annotation>
          <xs:documentation>Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNQ">
        <xs:annotation>
          <xs:documentation>Maiden Erlegh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNR">
        <xs:annotation>
          <xs:documentation>Norreys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNS">
        <xs:annotation>
          <xs:documentation>Remenham, Wargrave and Ruscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNT">
        <xs:annotation>
          <xs:documentation>Shinfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNU">
        <xs:annotation>
          <xs:documentation>Shinfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNW">
        <xs:annotation>
          <xs:documentation>Sonning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNX">
        <xs:annotation>
          <xs:documentation>South Lake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNY">
        <xs:annotation>
          <xs:documentation>Swallowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFNZ">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFPA">
        <xs:annotation>
          <xs:documentation>Wescott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFPB">
        <xs:annotation>
          <xs:documentation>Winnersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MFPC">
        <xs:annotation>
          <xs:documentation>Wokingham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNB">
        <xs:annotation>
          <xs:documentation>Bletchley and Fenny Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNC">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGND">
        <xs:annotation>
          <xs:documentation>Campbell Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNE">
        <xs:annotation>
          <xs:documentation>Danesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNF">
        <xs:annotation>
          <xs:documentation>Denbigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNG">
        <xs:annotation>
          <xs:documentation>Eaton Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNH">
        <xs:annotation>
          <xs:documentation>Emerson Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNJ">
        <xs:annotation>
          <xs:documentation>Furzton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNK">
        <xs:annotation>
          <xs:documentation>Hanslope Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNL">
        <xs:annotation>
          <xs:documentation>Linford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNM">
        <xs:annotation>
          <xs:documentation>Linford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNN">
        <xs:annotation>
          <xs:documentation>Loughton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNP">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNQ">
        <xs:annotation>
          <xs:documentation>Newport Pagnell North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNR">
        <xs:annotation>
          <xs:documentation>Newport Pagnell South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNS">
        <xs:annotation>
          <xs:documentation>Olney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNT">
        <xs:annotation>
          <xs:documentation>Sherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNU">
        <xs:annotation>
          <xs:documentation>Stantonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNW">
        <xs:annotation>
          <xs:documentation>Stony Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNX">
        <xs:annotation>
          <xs:documentation>Walton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNY">
        <xs:annotation>
          <xs:documentation>Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGNZ">
        <xs:annotation>
          <xs:documentation>Wolverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MGPA">
        <xs:annotation>
          <xs:documentation>Woughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLND">
        <xs:annotation>
          <xs:documentation>Brunswick and Adelaide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNE">
        <xs:annotation>
          <xs:documentation>Central Hove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNF">
        <xs:annotation>
          <xs:documentation>East Brighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNG">
        <xs:annotation>
          <xs:documentation>Goldsmid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNH">
        <xs:annotation>
          <xs:documentation>Hangleton and Knoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNJ">
        <xs:annotation>
          <xs:documentation>Hanover and Elm Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNK">
        <xs:annotation>
          <xs:documentation>Hollingbury and Stanmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNL">
        <xs:annotation>
          <xs:documentation>Moulsecoomb and Bevendean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNM">
        <xs:annotation>
          <xs:documentation>North Portslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNN">
        <xs:annotation>
          <xs:documentation>Patcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNP">
        <xs:annotation>
          <xs:documentation>Preston Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNQ">
        <xs:annotation>
          <xs:documentation>Queen's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNR">
        <xs:annotation>
          <xs:documentation>Regency</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNS">
        <xs:annotation>
          <xs:documentation>Rottingdean Coastal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNT">
        <xs:annotation>
          <xs:documentation>St. Peter's and North Laine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNU">
        <xs:annotation>
          <xs:documentation>South Portslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNW">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNX">
        <xs:annotation>
          <xs:documentation>Westbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNY">
        <xs:annotation>
          <xs:documentation>Wish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLNZ">
        <xs:annotation>
          <xs:documentation>Withdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MLPA">
        <xs:annotation>
          <xs:documentation>Woodingdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMP">
        <xs:annotation>
          <xs:documentation>Baffins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMQ">
        <xs:annotation>
          <xs:documentation>Central Southsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMR">
        <xs:annotation>
          <xs:documentation>Charles Dickens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMS">
        <xs:annotation>
          <xs:documentation>Copnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMT">
        <xs:annotation>
          <xs:documentation>Cosham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMU">
        <xs:annotation>
          <xs:documentation>Drayton and Farlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMW">
        <xs:annotation>
          <xs:documentation>Eastney and Craneswater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMX">
        <xs:annotation>
          <xs:documentation>Fratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMY">
        <xs:annotation>
          <xs:documentation>Hilsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRMZ">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRNA">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRNB">
        <xs:annotation>
          <xs:documentation>Paulsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRNC">
        <xs:annotation>
          <xs:documentation>St Jude</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MRND">
        <xs:annotation>
          <xs:documentation>St Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMR">
        <xs:annotation>
          <xs:documentation>Bargate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMS">
        <xs:annotation>
          <xs:documentation>Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMT">
        <xs:annotation>
          <xs:documentation>Bevois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMU">
        <xs:annotation>
          <xs:documentation>Bitterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMW">
        <xs:annotation>
          <xs:documentation>Bitterne Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMX">
        <xs:annotation>
          <xs:documentation>Coxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMY">
        <xs:annotation>
          <xs:documentation>Freemantle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSMZ">
        <xs:annotation>
          <xs:documentation>Harefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNA">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNB">
        <xs:annotation>
          <xs:documentation>Peartree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNC">
        <xs:annotation>
          <xs:documentation>Portswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSND">
        <xs:annotation>
          <xs:documentation>Redbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNE">
        <xs:annotation>
          <xs:documentation>Shirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNF">
        <xs:annotation>
          <xs:documentation>Sholing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNG">
        <xs:annotation>
          <xs:documentation>Swaythling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MSNH">
        <xs:annotation>
          <xs:documentation>Woolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPC">
        <xs:annotation>
          <xs:documentation>Ashey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPD">
        <xs:annotation>
          <xs:documentation>Bembridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPE">
        <xs:annotation>
          <xs:documentation>Bembridge South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPF">
        <xs:annotation>
          <xs:documentation>Binstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPG">
        <xs:annotation>
          <xs:documentation>Brading and St Helens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPH">
        <xs:annotation>
          <xs:documentation>Brighstone and Calbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPJ">
        <xs:annotation>
          <xs:documentation>Carisbrooke East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPK">
        <xs:annotation>
          <xs:documentation>Carisbrooke West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPL">
        <xs:annotation>
          <xs:documentation>Central Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPM">
        <xs:annotation>
          <xs:documentation>Chale, Niton and Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPN">
        <xs:annotation>
          <xs:documentation>Cowes Castle East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPP">
        <xs:annotation>
          <xs:documentation>Cowes Castle West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPQ">
        <xs:annotation>
          <xs:documentation>Cowes Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPR">
        <xs:annotation>
          <xs:documentation>Cowes Medina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPS">
        <xs:annotation>
          <xs:documentation>East Cowes North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPT">
        <xs:annotation>
          <xs:documentation>East Cowes South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPU">
        <xs:annotation>
          <xs:documentation>Fairlee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPW">
        <xs:annotation>
          <xs:documentation>Freshwater Afton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPX">
        <xs:annotation>
          <xs:documentation>Freshwater Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPY">
        <xs:annotation>
          <xs:documentation>Gurnard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWPZ">
        <xs:annotation>
          <xs:documentation>Lake North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQA">
        <xs:annotation>
          <xs:documentation>Lake South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQB">
        <xs:annotation>
          <xs:documentation>Mount Joy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQC">
        <xs:annotation>
          <xs:documentation>Newchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQD">
        <xs:annotation>
          <xs:documentation>Newport North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQE">
        <xs:annotation>
          <xs:documentation>Newport South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQF">
        <xs:annotation>
          <xs:documentation>Northwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQG">
        <xs:annotation>
          <xs:documentation>Osborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQH">
        <xs:annotation>
          <xs:documentation>Pan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQJ">
        <xs:annotation>
          <xs:documentation>Parkhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQK">
        <xs:annotation>
          <xs:documentation>Ryde North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQL">
        <xs:annotation>
          <xs:documentation>Ryde North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQM">
        <xs:annotation>
          <xs:documentation>Ryde South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQN">
        <xs:annotation>
          <xs:documentation>Ryde South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQP">
        <xs:annotation>
          <xs:documentation>St Johns East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQQ">
        <xs:annotation>
          <xs:documentation>St Johns West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQR">
        <xs:annotation>
          <xs:documentation>Sandown North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQS">
        <xs:annotation>
          <xs:documentation>Sandown South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQT">
        <xs:annotation>
          <xs:documentation>Seaview and Nettlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQU">
        <xs:annotation>
          <xs:documentation>Shalfleet and Yarmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQW">
        <xs:annotation>
          <xs:documentation>Shanklin Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQX">
        <xs:annotation>
          <xs:documentation>Shanklin North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQY">
        <xs:annotation>
          <xs:documentation>Shanklin South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWQZ">
        <xs:annotation>
          <xs:documentation>Totland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWRA">
        <xs:annotation>
          <xs:documentation>Ventnor East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWRB">
        <xs:annotation>
          <xs:documentation>Ventnor West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWRC">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MWRD">
        <xs:annotation>
          <xs:documentation>Wroxall and Godshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMA">
        <xs:annotation>
          <xs:documentation>Aberffraw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMB">
        <xs:annotation>
          <xs:documentation>Amlwch Port</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMC">
        <xs:annotation>
          <xs:documentation>Amlwch Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMD">
        <xs:annotation>
          <xs:documentation>Beaumaris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAME">
        <xs:annotation>
          <xs:documentation>Bodffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMF">
        <xs:annotation>
          <xs:documentation>Bodorgan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMG">
        <xs:annotation>
          <xs:documentation>Braint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMH">
        <xs:annotation>
          <xs:documentation>Bryngwran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMJ">
        <xs:annotation>
          <xs:documentation>Brynteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMK">
        <xs:annotation>
          <xs:documentation>Cadnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAML">
        <xs:annotation>
          <xs:documentation>Cefni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMM">
        <xs:annotation>
          <xs:documentation>Cwm Cadnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMN">
        <xs:annotation>
          <xs:documentation>Cyngar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMP">
        <xs:annotation>
          <xs:documentation>Gwyngyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMQ">
        <xs:annotation>
          <xs:documentation>Holyhead Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMR">
        <xs:annotation>
          <xs:documentation>Kingsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMS">
        <xs:annotation>
          <xs:documentation>Llanbadrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMT">
        <xs:annotation>
          <xs:documentation>Llanbedrgoch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMU">
        <xs:annotation>
          <xs:documentation>Llanddyfnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMW">
        <xs:annotation>
          <xs:documentation>Llaneilian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMX">
        <xs:annotation>
          <xs:documentation>Llanfaethlu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMY">
        <xs:annotation>
          <xs:documentation>Llanfair-yn-Neubwll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAMZ">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ysgeifiog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANA">
        <xs:annotation>
          <xs:documentation>Llangoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANB">
        <xs:annotation>
          <xs:documentation>Llanidan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANC">
        <xs:annotation>
          <xs:documentation>Llannerch-y-medd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NAND">
        <xs:annotation>
          <xs:documentation>London Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANE">
        <xs:annotation>
          <xs:documentation>Maeshyfryd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANF">
        <xs:annotation>
          <xs:documentation>Mechell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANG">
        <xs:annotation>
          <xs:documentation>Moelfre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANH">
        <xs:annotation>
          <xs:documentation>Morawelon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANJ">
        <xs:annotation>
          <xs:documentation>Parc a'r Mynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANK">
        <xs:annotation>
          <xs:documentation>Pentraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANL">
        <xs:annotation>
          <xs:documentation>Porthyfelin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANM">
        <xs:annotation>
          <xs:documentation>Rhosneigr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANN">
        <xs:annotation>
          <xs:documentation>Rhosyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANP">
        <xs:annotation>
          <xs:documentation>Trearddur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANQ">
        <xs:annotation>
          <xs:documentation>Tudur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANR">
        <xs:annotation>
          <xs:documentation>Tysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NANS">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQA">
        <xs:annotation>
          <xs:documentation>Aberdaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQB">
        <xs:annotation>
          <xs:documentation>Aberdovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQC">
        <xs:annotation>
          <xs:documentation>Abererch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQD">
        <xs:annotation>
          <xs:documentation>Abermaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQE">
        <xs:annotation>
          <xs:documentation>Abersoch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQF">
        <xs:annotation>
          <xs:documentation>Arllechwedd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQG">
        <xs:annotation>
          <xs:documentation>Bala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQH">
        <xs:annotation>
          <xs:documentation>Bethel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQJ">
        <xs:annotation>
          <xs:documentation>Bontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQK">
        <xs:annotation>
          <xs:documentation>Botwnnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQL">
        <xs:annotation>
          <xs:documentation>Bowydd and Rhiw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQM">
        <xs:annotation>
          <xs:documentation>Brithdir and Llanfachreth/Ganllwyd/Llanelltyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQN">
        <xs:annotation>
          <xs:documentation>Bryn-crug/Llanfihangel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQP">
        <xs:annotation>
          <xs:documentation>Cadnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQQ">
        <xs:annotation>
          <xs:documentation>Clynnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQR">
        <xs:annotation>
          <xs:documentation>Corris/Mawddwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQS">
        <xs:annotation>
          <xs:documentation>Criccieth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQT">
        <xs:annotation>
          <xs:documentation>Cwm-y-Glo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQU">
        <xs:annotation>
          <xs:documentation>Deiniol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQW">
        <xs:annotation>
          <xs:documentation>Deiniolen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQX">
        <xs:annotation>
          <xs:documentation>Dewi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQY">
        <xs:annotation>
          <xs:documentation>Diffwys and Maenofferen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCQZ">
        <xs:annotation>
          <xs:documentation>Dolbenmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRA">
        <xs:annotation>
          <xs:documentation>Dolgellau North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRB">
        <xs:annotation>
          <xs:documentation>Dolgellau South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRC">
        <xs:annotation>
          <xs:documentation>Dyffryn Ardudwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRD">
        <xs:annotation>
          <xs:documentation>Efail-newydd/Buan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRE">
        <xs:annotation>
          <xs:documentation>Garth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRF">
        <xs:annotation>
          <xs:documentation>Gerlan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRG">
        <xs:annotation>
          <xs:documentation>Glyder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRH">
        <xs:annotation>
          <xs:documentation>Groeslon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRJ">
        <xs:annotation>
          <xs:documentation>Harlech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRK">
        <xs:annotation>
          <xs:documentation>Hendre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRL">
        <xs:annotation>
          <xs:documentation>Hirael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRM">
        <xs:annotation>
          <xs:documentation>Llanaelhaearn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRN">
        <xs:annotation>
          <xs:documentation>Llanbedr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRP">
        <xs:annotation>
          <xs:documentation>Llanbedrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRQ">
        <xs:annotation>
          <xs:documentation>Llanberis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRR">
        <xs:annotation>
          <xs:documentation>Llandderfel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRS">
        <xs:annotation>
          <xs:documentation>Llanengan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRT">
        <xs:annotation>
          <xs:documentation>Llangelynin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRU">
        <xs:annotation>
          <xs:documentation>Llanllyfni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRW">
        <xs:annotation>
          <xs:documentation>Llanrug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRX">
        <xs:annotation>
          <xs:documentation>Llanuwchllyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRY">
        <xs:annotation>
          <xs:documentation>Llanwnda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCRZ">
        <xs:annotation>
          <xs:documentation>Llanystumdwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSA">
        <xs:annotation>
          <xs:documentation>Marchog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSB">
        <xs:annotation>
          <xs:documentation>Menai (Bangor)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSC">
        <xs:annotation>
          <xs:documentation>Menai (Caernarfon)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSD">
        <xs:annotation>
          <xs:documentation>Morfa Nefyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSE">
        <xs:annotation>
          <xs:documentation>Nefyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSF">
        <xs:annotation>
          <xs:documentation>Ogwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSG">
        <xs:annotation>
          <xs:documentation>Peblig (Caernarfon)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSH">
        <xs:annotation>
          <xs:documentation>Penisarwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSJ">
        <xs:annotation>
          <xs:documentation>Penrhyndeudraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSK">
        <xs:annotation>
          <xs:documentation>Pentir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSL">
        <xs:annotation>
          <xs:documentation>Penygroes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSM">
        <xs:annotation>
          <xs:documentation>Porthmadog East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSN">
        <xs:annotation>
          <xs:documentation>Porthmadog West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSP">
        <xs:annotation>
          <xs:documentation>Porthmadog-Tremadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSQ">
        <xs:annotation>
          <xs:documentation>Pwllheli North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSR">
        <xs:annotation>
          <xs:documentation>Pwllheli South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCST">
        <xs:annotation>
          <xs:documentation>Seiont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSU">
        <xs:annotation>
          <xs:documentation>Talysarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSW">
        <xs:annotation>
          <xs:documentation>Teigl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSX">
        <xs:annotation>
          <xs:documentation>Trawsfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSY">
        <xs:annotation>
          <xs:documentation>Tregarth &amp; Mynydd Llandygai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCSZ">
        <xs:annotation>
          <xs:documentation>Tudweiliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCTA">
        <xs:annotation>
          <xs:documentation>Tywyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCTB">
        <xs:annotation>
          <xs:documentation>Waunfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NCTC">
        <xs:annotation>
          <xs:documentation>Y Felinheli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENT">
        <xs:annotation>
          <xs:documentation>Abergele Pensarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENU">
        <xs:annotation>
          <xs:documentation>Betws-y-Coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENW">
        <xs:annotation>
          <xs:documentation>Betws yn Rhos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENX">
        <xs:annotation>
          <xs:documentation>Bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENY">
        <xs:annotation>
          <xs:documentation>Caerhun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NENZ">
        <xs:annotation>
          <xs:documentation>Capelulo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPA">
        <xs:annotation>
          <xs:documentation>Colwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPB">
        <xs:annotation>
          <xs:documentation>Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPC">
        <xs:annotation>
          <xs:documentation>Craig-y-Don</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPD">
        <xs:annotation>
          <xs:documentation>Crwst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPE">
        <xs:annotation>
          <xs:documentation>Deganwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPF">
        <xs:annotation>
          <xs:documentation>Eglwysbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPG">
        <xs:annotation>
          <xs:documentation>Eirias</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPH">
        <xs:annotation>
          <xs:documentation>Gele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPJ">
        <xs:annotation>
          <xs:documentation>Glyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPK">
        <xs:annotation>
          <xs:documentation>Gogarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPL">
        <xs:annotation>
          <xs:documentation>Gower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPM">
        <xs:annotation>
          <xs:documentation>Kinmel Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPN">
        <xs:annotation>
          <xs:documentation>Llanddulas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPP">
        <xs:annotation>
          <xs:documentation>Llandrillo yn Rhos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPQ">
        <xs:annotation>
          <xs:documentation>Llangernyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPR">
        <xs:annotation>
          <xs:documentation>Llansanffraid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPS">
        <xs:annotation>
          <xs:documentation>Llansannan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPT">
        <xs:annotation>
          <xs:documentation>Llysfaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPU">
        <xs:annotation>
          <xs:documentation>Marl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPW">
        <xs:annotation>
          <xs:documentation>Mochdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPX">
        <xs:annotation>
          <xs:documentation>Mostyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPY">
        <xs:annotation>
          <xs:documentation>Pandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEPZ">
        <xs:annotation>
          <xs:documentation>Pant-yr-afon/Penmaenan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQA">
        <xs:annotation>
          <xs:documentation>Penrhyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQB">
        <xs:annotation>
          <xs:documentation>Pensarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQC">
        <xs:annotation>
          <xs:documentation>Pentre Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQD">
        <xs:annotation>
          <xs:documentation>Rhiw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQE">
        <xs:annotation>
          <xs:documentation>Towyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQF">
        <xs:annotation>
          <xs:documentation>Trefriw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQG">
        <xs:annotation>
          <xs:documentation>Tudno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQH">
        <xs:annotation>
          <xs:documentation>Uwch Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NEQJ">
        <xs:annotation>
          <xs:documentation>Uwchaled</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNK">
        <xs:annotation>
          <xs:documentation>Bodelwyddan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNL">
        <xs:annotation>
          <xs:documentation>Corwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNM">
        <xs:annotation>
          <xs:documentation>Denbigh Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNN">
        <xs:annotation>
          <xs:documentation>Denbigh Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNP">
        <xs:annotation>
          <xs:documentation>Denbigh Upper/Henllan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNQ">
        <xs:annotation>
          <xs:documentation>Dyserth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNR">
        <xs:annotation>
          <xs:documentation>Efenechtyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNS">
        <xs:annotation>
          <xs:documentation>Llanarmon-yn-Ial/Llandegla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNT">
        <xs:annotation>
          <xs:documentation>Llanbedr Dyffryn Clwyd/Llangynhafal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNU">
        <xs:annotation>
          <xs:documentation>Llandrillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNW">
        <xs:annotation>
          <xs:documentation>Llandyrnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNX">
        <xs:annotation>
          <xs:documentation>Llanfair Dyffryn Clwyd/Gwyddelwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNY">
        <xs:annotation>
          <xs:documentation>Llangollen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGNZ">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-yng-Nghinmeirch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPA">
        <xs:annotation>
          <xs:documentation>Prestatyn Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPB">
        <xs:annotation>
          <xs:documentation>Prestatyn East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPC">
        <xs:annotation>
          <xs:documentation>Prestatyn Meliden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPD">
        <xs:annotation>
          <xs:documentation>Prestatyn North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPE">
        <xs:annotation>
          <xs:documentation>Prestatyn South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPF">
        <xs:annotation>
          <xs:documentation>Rhuddlan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPG">
        <xs:annotation>
          <xs:documentation>Rhyl East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPH">
        <xs:annotation>
          <xs:documentation>Rhyl South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPJ">
        <xs:annotation>
          <xs:documentation>Rhyl South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPK">
        <xs:annotation>
          <xs:documentation>Rhyl South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPL">
        <xs:annotation>
          <xs:documentation>Rhyl West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPM">
        <xs:annotation>
          <xs:documentation>Ruthin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPN">
        <xs:annotation>
          <xs:documentation>St. Asaph East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPP">
        <xs:annotation>
          <xs:documentation>St. Asaph West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPQ">
        <xs:annotation>
          <xs:documentation>Trefnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NGPR">
        <xs:annotation>
          <xs:documentation>Tremeirchion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPJ">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPK">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPL">
        <xs:annotation>
          <xs:documentation>Bagillt East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPM">
        <xs:annotation>
          <xs:documentation>Bagillt West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPN">
        <xs:annotation>
          <xs:documentation>Broughton North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPP">
        <xs:annotation>
          <xs:documentation>Broughton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPQ">
        <xs:annotation>
          <xs:documentation>Brynford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPR">
        <xs:annotation>
          <xs:documentation>Buckley Bistre East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPS">
        <xs:annotation>
          <xs:documentation>Buckley Bistre West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPT">
        <xs:annotation>
          <xs:documentation>Buckley Mountain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPU">
        <xs:annotation>
          <xs:documentation>Buckley Pentrobin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPW">
        <xs:annotation>
          <xs:documentation>Caergwrle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPX">
        <xs:annotation>
          <xs:documentation>Caerwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPY">
        <xs:annotation>
          <xs:documentation>Cilcain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJPZ">
        <xs:annotation>
          <xs:documentation>Connah's Quay Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQA">
        <xs:annotation>
          <xs:documentation>Connah's Quay Golftyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQB">
        <xs:annotation>
          <xs:documentation>Connah's Quay South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQC">
        <xs:annotation>
          <xs:documentation>Connah's Quay Wepre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQD">
        <xs:annotation>
          <xs:documentation>Ewloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQE">
        <xs:annotation>
          <xs:documentation>Ffynnongroyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQF">
        <xs:annotation>
          <xs:documentation>Flint Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQG">
        <xs:annotation>
          <xs:documentation>Flint Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQH">
        <xs:annotation>
          <xs:documentation>Flint Oakenholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQJ">
        <xs:annotation>
          <xs:documentation>Flint Trelawny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQK">
        <xs:annotation>
          <xs:documentation>Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQL">
        <xs:annotation>
          <xs:documentation>Gronant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQM">
        <xs:annotation>
          <xs:documentation>Gwernaffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQN">
        <xs:annotation>
          <xs:documentation>Gwernymynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQP">
        <xs:annotation>
          <xs:documentation>Halkyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQQ">
        <xs:annotation>
          <xs:documentation>Hawarden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQR">
        <xs:annotation>
          <xs:documentation>Higher Kinnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQS">
        <xs:annotation>
          <xs:documentation>Holywell Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQT">
        <xs:annotation>
          <xs:documentation>Holywell East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQU">
        <xs:annotation>
          <xs:documentation>Holywell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQW">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQX">
        <xs:annotation>
          <xs:documentation>Leeswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQY">
        <xs:annotation>
          <xs:documentation>Llanfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJQZ">
        <xs:annotation>
          <xs:documentation>Mancot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRA">
        <xs:annotation>
          <xs:documentation>Mold Broncoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRB">
        <xs:annotation>
          <xs:documentation>Mold East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRC">
        <xs:annotation>
          <xs:documentation>Mold South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRD">
        <xs:annotation>
          <xs:documentation>Mold West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRE">
        <xs:annotation>
          <xs:documentation>Mostyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRF">
        <xs:annotation>
          <xs:documentation>New Brighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRG">
        <xs:annotation>
          <xs:documentation>Northop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRH">
        <xs:annotation>
          <xs:documentation>Northop Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRJ">
        <xs:annotation>
          <xs:documentation>Penyffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRK">
        <xs:annotation>
          <xs:documentation>Queensferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRL">
        <xs:annotation>
          <xs:documentation>Saltney Mold Junction</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRM">
        <xs:annotation>
          <xs:documentation>Saltney Stonebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRN">
        <xs:annotation>
          <xs:documentation>Sealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRP">
        <xs:annotation>
          <xs:documentation>Shotton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRQ">
        <xs:annotation>
          <xs:documentation>Shotton Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRR">
        <xs:annotation>
          <xs:documentation>Shotton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRS">
        <xs:annotation>
          <xs:documentation>Trelawnyd and Gwaenysgor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRT">
        <xs:annotation>
          <xs:documentation>Treuddyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJRU">
        <xs:annotation>
          <xs:documentation>Whitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLNW">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLNX">
        <xs:annotation>
          <xs:documentation>Borras Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLNY">
        <xs:annotation>
          <xs:documentation>Bronington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLNZ">
        <xs:annotation>
          <xs:documentation>Brymbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPA">
        <xs:annotation>
          <xs:documentation>Brynyffynnon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPB">
        <xs:annotation>
          <xs:documentation>Bryn Cefn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPC">
        <xs:annotation>
          <xs:documentation>Cartrefle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPD">
        <xs:annotation>
          <xs:documentation>Cefn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPE">
        <xs:annotation>
          <xs:documentation>Dyffryn Ceiriog/Ceiriog Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPF">
        <xs:annotation>
          <xs:documentation>Chirk North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPG">
        <xs:annotation>
          <xs:documentation>Chirk South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPH">
        <xs:annotation>
          <xs:documentation>Coedpoeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPJ">
        <xs:annotation>
          <xs:documentation>Erddig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPK">
        <xs:annotation>
          <xs:documentation>Esclusham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPL">
        <xs:annotation>
          <xs:documentation>Garden Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPM">
        <xs:annotation>
          <xs:documentation>Gresford East and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPN">
        <xs:annotation>
          <xs:documentation>Grosvenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPP">
        <xs:annotation>
          <xs:documentation>Gwenfro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPQ">
        <xs:annotation>
          <xs:documentation>Gwersyllt East and South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPR">
        <xs:annotation>
          <xs:documentation>Gwersyllt North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPS">
        <xs:annotation>
          <xs:documentation>Gwersyllt West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPT">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPU">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPW">
        <xs:annotation>
          <xs:documentation>Johnstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPX">
        <xs:annotation>
          <xs:documentation>Little Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPY">
        <xs:annotation>
          <xs:documentation>Llangollen Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLPZ">
        <xs:annotation>
          <xs:documentation>Llay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQA">
        <xs:annotation>
          <xs:documentation>Maesydre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQB">
        <xs:annotation>
          <xs:documentation>Marchwiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQC">
        <xs:annotation>
          <xs:documentation>Marford and Hoseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQD">
        <xs:annotation>
          <xs:documentation>Minera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQE">
        <xs:annotation>
          <xs:documentation>New Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQF">
        <xs:annotation>
          <xs:documentation>Offa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQG">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQH">
        <xs:annotation>
          <xs:documentation>Pant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQJ">
        <xs:annotation>
          <xs:documentation>Penycae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQK">
        <xs:annotation>
          <xs:documentation>Penycae and Ruabon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQL">
        <xs:annotation>
          <xs:documentation>Plas Madoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQM">
        <xs:annotation>
          <xs:documentation>Ponciau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQN">
        <xs:annotation>
          <xs:documentation>Queensway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQP">
        <xs:annotation>
          <xs:documentation>Rhosnesni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQQ">
        <xs:annotation>
          <xs:documentation>Rossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQR">
        <xs:annotation>
          <xs:documentation>Ruabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQS">
        <xs:annotation>
          <xs:documentation>Smithfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQT">
        <xs:annotation>
          <xs:documentation>Stansty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQU">
        <xs:annotation>
          <xs:documentation>Whitegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NLQW">
        <xs:annotation>
          <xs:documentation>Wynnstay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQG">
        <xs:annotation>
          <xs:documentation>Aber-craf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQH">
        <xs:annotation>
          <xs:documentation>Banwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQJ">
        <xs:annotation>
          <xs:documentation>Beguildy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQK">
        <xs:annotation>
          <xs:documentation>Berriew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQL">
        <xs:annotation>
          <xs:documentation>Blaen Hafren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQM">
        <xs:annotation>
          <xs:documentation>Bronllys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQN">
        <xs:annotation>
          <xs:documentation>Builth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQP">
        <xs:annotation>
          <xs:documentation>Bwlch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQQ">
        <xs:annotation>
          <xs:documentation>Caersws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQR">
        <xs:annotation>
          <xs:documentation>Churchstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQS">
        <xs:annotation>
          <xs:documentation>Crickhowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQT">
        <xs:annotation>
          <xs:documentation>Cwm-twrch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQU">
        <xs:annotation>
          <xs:documentation>Disserth and Trecoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQW">
        <xs:annotation>
          <xs:documentation>Dolforwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQX">
        <xs:annotation>
          <xs:documentation>Felin-fâch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQY">
        <xs:annotation>
          <xs:documentation>Forden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNQZ">
        <xs:annotation>
          <xs:documentation>Glantwymyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRA">
        <xs:annotation>
          <xs:documentation>Glasbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRB">
        <xs:annotation>
          <xs:documentation>Guilsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRC">
        <xs:annotation>
          <xs:documentation>Gwernyfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRD">
        <xs:annotation>
          <xs:documentation>Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRE">
        <xs:annotation>
          <xs:documentation>Kerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRF">
        <xs:annotation>
          <xs:documentation>Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRG">
        <xs:annotation>
          <xs:documentation>Llanafanfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRH">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRJ">
        <xs:annotation>
          <xs:documentation>Llanbrynmair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRK">
        <xs:annotation>
          <xs:documentation>Llandinam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRL">
        <xs:annotation>
          <xs:documentation>Llandrindod East/Llandrindod West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRM">
        <xs:annotation>
          <xs:documentation>Llandrindod North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRN">
        <xs:annotation>
          <xs:documentation>Llandrindod South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRP">
        <xs:annotation>
          <xs:documentation>Llandrinio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRQ">
        <xs:annotation>
          <xs:documentation>Llandysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRR">
        <xs:annotation>
          <xs:documentation>Llanelwedd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRS">
        <xs:annotation>
          <xs:documentation>Llanfair Caereinion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRT">
        <xs:annotation>
          <xs:documentation>Llanfihangel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRU">
        <xs:annotation>
          <xs:documentation>Llanfyllin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRW">
        <xs:annotation>
          <xs:documentation>Llangattock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRX">
        <xs:annotation>
          <xs:documentation>Llangors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRY">
        <xs:annotation>
          <xs:documentation>Llangunllo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNRZ">
        <xs:annotation>
          <xs:documentation>Llangynidr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSA">
        <xs:annotation>
          <xs:documentation>Llanidloes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSB">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-ym-Mochnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSC">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-ym-Mochnant/Llansilin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSD">
        <xs:annotation>
          <xs:documentation>Llansantffraid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSE">
        <xs:annotation>
          <xs:documentation>Llanwrtyd Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSF">
        <xs:annotation>
          <xs:documentation>Llanyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSG">
        <xs:annotation>
          <xs:documentation>Machynlleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSH">
        <xs:annotation>
          <xs:documentation>Maescar/Llywel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSJ">
        <xs:annotation>
          <xs:documentation>Meifod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSK">
        <xs:annotation>
          <xs:documentation>Montgomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSL">
        <xs:annotation>
          <xs:documentation>Nantmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSM">
        <xs:annotation>
          <xs:documentation>Newtown Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSN">
        <xs:annotation>
          <xs:documentation>Newtown East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSP">
        <xs:annotation>
          <xs:documentation>Newtown Llanllwchaiarn North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSQ">
        <xs:annotation>
          <xs:documentation>Newtown Llanllwchaiarn West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSR">
        <xs:annotation>
          <xs:documentation>Newtown South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNST">
        <xs:annotation>
          <xs:documentation>Old Radnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSU">
        <xs:annotation>
          <xs:documentation>Presteigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSW">
        <xs:annotation>
          <xs:documentation>Rhayader</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSX">
        <xs:annotation>
          <xs:documentation>Rhiwcynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSY">
        <xs:annotation>
          <xs:documentation>St. David Within</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNSZ">
        <xs:annotation>
          <xs:documentation>St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTA">
        <xs:annotation>
          <xs:documentation>St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTB">
        <xs:annotation>
          <xs:documentation>Talgarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTC">
        <xs:annotation>
          <xs:documentation>Talybont-on-Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTD">
        <xs:annotation>
          <xs:documentation>Tawe-Uchaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTE">
        <xs:annotation>
          <xs:documentation>Trewern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTF">
        <xs:annotation>
          <xs:documentation>Welshpool Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTG">
        <xs:annotation>
          <xs:documentation>Welshpool Gungrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTH">
        <xs:annotation>
          <xs:documentation>Welshpool Llanerchyddol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTJ">
        <xs:annotation>
          <xs:documentation>Ynyscedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTK">
        <xs:annotation>
          <xs:documentation>Yscir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NNTL">
        <xs:annotation>
          <xs:documentation>Ystradgynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNP">
        <xs:annotation>
          <xs:documentation>Aberaeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNQ">
        <xs:annotation>
          <xs:documentation>Aberporth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNR">
        <xs:annotation>
          <xs:documentation>Aberteifi/Cardigan - Mwldan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNS">
        <xs:annotation>
          <xs:documentation>Aberteifi/Cardigan - Rhyd-y-Fuwch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNT">
        <xs:annotation>
          <xs:documentation>Aberteifi/Cardigan - Teifi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNU">
        <xs:annotation>
          <xs:documentation>Aberystwyth Bronglais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNW">
        <xs:annotation>
          <xs:documentation>Aberystwyth Canol/Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNX">
        <xs:annotation>
          <xs:documentation>Aberystwyth Gogledd/North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNY">
        <xs:annotation>
          <xs:documentation>Aberystwyth Penparcau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQNZ">
        <xs:annotation>
          <xs:documentation>Aberystwyth Rheidol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPA">
        <xs:annotation>
          <xs:documentation>Beulah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPB">
        <xs:annotation>
          <xs:documentation>Borth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPC">
        <xs:annotation>
          <xs:documentation>Capel Dewi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPD">
        <xs:annotation>
          <xs:documentation>Ceulanamaesmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPE">
        <xs:annotation>
          <xs:documentation>Ciliau Aeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPF">
        <xs:annotation>
          <xs:documentation>Faenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPG">
        <xs:annotation>
          <xs:documentation>Lampeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPH">
        <xs:annotation>
          <xs:documentation>Llanarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPJ">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr - Padarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPK">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr - Sulien</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPL">
        <xs:annotation>
          <xs:documentation>Llandyfriog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPM">
        <xs:annotation>
          <xs:documentation>Llandysiliogogo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPN">
        <xs:annotation>
          <xs:documentation>Llandysul Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPP">
        <xs:annotation>
          <xs:documentation>Llanfarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPQ">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPR">
        <xs:annotation>
          <xs:documentation>Llangeitho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPS">
        <xs:annotation>
          <xs:documentation>Llangybi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPT">
        <xs:annotation>
          <xs:documentation>Llanrhystyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPU">
        <xs:annotation>
          <xs:documentation>Llansantffraed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPW">
        <xs:annotation>
          <xs:documentation>Llanwenog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPX">
        <xs:annotation>
          <xs:documentation>Lledrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPY">
        <xs:annotation>
          <xs:documentation>Melindwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQPZ">
        <xs:annotation>
          <xs:documentation>New Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQA">
        <xs:annotation>
          <xs:documentation>Penbryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQB">
        <xs:annotation>
          <xs:documentation>Pen-parc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQC">
        <xs:annotation>
          <xs:documentation>Tirymynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQD">
        <xs:annotation>
          <xs:documentation>Trefeurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQE">
        <xs:annotation>
          <xs:documentation>Tregaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQF">
        <xs:annotation>
          <xs:documentation>Troedyraur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQQG">
        <xs:annotation>
          <xs:documentation>Ystwyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPH">
        <xs:annotation>
          <xs:documentation>Amroth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPJ">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPK">
        <xs:annotation>
          <xs:documentation>Camrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPL">
        <xs:annotation>
          <xs:documentation>Carew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPM">
        <xs:annotation>
          <xs:documentation>Cilgerran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPN">
        <xs:annotation>
          <xs:documentation>Clydau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPP">
        <xs:annotation>
          <xs:documentation>Crymych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPQ">
        <xs:annotation>
          <xs:documentation>Dinas Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPR">
        <xs:annotation>
          <xs:documentation>East Williamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPS">
        <xs:annotation>
          <xs:documentation>Fishguard North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPT">
        <xs:annotation>
          <xs:documentation>Fishguard North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPU">
        <xs:annotation>
          <xs:documentation>Goodwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPW">
        <xs:annotation>
          <xs:documentation>Haverfordwest: Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPX">
        <xs:annotation>
          <xs:documentation>Haverfordwest: Garth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPY">
        <xs:annotation>
          <xs:documentation>Haverfordwest: Portfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSPZ">
        <xs:annotation>
          <xs:documentation>Haverfordwest: Prendergast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQA">
        <xs:annotation>
          <xs:documentation>Haverfordwest: Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQB">
        <xs:annotation>
          <xs:documentation>Hundleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQC">
        <xs:annotation>
          <xs:documentation>Johnston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQD">
        <xs:annotation>
          <xs:documentation>Kilgetty/Begelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQE">
        <xs:annotation>
          <xs:documentation>Lampeter Velfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQF">
        <xs:annotation>
          <xs:documentation>Lamphey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQG">
        <xs:annotation>
          <xs:documentation>Letterston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQH">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQJ">
        <xs:annotation>
          <xs:documentation>Llanrhian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQK">
        <xs:annotation>
          <xs:documentation>Maenclochog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQL">
        <xs:annotation>
          <xs:documentation>Manorbier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQM">
        <xs:annotation>
          <xs:documentation>Martletwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQN">
        <xs:annotation>
          <xs:documentation>Merlin's Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQP">
        <xs:annotation>
          <xs:documentation>Milford: Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQQ">
        <xs:annotation>
          <xs:documentation>Milford: East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQR">
        <xs:annotation>
          <xs:documentation>Milford: Hakin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQS">
        <xs:annotation>
          <xs:documentation>Milford: Hubberston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQT">
        <xs:annotation>
          <xs:documentation>Milford: North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQU">
        <xs:annotation>
          <xs:documentation>Milford: West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQW">
        <xs:annotation>
          <xs:documentation>Narberth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQX">
        <xs:annotation>
          <xs:documentation>Narberth Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQY">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSQZ">
        <xs:annotation>
          <xs:documentation>Neyland: East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRA">
        <xs:annotation>
          <xs:documentation>Neyland: West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRB">
        <xs:annotation>
          <xs:documentation>Pembroke Dock: Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRC">
        <xs:annotation>
          <xs:documentation>Pembroke Dock: Llanion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRD">
        <xs:annotation>
          <xs:documentation>Pembroke Dock: Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRE">
        <xs:annotation>
          <xs:documentation>Pembroke Dock: Pennar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRF">
        <xs:annotation>
          <xs:documentation>Pembroke: Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRG">
        <xs:annotation>
          <xs:documentation>Pembroke: St. Mary North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRH">
        <xs:annotation>
          <xs:documentation>Pembroke: St. Mary South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRJ">
        <xs:annotation>
          <xs:documentation>Pembroke: St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRK">
        <xs:annotation>
          <xs:documentation>Penally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRL">
        <xs:annotation>
          <xs:documentation>Rudbaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRM">
        <xs:annotation>
          <xs:documentation>St. David's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRN">
        <xs:annotation>
          <xs:documentation>St. Dogmaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRP">
        <xs:annotation>
          <xs:documentation>St. Ishmael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRQ">
        <xs:annotation>
          <xs:documentation>Saundersfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRR">
        <xs:annotation>
          <xs:documentation>Scleddau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRS">
        <xs:annotation>
          <xs:documentation>Solva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRT">
        <xs:annotation>
          <xs:documentation>Tenby: North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRU">
        <xs:annotation>
          <xs:documentation>Tenby: South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRW">
        <xs:annotation>
          <xs:documentation>The Havens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NSRX">
        <xs:annotation>
          <xs:documentation>Wiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUPW">
        <xs:annotation>
          <xs:documentation>Abergwili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUPX">
        <xs:annotation>
          <xs:documentation>Ammanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUPY">
        <xs:annotation>
          <xs:documentation>Betws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUPZ">
        <xs:annotation>
          <xs:documentation>Bigyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQA">
        <xs:annotation>
          <xs:documentation>Burry Port</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQB">
        <xs:annotation>
          <xs:documentation>Bynea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQC">
        <xs:annotation>
          <xs:documentation>Carmarthen Town North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQD">
        <xs:annotation>
          <xs:documentation>Carmarthen Town South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQE">
        <xs:annotation>
          <xs:documentation>Carmarthen Town West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQF">
        <xs:annotation>
          <xs:documentation>Cenarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQG">
        <xs:annotation>
          <xs:documentation>Cilycwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQH">
        <xs:annotation>
          <xs:documentation>Cynwyl Elfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQJ">
        <xs:annotation>
          <xs:documentation>Cynwyl Gaeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQK">
        <xs:annotation>
          <xs:documentation>Dafen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQL">
        <xs:annotation>
          <xs:documentation>Elli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQM">
        <xs:annotation>
          <xs:documentation>Felinfoel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQN">
        <xs:annotation>
          <xs:documentation>Garnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQP">
        <xs:annotation>
          <xs:documentation>Glanamman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQQ">
        <xs:annotation>
          <xs:documentation>Glanymor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQR">
        <xs:annotation>
          <xs:documentation>Glyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQS">
        <xs:annotation>
          <xs:documentation>Gorslas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQT">
        <xs:annotation>
          <xs:documentation>Hendy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQU">
        <xs:annotation>
          <xs:documentation>Hengoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQW">
        <xs:annotation>
          <xs:documentation>Kidwelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQX">
        <xs:annotation>
          <xs:documentation>Laugharne Township</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQY">
        <xs:annotation>
          <xs:documentation>Llanboidy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUQZ">
        <xs:annotation>
          <xs:documentation>Llanddarog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURA">
        <xs:annotation>
          <xs:documentation>Llandeilo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURB">
        <xs:annotation>
          <xs:documentation>Llandovery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURC">
        <xs:annotation>
          <xs:documentation>Llandybie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURD">
        <xs:annotation>
          <xs:documentation>Llanegwad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURE">
        <xs:annotation>
          <xs:documentation>Llanfihangel Aberbythych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURF">
        <xs:annotation>
          <xs:documentation>Llanfihangel-ar-Arth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURG">
        <xs:annotation>
          <xs:documentation>Llangadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURH">
        <xs:annotation>
          <xs:documentation>Llangeler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURJ">
        <xs:annotation>
          <xs:documentation>Llangennech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURK">
        <xs:annotation>
          <xs:documentation>Llangunnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURL">
        <xs:annotation>
          <xs:documentation>Llangyndeyrn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURM">
        <xs:annotation>
          <xs:documentation>Llannon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURN">
        <xs:annotation>
          <xs:documentation>Llansteffan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURP">
        <xs:annotation>
          <xs:documentation>Llanybydder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURQ">
        <xs:annotation>
          <xs:documentation>Lliedi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURR">
        <xs:annotation>
          <xs:documentation>Llwynhendy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURS">
        <xs:annotation>
          <xs:documentation>Manordeilo and Salem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURT">
        <xs:annotation>
          <xs:documentation>Pembrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURU">
        <xs:annotation>
          <xs:documentation>Penygroes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURW">
        <xs:annotation>
          <xs:documentation>Pontamman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURX">
        <xs:annotation>
          <xs:documentation>Pontyberem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURY">
        <xs:annotation>
          <xs:documentation>Quarter Bach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NURZ">
        <xs:annotation>
          <xs:documentation>St. Clears</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSA">
        <xs:annotation>
          <xs:documentation>St. Ishmael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSB">
        <xs:annotation>
          <xs:documentation>Saron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSC">
        <xs:annotation>
          <xs:documentation>Swiss Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSD">
        <xs:annotation>
          <xs:documentation>Trelech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSE">
        <xs:annotation>
          <xs:documentation>Trimsaran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSF">
        <xs:annotation>
          <xs:documentation>Tycroes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSG">
        <xs:annotation>
          <xs:documentation>Tyisha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NUSH">
        <xs:annotation>
          <xs:documentation>Whitland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXNW">
        <xs:annotation>
          <xs:documentation>Bishopston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXNX">
        <xs:annotation>
          <xs:documentation>Bonymaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXNY">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXNZ">
        <xs:annotation>
          <xs:documentation>Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPA">
        <xs:annotation>
          <xs:documentation>Cockett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPB">
        <xs:annotation>
          <xs:documentation>Cwmbwrla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPC">
        <xs:annotation>
          <xs:documentation>Dunvant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPD">
        <xs:annotation>
          <xs:documentation>Fairwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPE">
        <xs:annotation>
          <xs:documentation>Gorseinon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPF">
        <xs:annotation>
          <xs:documentation>Gower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPG">
        <xs:annotation>
          <xs:documentation>Gowerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPH">
        <xs:annotation>
          <xs:documentation>Killay North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPJ">
        <xs:annotation>
          <xs:documentation>Killay South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPK">
        <xs:annotation>
          <xs:documentation>Kingsbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPL">
        <xs:annotation>
          <xs:documentation>Landore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPM">
        <xs:annotation>
          <xs:documentation>Llangyfelach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPN">
        <xs:annotation>
          <xs:documentation>Llansamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPP">
        <xs:annotation>
          <xs:documentation>Lower Loughor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPQ">
        <xs:annotation>
          <xs:documentation>Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPR">
        <xs:annotation>
          <xs:documentation>Mayals</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPS">
        <xs:annotation>
          <xs:documentation>Morriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPT">
        <xs:annotation>
          <xs:documentation>Mynyddbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPU">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPW">
        <xs:annotation>
          <xs:documentation>Oystermouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPX">
        <xs:annotation>
          <xs:documentation>Penclawdd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPY">
        <xs:annotation>
          <xs:documentation>Penderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXPZ">
        <xs:annotation>
          <xs:documentation>Penllergaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQA">
        <xs:annotation>
          <xs:documentation>Pennard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQB">
        <xs:annotation>
          <xs:documentation>Penyrheol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQC">
        <xs:annotation>
          <xs:documentation>Pontardulais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQD">
        <xs:annotation>
          <xs:documentation>St. Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQE">
        <xs:annotation>
          <xs:documentation>Sketty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQF">
        <xs:annotation>
          <xs:documentation>Townhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQG">
        <xs:annotation>
          <xs:documentation>Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQH">
        <xs:annotation>
          <xs:documentation>Upper Loughor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NXQJ">
        <xs:annotation>
          <xs:documentation>West Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMA">
        <xs:annotation>
          <xs:documentation>Aberavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMB">
        <xs:annotation>
          <xs:documentation>Aberdulais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMC">
        <xs:annotation>
          <xs:documentation>Allt-wen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMD">
        <xs:annotation>
          <xs:documentation>Baglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZME">
        <xs:annotation>
          <xs:documentation>Blaengwrach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMF">
        <xs:annotation>
          <xs:documentation>Briton Ferry East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMG">
        <xs:annotation>
          <xs:documentation>Briton Ferry West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMH">
        <xs:annotation>
          <xs:documentation>Bryn and Cwmavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMJ">
        <xs:annotation>
          <xs:documentation>Bryn-coch North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMK">
        <xs:annotation>
          <xs:documentation>Bryn-coch South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZML">
        <xs:annotation>
          <xs:documentation>Cadoxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMM">
        <xs:annotation>
          <xs:documentation>Cimla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMN">
        <xs:annotation>
          <xs:documentation>Coedffranc Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMP">
        <xs:annotation>
          <xs:documentation>Coedffranc North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMQ">
        <xs:annotation>
          <xs:documentation>Coedffranc West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMR">
        <xs:annotation>
          <xs:documentation>Crynant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMS">
        <xs:annotation>
          <xs:documentation>Cwmllynfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMT">
        <xs:annotation>
          <xs:documentation>Cymmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMU">
        <xs:annotation>
          <xs:documentation>Dyffryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMW">
        <xs:annotation>
          <xs:documentation>Glyncorrwg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMX">
        <xs:annotation>
          <xs:documentation>Glynneath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMY">
        <xs:annotation>
          <xs:documentation>Godre'r graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZMZ">
        <xs:annotation>
          <xs:documentation>Gwaun-Cae-Gurwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNA">
        <xs:annotation>
          <xs:documentation>Gwynfi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNB">
        <xs:annotation>
          <xs:documentation>Lower Brynamman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNC">
        <xs:annotation>
          <xs:documentation>Margam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZND">
        <xs:annotation>
          <xs:documentation>Neath East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNE">
        <xs:annotation>
          <xs:documentation>Neath North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNF">
        <xs:annotation>
          <xs:documentation>Neath South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNG">
        <xs:annotation>
          <xs:documentation>Onllwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNH">
        <xs:annotation>
          <xs:documentation>Pelenna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNJ">
        <xs:annotation>
          <xs:documentation>Pontardawe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNK">
        <xs:annotation>
          <xs:documentation>Port Talbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNL">
        <xs:annotation>
          <xs:documentation>Resolven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNM">
        <xs:annotation>
          <xs:documentation>Rhos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNN">
        <xs:annotation>
          <xs:documentation>Sandfields East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNP">
        <xs:annotation>
          <xs:documentation>Sandfields West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNQ">
        <xs:annotation>
          <xs:documentation>Seven Sisters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNR">
        <xs:annotation>
          <xs:documentation>Tai-bach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNS">
        <xs:annotation>
          <xs:documentation>Tonna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNT">
        <xs:annotation>
          <xs:documentation>Trebanos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZNU">
        <xs:annotation>
          <xs:documentation>Ystalyfera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNF">
        <xs:annotation>
          <xs:documentation>Aberkenfig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNG">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNH">
        <xs:annotation>
          <xs:documentation>Blackmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNJ">
        <xs:annotation>
          <xs:documentation>Blaengarw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNK">
        <xs:annotation>
          <xs:documentation>Brackla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNL">
        <xs:annotation>
          <xs:documentation>Bryncethin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNM">
        <xs:annotation>
          <xs:documentation>Bryncoch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNN">
        <xs:annotation>
          <xs:documentation>Bryntirion, Laleston and Merthyr Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNP">
        <xs:annotation>
          <xs:documentation>Caerau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNQ">
        <xs:annotation>
          <xs:documentation>Cefn Cribwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNR">
        <xs:annotation>
          <xs:documentation>Cefn Glas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNS">
        <xs:annotation>
          <xs:documentation>Coity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNT">
        <xs:annotation>
          <xs:documentation>Cornelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNU">
        <xs:annotation>
          <xs:documentation>Coychurch Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNW">
        <xs:annotation>
          <xs:documentation>Felindre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNX">
        <xs:annotation>
          <xs:documentation>Hendre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNY">
        <xs:annotation>
          <xs:documentation>Litchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBNZ">
        <xs:annotation>
          <xs:documentation>Llangeinor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPA">
        <xs:annotation>
          <xs:documentation>Llangewydd and Brynhyfryd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPB">
        <xs:annotation>
          <xs:documentation>Llangynwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPC">
        <xs:annotation>
          <xs:documentation>Maesteg East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPD">
        <xs:annotation>
          <xs:documentation>Maesteg West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPE">
        <xs:annotation>
          <xs:documentation>Morfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPF">
        <xs:annotation>
          <xs:documentation>Nant-y-moel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPG">
        <xs:annotation>
          <xs:documentation>Newcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPH">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPJ">
        <xs:annotation>
          <xs:documentation>Nottage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPK">
        <xs:annotation>
          <xs:documentation>Ogmore Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPL">
        <xs:annotation>
          <xs:documentation>Oldcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPM">
        <xs:annotation>
          <xs:documentation>Pendre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPN">
        <xs:annotation>
          <xs:documentation>Penprysg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPP">
        <xs:annotation>
          <xs:documentation>Pen-y-fai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPQ">
        <xs:annotation>
          <xs:documentation>Pontycymmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPR">
        <xs:annotation>
          <xs:documentation>Porthcawl East Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPS">
        <xs:annotation>
          <xs:documentation>Porthcawl West Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPT">
        <xs:annotation>
          <xs:documentation>Pyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPU">
        <xs:annotation>
          <xs:documentation>Rest Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPW">
        <xs:annotation>
          <xs:documentation>Sarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PBPX">
        <xs:annotation>
          <xs:documentation>Ynysawdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDMZ">
        <xs:annotation>
          <xs:documentation>Baruc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNA">
        <xs:annotation>
          <xs:documentation>Buttrills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNB">
        <xs:annotation>
          <xs:documentation>Cadoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNC">
        <xs:annotation>
          <xs:documentation>Castleland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDND">
        <xs:annotation>
          <xs:documentation>Cornerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNE">
        <xs:annotation>
          <xs:documentation>Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNF">
        <xs:annotation>
          <xs:documentation>Cowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNG">
        <xs:annotation>
          <xs:documentation>Dinas Powys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNH">
        <xs:annotation>
          <xs:documentation>Dyfan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNJ">
        <xs:annotation>
          <xs:documentation>Gibbonsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNK">
        <xs:annotation>
          <xs:documentation>Illtyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNL">
        <xs:annotation>
          <xs:documentation>Llandough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNM">
        <xs:annotation>
          <xs:documentation>Llandow/Ewenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNN">
        <xs:annotation>
          <xs:documentation>Llantwit Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNP">
        <xs:annotation>
          <xs:documentation>Peterston-super-Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNQ">
        <xs:annotation>
          <xs:documentation>Plymouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNR">
        <xs:annotation>
          <xs:documentation>Rhoose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNS">
        <xs:annotation>
          <xs:documentation>St. Athan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNT">
        <xs:annotation>
          <xs:documentation>St. Augustine's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNU">
        <xs:annotation>
          <xs:documentation>St. Bride's Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNW">
        <xs:annotation>
          <xs:documentation>Stanwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNX">
        <xs:annotation>
          <xs:documentation>Sully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PDNY">
        <xs:annotation>
          <xs:documentation>Wenvoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPH">
        <xs:annotation>
          <xs:documentation>Aberaman North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPJ">
        <xs:annotation>
          <xs:documentation>Aberaman South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPK">
        <xs:annotation>
          <xs:documentation>Abercynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPL">
        <xs:annotation>
          <xs:documentation>Aberdare East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPM">
        <xs:annotation>
          <xs:documentation>Aberdare West/Llwydcoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPN">
        <xs:annotation>
          <xs:documentation>Beddau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPP">
        <xs:annotation>
          <xs:documentation>Brynna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPQ">
        <xs:annotation>
          <xs:documentation>Church Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPR">
        <xs:annotation>
          <xs:documentation>Cilfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPS">
        <xs:annotation>
          <xs:documentation>Cwm Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPT">
        <xs:annotation>
          <xs:documentation>Cwmbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPU">
        <xs:annotation>
          <xs:documentation>Cymmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPW">
        <xs:annotation>
          <xs:documentation>Ferndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPX">
        <xs:annotation>
          <xs:documentation>Gilfach Goch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPY">
        <xs:annotation>
          <xs:documentation>Glyncoch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFPZ">
        <xs:annotation>
          <xs:documentation>Graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQA">
        <xs:annotation>
          <xs:documentation>Hawthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQB">
        <xs:annotation>
          <xs:documentation>Hirwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQC">
        <xs:annotation>
          <xs:documentation>Llanharan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQD">
        <xs:annotation>
          <xs:documentation>Llanharry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQE">
        <xs:annotation>
          <xs:documentation>Llantrisant Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQF">
        <xs:annotation>
          <xs:documentation>Llantwit Fardre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQG">
        <xs:annotation>
          <xs:documentation>Llwyn-y-pia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQH">
        <xs:annotation>
          <xs:documentation>Maerdy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQJ">
        <xs:annotation>
          <xs:documentation>Mountain Ash East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQK">
        <xs:annotation>
          <xs:documentation>Mountain Ash West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQL">
        <xs:annotation>
          <xs:documentation>Penrhiwceiber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQM">
        <xs:annotation>
          <xs:documentation>Pentre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQN">
        <xs:annotation>
          <xs:documentation>Pen-y-graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQP">
        <xs:annotation>
          <xs:documentation>Pen-y-waun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQQ">
        <xs:annotation>
          <xs:documentation>Pont-y-clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQR">
        <xs:annotation>
          <xs:documentation>Pontypridd Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQS">
        <xs:annotation>
          <xs:documentation>Porth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQT">
        <xs:annotation>
          <xs:documentation>Rhigos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQU">
        <xs:annotation>
          <xs:documentation>Rhondda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQW">
        <xs:annotation>
          <xs:documentation>Rhydfelen Central/Ilan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQX">
        <xs:annotation>
          <xs:documentation>Taffs Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQY">
        <xs:annotation>
          <xs:documentation>Talbot Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFQZ">
        <xs:annotation>
          <xs:documentation>Ton-teg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRA">
        <xs:annotation>
          <xs:documentation>Tonypandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRB">
        <xs:annotation>
          <xs:documentation>Tonyrefail East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRC">
        <xs:annotation>
          <xs:documentation>Tonyrefail West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRD">
        <xs:annotation>
          <xs:documentation>Trallwng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRE">
        <xs:annotation>
          <xs:documentation>Trealaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRF">
        <xs:annotation>
          <xs:documentation>Treforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRG">
        <xs:annotation>
          <xs:documentation>Treherbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRH">
        <xs:annotation>
          <xs:documentation>Treorchy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRJ">
        <xs:annotation>
          <xs:documentation>Tylorstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRK">
        <xs:annotation>
          <xs:documentation>Tyn-y-nant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRL">
        <xs:annotation>
          <xs:documentation>Ynyshir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRM">
        <xs:annotation>
          <xs:documentation>Ynysybwl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PFRN">
        <xs:annotation>
          <xs:documentation>Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMA">
        <xs:annotation>
          <xs:documentation>Bedlinog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMB">
        <xs:annotation>
          <xs:documentation>Cyfarthfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMC">
        <xs:annotation>
          <xs:documentation>Dowlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMD">
        <xs:annotation>
          <xs:documentation>Gurnos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHME">
        <xs:annotation>
          <xs:documentation>Merthyr Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMF">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMG">
        <xs:annotation>
          <xs:documentation>Penydarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMH">
        <xs:annotation>
          <xs:documentation>Plymouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMJ">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHMK">
        <xs:annotation>
          <xs:documentation>Treharris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PHML">
        <xs:annotation>
          <xs:documentation>Vaynor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNP">
        <xs:annotation>
          <xs:documentation>Aberbargoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNQ">
        <xs:annotation>
          <xs:documentation>Abercarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNR">
        <xs:annotation>
          <xs:documentation>Aber Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNS">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNT">
        <xs:annotation>
          <xs:documentation>Bargoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNU">
        <xs:annotation>
          <xs:documentation>Bedwas, Trethomas and Machen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNW">
        <xs:annotation>
          <xs:documentation>Blackwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNX">
        <xs:annotation>
          <xs:documentation>Cefn Fforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNY">
        <xs:annotation>
          <xs:documentation>Crosskeys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKNZ">
        <xs:annotation>
          <xs:documentation>Crumlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPA">
        <xs:annotation>
          <xs:documentation>Darren Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPB">
        <xs:annotation>
          <xs:documentation>Gilfach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPC">
        <xs:annotation>
          <xs:documentation>Hengoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPD">
        <xs:annotation>
          <xs:documentation>Llanbradach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPE">
        <xs:annotation>
          <xs:documentation>Maesycwmmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPF">
        <xs:annotation>
          <xs:documentation>Morgan Jones</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPG">
        <xs:annotation>
          <xs:documentation>Moriah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPH">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPJ">
        <xs:annotation>
          <xs:documentation>Newbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPK">
        <xs:annotation>
          <xs:documentation>New Tredegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPL">
        <xs:annotation>
          <xs:documentation>Pengam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPM">
        <xs:annotation>
          <xs:documentation>Penmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPN">
        <xs:annotation>
          <xs:documentation>Penyrheol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPP">
        <xs:annotation>
          <xs:documentation>Pontllanfraith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPQ">
        <xs:annotation>
          <xs:documentation>Pontlottyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPR">
        <xs:annotation>
          <xs:documentation>Risca East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPS">
        <xs:annotation>
          <xs:documentation>Risca West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPT">
        <xs:annotation>
          <xs:documentation>St. Cattwg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPU">
        <xs:annotation>
          <xs:documentation>St. James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPW">
        <xs:annotation>
          <xs:documentation>St. Martins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPX">
        <xs:annotation>
          <xs:documentation>Twyn Carno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPY">
        <xs:annotation>
          <xs:documentation>Ynysddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PKPZ">
        <xs:annotation>
          <xs:documentation>Ystrad Mynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMA">
        <xs:annotation>
          <xs:documentation>Abertillery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMB">
        <xs:annotation>
          <xs:documentation>Badminton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMC">
        <xs:annotation>
          <xs:documentation>Beaufort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMD">
        <xs:annotation>
          <xs:documentation>Blaina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLME">
        <xs:annotation>
          <xs:documentation>Brynmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMF">
        <xs:annotation>
          <xs:documentation>Cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMG">
        <xs:annotation>
          <xs:documentation>Cwmtillery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMH">
        <xs:annotation>
          <xs:documentation>Ebbw Vale North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMJ">
        <xs:annotation>
          <xs:documentation>Ebbw Vale South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMK">
        <xs:annotation>
          <xs:documentation>Georgetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLML">
        <xs:annotation>
          <xs:documentation>Llanhilleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMM">
        <xs:annotation>
          <xs:documentation>Nantyglo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMN">
        <xs:annotation>
          <xs:documentation>Rassau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMP">
        <xs:annotation>
          <xs:documentation>Sirhowy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMQ">
        <xs:annotation>
          <xs:documentation>Six Bells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PLMR">
        <xs:annotation>
          <xs:documentation>Tredegar Central and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNC">
        <xs:annotation>
          <xs:documentation>Abersychan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMND">
        <xs:annotation>
          <xs:documentation>Blaenavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNE">
        <xs:annotation>
          <xs:documentation>Brynwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNF">
        <xs:annotation>
          <xs:documentation>Coed Eva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNG">
        <xs:annotation>
          <xs:documentation>Croesyceiliog North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNH">
        <xs:annotation>
          <xs:documentation>Croesyceiliog South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNJ">
        <xs:annotation>
          <xs:documentation>Cwmyniscoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNK">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNL">
        <xs:annotation>
          <xs:documentation>Greenmeadow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNM">
        <xs:annotation>
          <xs:documentation>Llantarnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNN">
        <xs:annotation>
          <xs:documentation>Llanyrafon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNP">
        <xs:annotation>
          <xs:documentation>Llanyrafon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNQ">
        <xs:annotation>
          <xs:documentation>New Inn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNR">
        <xs:annotation>
          <xs:documentation>Panteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNS">
        <xs:annotation>
          <xs:documentation>Pontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNT">
        <xs:annotation>
          <xs:documentation>Pontnewynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNU">
        <xs:annotation>
          <xs:documentation>Pontypool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNW">
        <xs:annotation>
          <xs:documentation>St. Cadocs and Penygarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNX">
        <xs:annotation>
          <xs:documentation>St. Dials</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNY">
        <xs:annotation>
          <xs:documentation>Snatchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMNZ">
        <xs:annotation>
          <xs:documentation>Trevethin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMPA">
        <xs:annotation>
          <xs:documentation>Two Locks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMPB">
        <xs:annotation>
          <xs:documentation>Upper Cwmbran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PMPC">
        <xs:annotation>
          <xs:documentation>Wainfelin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNQ">
        <xs:annotation>
          <xs:documentation>Caerwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNR">
        <xs:annotation>
          <xs:documentation>Caldicot Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNS">
        <xs:annotation>
          <xs:documentation>Cantref</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNT">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNU">
        <xs:annotation>
          <xs:documentation>Croesonen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNW">
        <xs:annotation>
          <xs:documentation>Crucorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNX">
        <xs:annotation>
          <xs:documentation>Devauden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNY">
        <xs:annotation>
          <xs:documentation>Dewstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPNZ">
        <xs:annotation>
          <xs:documentation>Dixton with Osbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPA">
        <xs:annotation>
          <xs:documentation>Drybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPB">
        <xs:annotation>
          <xs:documentation>Goetre Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPC">
        <xs:annotation>
          <xs:documentation>Green Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPD">
        <xs:annotation>
          <xs:documentation>Grofield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPE">
        <xs:annotation>
          <xs:documentation>Lansdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPF">
        <xs:annotation>
          <xs:documentation>Larkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPG">
        <xs:annotation>
          <xs:documentation>Llanbadoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPH">
        <xs:annotation>
          <xs:documentation>Llanelly Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPJ">
        <xs:annotation>
          <xs:documentation>Llanfoist Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPK">
        <xs:annotation>
          <xs:documentation>Llangybi Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPL">
        <xs:annotation>
          <xs:documentation>Llanover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPM">
        <xs:annotation>
          <xs:documentation>Llantilio Crossenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPN">
        <xs:annotation>
          <xs:documentation>Llanwenarth Ultra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPP">
        <xs:annotation>
          <xs:documentation>Mardy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPQ">
        <xs:annotation>
          <xs:documentation>Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPR">
        <xs:annotation>
          <xs:documentation>Mitchel Troy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPS">
        <xs:annotation>
          <xs:documentation>Overmonnow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPT">
        <xs:annotation>
          <xs:documentation>Portskewett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPU">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPW">
        <xs:annotation>
          <xs:documentation>Raglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPX">
        <xs:annotation>
          <xs:documentation>Rogiet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPY">
        <xs:annotation>
          <xs:documentation>St. Arvans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPPZ">
        <xs:annotation>
          <xs:documentation>St. Christopher's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQA">
        <xs:annotation>
          <xs:documentation>St. Kingsmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQB">
        <xs:annotation>
          <xs:documentation>St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQC">
        <xs:annotation>
          <xs:documentation>Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQD">
        <xs:annotation>
          <xs:documentation>Shirenewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQE">
        <xs:annotation>
          <xs:documentation>The Elms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQF">
        <xs:annotation>
          <xs:documentation>Thornwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQG">
        <xs:annotation>
          <xs:documentation>Trellech United</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQH">
        <xs:annotation>
          <xs:documentation>Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQJ">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PPQK">
        <xs:annotation>
          <xs:documentation>Wyesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRMX">
        <xs:annotation>
          <xs:documentation>Allt-yr-yn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRMY">
        <xs:annotation>
          <xs:documentation>Alway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRMZ">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNA">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNB">
        <xs:annotation>
          <xs:documentation>Caerleon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNC">
        <xs:annotation>
          <xs:documentation>Gaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRND">
        <xs:annotation>
          <xs:documentation>Graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNE">
        <xs:annotation>
          <xs:documentation>Langstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNF">
        <xs:annotation>
          <xs:documentation>Liswerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNG">
        <xs:annotation>
          <xs:documentation>Llanwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNH">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNJ">
        <xs:annotation>
          <xs:documentation>Marshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNK">
        <xs:annotation>
          <xs:documentation>Pillgwenlly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNL">
        <xs:annotation>
          <xs:documentation>Ringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNM">
        <xs:annotation>
          <xs:documentation>Rogerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNN">
        <xs:annotation>
          <xs:documentation>St. Julians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNP">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNQ">
        <xs:annotation>
          <xs:documentation>Stow Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNR">
        <xs:annotation>
          <xs:documentation>Tredegar Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PRNS">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNF">
        <xs:annotation>
          <xs:documentation>Adamsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNG">
        <xs:annotation>
          <xs:documentation>Butetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNH">
        <xs:annotation>
          <xs:documentation>Caerau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNJ">
        <xs:annotation>
          <xs:documentation>Canton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNK">
        <xs:annotation>
          <xs:documentation>Cathays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNL">
        <xs:annotation>
          <xs:documentation>Creigiau/St. Fagans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNM">
        <xs:annotation>
          <xs:documentation>Cyncoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNN">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNP">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNQ">
        <xs:annotation>
          <xs:documentation>Gabalfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNR">
        <xs:annotation>
          <xs:documentation>Grangetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNS">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNT">
        <xs:annotation>
          <xs:documentation>Lisvane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNU">
        <xs:annotation>
          <xs:documentation>Llandaff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNW">
        <xs:annotation>
          <xs:documentation>Llandaff North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNX">
        <xs:annotation>
          <xs:documentation>Llanishen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNY">
        <xs:annotation>
          <xs:documentation>Llanrumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTNZ">
        <xs:annotation>
          <xs:documentation>Pentwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPA">
        <xs:annotation>
          <xs:documentation>Pentyrch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPB">
        <xs:annotation>
          <xs:documentation>Penylan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPC">
        <xs:annotation>
          <xs:documentation>Plasnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPD">
        <xs:annotation>
          <xs:documentation>Pontprennau/Old St. Mellons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPE">
        <xs:annotation>
          <xs:documentation>Radyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPF">
        <xs:annotation>
          <xs:documentation>Rhiwbina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPG">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPH">
        <xs:annotation>
          <xs:documentation>Rumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPJ">
        <xs:annotation>
          <xs:documentation>Splott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPK">
        <xs:annotation>
          <xs:documentation>Trowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PTPL">
        <xs:annotation>
          <xs:documentation>Whitchurch and Tongwynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA01">
        <xs:annotation>
          <xs:documentation>Pitmedden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA02">
        <xs:annotation>
          <xs:documentation>Bankhead/Stoneywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA03">
        <xs:annotation>
          <xs:documentation>Danestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA04">
        <xs:annotation>
          <xs:documentation>Jesmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA05">
        <xs:annotation>
          <xs:documentation>Oldmachar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA06">
        <xs:annotation>
          <xs:documentation>Bridge of Don</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA07">
        <xs:annotation>
          <xs:documentation>Donmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA08">
        <xs:annotation>
          <xs:documentation>Newhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA09">
        <xs:annotation>
          <xs:documentation>Auchmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA10">
        <xs:annotation>
          <xs:documentation>Cummings Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA11">
        <xs:annotation>
          <xs:documentation>Springhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA12">
        <xs:annotation>
          <xs:documentation>Mastrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA13">
        <xs:annotation>
          <xs:documentation>Sheddocksley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA14">
        <xs:annotation>
          <xs:documentation>Summerhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA15">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA16">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA17">
        <xs:annotation>
          <xs:documentation>St. Machar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA18">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA19">
        <xs:annotation>
          <xs:documentation>Kittybrewster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA20">
        <xs:annotation>
          <xs:documentation>Stockethill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA21">
        <xs:annotation>
          <xs:documentation>Berryden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA22">
        <xs:annotation>
          <xs:documentation>Sunnybank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA23">
        <xs:annotation>
          <xs:documentation>Pittodrie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA24">
        <xs:annotation>
          <xs:documentation>Midstocket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA25">
        <xs:annotation>
          <xs:documentation>Queens Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA26">
        <xs:annotation>
          <xs:documentation>Gilcomston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA27">
        <xs:annotation>
          <xs:documentation>Langstane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA28">
        <xs:annotation>
          <xs:documentation>Castlehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA29">
        <xs:annotation>
          <xs:documentation>Hazlehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA30">
        <xs:annotation>
          <xs:documentation>Peterculter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA31">
        <xs:annotation>
          <xs:documentation>Murtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA32">
        <xs:annotation>
          <xs:documentation>Cults</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA33">
        <xs:annotation>
          <xs:documentation>Seafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA34">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA35">
        <xs:annotation>
          <xs:documentation>Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA36">
        <xs:annotation>
          <xs:documentation>Garthdee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA37">
        <xs:annotation>
          <xs:documentation>Gairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA38">
        <xs:annotation>
          <xs:documentation>Duthie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA39">
        <xs:annotation>
          <xs:documentation>Torry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA40">
        <xs:annotation>
          <xs:documentation>Tullos Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA41">
        <xs:annotation>
          <xs:documentation>Kincorth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA42">
        <xs:annotation>
          <xs:documentation>Nigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QA43">
        <xs:annotation>
          <xs:documentation>Loirston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB01">
        <xs:annotation>
          <xs:documentation>Durn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB02">
        <xs:annotation>
          <xs:documentation>Banff West and Boyndie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB03">
        <xs:annotation>
          <xs:documentation>Banff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB04">
        <xs:annotation>
          <xs:documentation>Aberchirder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB05">
        <xs:annotation>
          <xs:documentation>Macduff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB06">
        <xs:annotation>
          <xs:documentation>Gamrie-King Edward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB07">
        <xs:annotation>
          <xs:documentation>Buchan North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB08">
        <xs:annotation>
          <xs:documentation>Fraserburgh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB09">
        <xs:annotation>
          <xs:documentation>Fraserburgh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB10">
        <xs:annotation>
          <xs:documentation>Fraserburgh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB11">
        <xs:annotation>
          <xs:documentation>Fraserburgh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB12">
        <xs:annotation>
          <xs:documentation>Buchan North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB13">
        <xs:annotation>
          <xs:documentation>South Buchan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB14">
        <xs:annotation>
          <xs:documentation>Central Buchan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB15">
        <xs:annotation>
          <xs:documentation>Lonmay and St Fergus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB16">
        <xs:annotation>
          <xs:documentation>Mintlaw-Old Deer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB17">
        <xs:annotation>
          <xs:documentation>Mintlaw-Longside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB18">
        <xs:annotation>
          <xs:documentation>Boddam-Inverugie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB19">
        <xs:annotation>
          <xs:documentation>Blackhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB20">
        <xs:annotation>
          <xs:documentation>Buchanhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB21">
        <xs:annotation>
          <xs:documentation>Peterhead Central-Roanheads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB22">
        <xs:annotation>
          <xs:documentation>Clerkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB23">
        <xs:annotation>
          <xs:documentation>Dales-Towerhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB24">
        <xs:annotation>
          <xs:documentation>Cruden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB25">
        <xs:annotation>
          <xs:documentation>Turriff West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB26">
        <xs:annotation>
          <xs:documentation>Turriff East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB27">
        <xs:annotation>
          <xs:documentation>Upper Ythan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB28">
        <xs:annotation>
          <xs:documentation>Fyvie-Methlick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB29">
        <xs:annotation>
          <xs:documentation>Tarves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB30">
        <xs:annotation>
          <xs:documentation>Ythan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB31">
        <xs:annotation>
          <xs:documentation>Ellon Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB32">
        <xs:annotation>
          <xs:documentation>Logie Buchan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB33">
        <xs:annotation>
          <xs:documentation>Meldrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB34">
        <xs:annotation>
          <xs:documentation>Udny-Slains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB35">
        <xs:annotation>
          <xs:documentation>Belhelvie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB36">
        <xs:annotation>
          <xs:documentation>Insch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB37">
        <xs:annotation>
          <xs:documentation>Chapel and Gadie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB38">
        <xs:annotation>
          <xs:documentation>Inverurie North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB39">
        <xs:annotation>
          <xs:documentation>Inverurie Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB40">
        <xs:annotation>
          <xs:documentation>Inverurie South and Port Elphinstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB41">
        <xs:annotation>
          <xs:documentation>Kintore and Keithhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB42">
        <xs:annotation>
          <xs:documentation>Newmachar and Fintray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB43">
        <xs:annotation>
          <xs:documentation>Kemnay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB44">
        <xs:annotation>
          <xs:documentation>Echt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB45">
        <xs:annotation>
          <xs:documentation>Kinellar and Westhill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB46">
        <xs:annotation>
          <xs:documentation>Westhill Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB47">
        <xs:annotation>
          <xs:documentation>Elrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB48">
        <xs:annotation>
          <xs:documentation>Huntly West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB49">
        <xs:annotation>
          <xs:documentation>Huntly East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB50">
        <xs:annotation>
          <xs:documentation>Strathbogie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB51">
        <xs:annotation>
          <xs:documentation>Donside and Cromar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB52">
        <xs:annotation>
          <xs:documentation>Alford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB53">
        <xs:annotation>
          <xs:documentation>Upper Deeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB54">
        <xs:annotation>
          <xs:documentation>Aboyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB55">
        <xs:annotation>
          <xs:documentation>Mid Deeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB56">
        <xs:annotation>
          <xs:documentation>Banchory West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB57">
        <xs:annotation>
          <xs:documentation>Banchory East and Crathes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB58">
        <xs:annotation>
          <xs:documentation>Lower Deeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB59">
        <xs:annotation>
          <xs:documentation>Portlethen North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB60">
        <xs:annotation>
          <xs:documentation>Portlethen South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB61">
        <xs:annotation>
          <xs:documentation>Newtonhill, Muchalls and Cammachmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB62">
        <xs:annotation>
          <xs:documentation>Stonehaven North and Fetteresso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB63">
        <xs:annotation>
          <xs:documentation>Stonehaven Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB64">
        <xs:annotation>
          <xs:documentation>Stonehaven South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB65">
        <xs:annotation>
          <xs:documentation>Mearns North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB66">
        <xs:annotation>
          <xs:documentation>Mearns Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB67">
        <xs:annotation>
          <xs:documentation>Inverbervie, Gourdon and Johnshaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QB68">
        <xs:annotation>
          <xs:documentation>Mearns South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC01">
        <xs:annotation>
          <xs:documentation>Kirriemuir West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC02">
        <xs:annotation>
          <xs:documentation>Kirriemuir East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC03">
        <xs:annotation>
          <xs:documentation>Brechin West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC04">
        <xs:annotation>
          <xs:documentation>Brechin North Esk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC05">
        <xs:annotation>
          <xs:documentation>Westfield and Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC06">
        <xs:annotation>
          <xs:documentation>Forfar West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC07">
        <xs:annotation>
          <xs:documentation>Forfar Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC08">
        <xs:annotation>
          <xs:documentation>Forfar East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC09">
        <xs:annotation>
          <xs:documentation>Brechin South Esk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC10">
        <xs:annotation>
          <xs:documentation>Montrose Ferryden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC11">
        <xs:annotation>
          <xs:documentation>Montrose Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC12">
        <xs:annotation>
          <xs:documentation>Montrose West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC13">
        <xs:annotation>
          <xs:documentation>Montrose Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC14">
        <xs:annotation>
          <xs:documentation>Forfar South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC15">
        <xs:annotation>
          <xs:documentation>Letham and Friockheim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC16">
        <xs:annotation>
          <xs:documentation>Sidlaw West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC17">
        <xs:annotation>
          <xs:documentation>Sidlaw East and Ashludie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC18">
        <xs:annotation>
          <xs:documentation>Monifieth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC19">
        <xs:annotation>
          <xs:documentation>Monifieth Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC20">
        <xs:annotation>
          <xs:documentation>Carnoustie West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC21">
        <xs:annotation>
          <xs:documentation>Carnoustie Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC22">
        <xs:annotation>
          <xs:documentation>Carnoustie East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC23">
        <xs:annotation>
          <xs:documentation>Arbirlot and Hospitalfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC24">
        <xs:annotation>
          <xs:documentation>Keptie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC25">
        <xs:annotation>
          <xs:documentation>Arbroath North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC26">
        <xs:annotation>
          <xs:documentation>Brothock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC27">
        <xs:annotation>
          <xs:documentation>Hayshead and Lunan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC28">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QC29">
        <xs:annotation>
          <xs:documentation>Cliffburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD01">
        <xs:annotation>
          <xs:documentation>South Kintyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD02">
        <xs:annotation>
          <xs:documentation>Campbeltown Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD03">
        <xs:annotation>
          <xs:documentation>East Central Kintyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD04">
        <xs:annotation>
          <xs:documentation>North and West Kintyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD05">
        <xs:annotation>
          <xs:documentation>Knapdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD06">
        <xs:annotation>
          <xs:documentation>Lochgilphead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD07">
        <xs:annotation>
          <xs:documentation>Craignish - Glenaray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD08">
        <xs:annotation>
          <xs:documentation>Islay North, Jura and Colonsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD09">
        <xs:annotation>
          <xs:documentation>Islay South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD10">
        <xs:annotation>
          <xs:documentation>Awe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD11">
        <xs:annotation>
          <xs:documentation>Oban North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD12">
        <xs:annotation>
          <xs:documentation>Oban Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD13">
        <xs:annotation>
          <xs:documentation>Oban South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD14">
        <xs:annotation>
          <xs:documentation>Ardconnel - Kilmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD15">
        <xs:annotation>
          <xs:documentation>North Lorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD16">
        <xs:annotation>
          <xs:documentation>Mull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD17">
        <xs:annotation>
          <xs:documentation>Tiree and Coll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD18">
        <xs:annotation>
          <xs:documentation>Bute North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD19">
        <xs:annotation>
          <xs:documentation>Bute Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD20">
        <xs:annotation>
          <xs:documentation>Bute South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD21">
        <xs:annotation>
          <xs:documentation>East Lochfyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD22">
        <xs:annotation>
          <xs:documentation>Kirn and Hunter's Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD23">
        <xs:annotation>
          <xs:documentation>Ardenslate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD24">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD25">
        <xs:annotation>
          <xs:documentation>Auchamore and Innellan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD26">
        <xs:annotation>
          <xs:documentation>Holy Loch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD27">
        <xs:annotation>
          <xs:documentation>Helensburgh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD28">
        <xs:annotation>
          <xs:documentation>East Central Helensburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD29">
        <xs:annotation>
          <xs:documentation>Helensburgh Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD30">
        <xs:annotation>
          <xs:documentation>Helensburgh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD31">
        <xs:annotation>
          <xs:documentation>Helensburgh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD32">
        <xs:annotation>
          <xs:documentation>West Helensburgh and Rhu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD33">
        <xs:annotation>
          <xs:documentation>Garelochhead and Cove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD34">
        <xs:annotation>
          <xs:documentation>Arrochar, Luss, Arden and Ardenconnel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD35">
        <xs:annotation>
          <xs:documentation>Roseneath, Clynder and Kilcreggan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QD36">
        <xs:annotation>
          <xs:documentation>Cardross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE01">
        <xs:annotation>
          <xs:documentation>Eyemouth and District South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE02">
        <xs:annotation>
          <xs:documentation>Chirnside and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE03">
        <xs:annotation>
          <xs:documentation>Coldstream and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE04">
        <xs:annotation>
          <xs:documentation>Duns and District South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE05">
        <xs:annotation>
          <xs:documentation>Duns and District North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE06">
        <xs:annotation>
          <xs:documentation>Eyemouth and District North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE07">
        <xs:annotation>
          <xs:documentation>Kelso and District North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE08">
        <xs:annotation>
          <xs:documentation>Kelso Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE09">
        <xs:annotation>
          <xs:documentation>Kelso and District South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE10">
        <xs:annotation>
          <xs:documentation>Jedburgh and District East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE11">
        <xs:annotation>
          <xs:documentation>Jedburgh and District West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE12">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE13">
        <xs:annotation>
          <xs:documentation>Burnfoot and Mansfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE14">
        <xs:annotation>
          <xs:documentation>Silverbuthall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE15">
        <xs:annotation>
          <xs:documentation>Weensland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE16">
        <xs:annotation>
          <xs:documentation>Teviot and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE17">
        <xs:annotation>
          <xs:documentation>Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE18">
        <xs:annotation>
          <xs:documentation>Galawater and Lauderdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE19">
        <xs:annotation>
          <xs:documentation>Earlston, Gordon and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE20">
        <xs:annotation>
          <xs:documentation>Melrose and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE21">
        <xs:annotation>
          <xs:documentation>Scott's View</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE22">
        <xs:annotation>
          <xs:documentation>Alewater and Denholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE23">
        <xs:annotation>
          <xs:documentation>Old Selkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE24">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE25">
        <xs:annotation>
          <xs:documentation>Netherdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE26">
        <xs:annotation>
          <xs:documentation>Lower Langlee and Tweedbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE27">
        <xs:annotation>
          <xs:documentation>Upper Langlee and Ladhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE28">
        <xs:annotation>
          <xs:documentation>Kilnknowe and Clovenfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE29">
        <xs:annotation>
          <xs:documentation>Mossilee and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE30">
        <xs:annotation>
          <xs:documentation>Innerleithen and Walkerburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE31">
        <xs:annotation>
          <xs:documentation>Peebles and District South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE32">
        <xs:annotation>
          <xs:documentation>Peebles and District East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE33">
        <xs:annotation>
          <xs:documentation>Peebles and Upper Tweed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QE34">
        <xs:annotation>
          <xs:documentation>West Linton and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF01">
        <xs:annotation>
          <xs:documentation>Menstrie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF02">
        <xs:annotation>
          <xs:documentation>Alva North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF03">
        <xs:annotation>
          <xs:documentation>Alva South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF04">
        <xs:annotation>
          <xs:documentation>Tillicoultry West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF05">
        <xs:annotation>
          <xs:documentation>Tillicoultry East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF06">
        <xs:annotation>
          <xs:documentation>Dollar and Muckhart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF07">
        <xs:annotation>
          <xs:documentation>Devon and Clackmannan North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF08">
        <xs:annotation>
          <xs:documentation>Clackmannan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF09">
        <xs:annotation>
          <xs:documentation>Gartmorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF10">
        <xs:annotation>
          <xs:documentation>Alloa North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF11">
        <xs:annotation>
          <xs:documentation>Alloa East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF12">
        <xs:annotation>
          <xs:documentation>Alloa Mar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF13">
        <xs:annotation>
          <xs:documentation>Alloa West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF14">
        <xs:annotation>
          <xs:documentation>Alloa Claremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF15">
        <xs:annotation>
          <xs:documentation>Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF16">
        <xs:annotation>
          <xs:documentation>Muirside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF17">
        <xs:annotation>
          <xs:documentation>St Serf's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QF18">
        <xs:annotation>
          <xs:documentation>Delph and Cambus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG01">
        <xs:annotation>
          <xs:documentation>Whitecrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG02">
        <xs:annotation>
          <xs:documentation>Dalmuir/Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG03">
        <xs:annotation>
          <xs:documentation>Mountblow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG04">
        <xs:annotation>
          <xs:documentation>Parkhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG05">
        <xs:annotation>
          <xs:documentation>Linnvale/Drumry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG06">
        <xs:annotation>
          <xs:documentation>Kilbowie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG07">
        <xs:annotation>
          <xs:documentation>Kilbowie West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG08">
        <xs:annotation>
          <xs:documentation>Faifley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG09">
        <xs:annotation>
          <xs:documentation>Hardgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG10">
        <xs:annotation>
          <xs:documentation>Duntocher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG11">
        <xs:annotation>
          <xs:documentation>Bowling/Milton/Old Kilpatrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG12">
        <xs:annotation>
          <xs:documentation>Dumbarton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG13">
        <xs:annotation>
          <xs:documentation>Barloan/Overtoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG14">
        <xs:annotation>
          <xs:documentation>Dumbarton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG15">
        <xs:annotation>
          <xs:documentation>Dumbarton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG16">
        <xs:annotation>
          <xs:documentation>Dumbarton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG17">
        <xs:annotation>
          <xs:documentation>Renton/Alexandria South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG18">
        <xs:annotation>
          <xs:documentation>Alexandria North/Tullichewan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG19">
        <xs:annotation>
          <xs:documentation>Balloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG20">
        <xs:annotation>
          <xs:documentation>Haldane/Kilmaronock/Jamestown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG21">
        <xs:annotation>
          <xs:documentation>Bonhill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QG22">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH01">
        <xs:annotation>
          <xs:documentation>Rhins South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH02">
        <xs:annotation>
          <xs:documentation>Rhins North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH03">
        <xs:annotation>
          <xs:documentation>Stranraer North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH04">
        <xs:annotation>
          <xs:documentation>Stranraer South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH05">
        <xs:annotation>
          <xs:documentation>Stranraer East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH06">
        <xs:annotation>
          <xs:documentation>Luce</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH07">
        <xs:annotation>
          <xs:documentation>Whithorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH08">
        <xs:annotation>
          <xs:documentation>Wigtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH09">
        <xs:annotation>
          <xs:documentation>Cree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH10">
        <xs:annotation>
          <xs:documentation>Stewartry West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH11">
        <xs:annotation>
          <xs:documentation>Kirkcudbright - Tarff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH12">
        <xs:annotation>
          <xs:documentation>Kirkcudbright - Bengairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH13">
        <xs:annotation>
          <xs:documentation>Stewartry North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH14">
        <xs:annotation>
          <xs:documentation>Castle Douglas - Dee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH15">
        <xs:annotation>
          <xs:documentation>Castle Douglas - Urr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH16">
        <xs:annotation>
          <xs:documentation>Dalbeattie - Craignair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH17">
        <xs:annotation>
          <xs:documentation>Dalbeattie - Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH18">
        <xs:annotation>
          <xs:documentation>Criffel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH19">
        <xs:annotation>
          <xs:documentation>Cairn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH20">
        <xs:annotation>
          <xs:documentation>Sanquhar and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH21">
        <xs:annotation>
          <xs:documentation>Kirkconnel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH22">
        <xs:annotation>
          <xs:documentation>Mid Nithsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH23">
        <xs:annotation>
          <xs:documentation>Lincluden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH24">
        <xs:annotation>
          <xs:documentation>Lochside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH25">
        <xs:annotation>
          <xs:documentation>Palmerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH26">
        <xs:annotation>
          <xs:documentation>Maxwelltown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH27">
        <xs:annotation>
          <xs:documentation>Troqueer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH28">
        <xs:annotation>
          <xs:documentation>Loreburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH29">
        <xs:annotation>
          <xs:documentation>Marchmount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH30">
        <xs:annotation>
          <xs:documentation>Lochar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH31">
        <xs:annotation>
          <xs:documentation>Heathhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH32">
        <xs:annotation>
          <xs:documentation>Nithsdale East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH33">
        <xs:annotation>
          <xs:documentation>Georgetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH34">
        <xs:annotation>
          <xs:documentation>Lochvale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH35">
        <xs:annotation>
          <xs:documentation>Caerlaverock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH36">
        <xs:annotation>
          <xs:documentation>Hoddom and Kinmount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH37">
        <xs:annotation>
          <xs:documentation>Annan West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH38">
        <xs:annotation>
          <xs:documentation>Annan Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH39">
        <xs:annotation>
          <xs:documentation>Annan East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH40">
        <xs:annotation>
          <xs:documentation>Chapelcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH41">
        <xs:annotation>
          <xs:documentation>Solway Border</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH42">
        <xs:annotation>
          <xs:documentation>Canonbie and Kirtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH43">
        <xs:annotation>
          <xs:documentation>Langholm and Upper Eskdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH44">
        <xs:annotation>
          <xs:documentation>Dryfe and Lockerbie East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH45">
        <xs:annotation>
          <xs:documentation>Lockerbie and Upper Annandale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH46">
        <xs:annotation>
          <xs:documentation>Lochmaben</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QH47">
        <xs:annotation>
          <xs:documentation>Moffat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ01">
        <xs:annotation>
          <xs:documentation>Ninewells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ02">
        <xs:annotation>
          <xs:documentation>Camperdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ03">
        <xs:annotation>
          <xs:documentation>Balgay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ04">
        <xs:annotation>
          <xs:documentation>Lochee West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ05">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ06">
        <xs:annotation>
          <xs:documentation>Brackens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ07">
        <xs:annotation>
          <xs:documentation>Ardler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ08">
        <xs:annotation>
          <xs:documentation>Balgowan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ09">
        <xs:annotation>
          <xs:documentation>Claverhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ10">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ11">
        <xs:annotation>
          <xs:documentation>Longhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ12">
        <xs:annotation>
          <xs:documentation>Pitkerro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ13">
        <xs:annotation>
          <xs:documentation>Douglas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ14">
        <xs:annotation>
          <xs:documentation>Barnhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ15">
        <xs:annotation>
          <xs:documentation>Balgillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ16">
        <xs:annotation>
          <xs:documentation>Broughty Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ17">
        <xs:annotation>
          <xs:documentation>West Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ18">
        <xs:annotation>
          <xs:documentation>Craigiebank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ19">
        <xs:annotation>
          <xs:documentation>Strathmartine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ20">
        <xs:annotation>
          <xs:documentation>Lochee East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ21">
        <xs:annotation>
          <xs:documentation>Tay Bridges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ22">
        <xs:annotation>
          <xs:documentation>Logie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ23">
        <xs:annotation>
          <xs:documentation>Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ24">
        <xs:annotation>
          <xs:documentation>East Port</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ25">
        <xs:annotation>
          <xs:documentation>Baxter Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ26">
        <xs:annotation>
          <xs:documentation>Hilltown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ27">
        <xs:annotation>
          <xs:documentation>Bowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ28">
        <xs:annotation>
          <xs:documentation>Stobswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QJ29">
        <xs:annotation>
          <xs:documentation>Fairmuir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK01">
        <xs:annotation>
          <xs:documentation>Stewarton East and Dunlop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK02">
        <xs:annotation>
          <xs:documentation>Stewarton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK03">
        <xs:annotation>
          <xs:documentation>Kilmaurs and Stewarton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK04">
        <xs:annotation>
          <xs:documentation>North Kilmarnock, Fenwick and Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK05">
        <xs:annotation>
          <xs:documentation>Crosshouse, Gatehead and Knockentiber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK06">
        <xs:annotation>
          <xs:documentation>Altonhill, Hillhead and Longpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK07">
        <xs:annotation>
          <xs:documentation>Onthank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK08">
        <xs:annotation>
          <xs:documentation>Kilmarnock Central West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK09">
        <xs:annotation>
          <xs:documentation>Kilmarnock Central East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK10">
        <xs:annotation>
          <xs:documentation>North New Farm Loch and Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK11">
        <xs:annotation>
          <xs:documentation>South New Farm Loch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK12">
        <xs:annotation>
          <xs:documentation>Crookedholm, Moscow, Galston West and Hurlford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK13">
        <xs:annotation>
          <xs:documentation>Newmilns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK14">
        <xs:annotation>
          <xs:documentation>Grange/Howard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK15">
        <xs:annotation>
          <xs:documentation>Kilmarnock Central South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK16">
        <xs:annotation>
          <xs:documentation>Riccarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK17">
        <xs:annotation>
          <xs:documentation>Shortlees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK18">
        <xs:annotation>
          <xs:documentation>Bellfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK19">
        <xs:annotation>
          <xs:documentation>Hurlford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK20">
        <xs:annotation>
          <xs:documentation>Galston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK21">
        <xs:annotation>
          <xs:documentation>Darvel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK22">
        <xs:annotation>
          <xs:documentation>Mauchline</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK23">
        <xs:annotation>
          <xs:documentation>Catrine, Sorn and Mauchline East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK24">
        <xs:annotation>
          <xs:documentation>Muirkirk, Lugar, Logan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK25">
        <xs:annotation>
          <xs:documentation>Drongan, Stair and Rankinston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK26">
        <xs:annotation>
          <xs:documentation>Ochiltree, Skares, Netherthird and Craigens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK27">
        <xs:annotation>
          <xs:documentation>Auchinleck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK28">
        <xs:annotation>
          <xs:documentation>Cumnock West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK29">
        <xs:annotation>
          <xs:documentation>Cumnock East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK30">
        <xs:annotation>
          <xs:documentation>Patna and Dalrymple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK31">
        <xs:annotation>
          <xs:documentation>Dalmellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QK32">
        <xs:annotation>
          <xs:documentation>New Cumnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL01">
        <xs:annotation>
          <xs:documentation>Barloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL02">
        <xs:annotation>
          <xs:documentation>Clober</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL03">
        <xs:annotation>
          <xs:documentation>Keystone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL04">
        <xs:annotation>
          <xs:documentation>Baljaffray/Mosshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL05">
        <xs:annotation>
          <xs:documentation>Bearsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL06">
        <xs:annotation>
          <xs:documentation>Castlehill/Thorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL07">
        <xs:annotation>
          <xs:documentation>Chapelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL08">
        <xs:annotation>
          <xs:documentation>Westerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL09">
        <xs:annotation>
          <xs:documentation>Kessington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL10">
        <xs:annotation>
          <xs:documentation>West Kirkintilloch and Torrance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL11">
        <xs:annotation>
          <xs:documentation>Hillhead and Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL12">
        <xs:annotation>
          <xs:documentation>Rosebank and Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL13">
        <xs:annotation>
          <xs:documentation>East Harestanes and Twechar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL14">
        <xs:annotation>
          <xs:documentation>Kirkintilloch Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL15">
        <xs:annotation>
          <xs:documentation>Lenzie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL16">
        <xs:annotation>
          <xs:documentation>South Lenzie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL17">
        <xs:annotation>
          <xs:documentation>Campsie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL18">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL19">
        <xs:annotation>
          <xs:documentation>Kenmure and Baldernock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL20">
        <xs:annotation>
          <xs:documentation>Balmuildy and Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL21">
        <xs:annotation>
          <xs:documentation>Cadder/Langbrae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL22">
        <xs:annotation>
          <xs:documentation>Auchinairn and Crowhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL23">
        <xs:annotation>
          <xs:documentation>Woodhill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QL24">
        <xs:annotation>
          <xs:documentation>Woodhill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM01">
        <xs:annotation>
          <xs:documentation>Musselburgh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM02">
        <xs:annotation>
          <xs:documentation>Musselburgh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM03">
        <xs:annotation>
          <xs:documentation>Musselburgh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM04">
        <xs:annotation>
          <xs:documentation>Musselburgh Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM05">
        <xs:annotation>
          <xs:documentation>Musselburgh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM06">
        <xs:annotation>
          <xs:documentation>Wallyford/Whitecraig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM07">
        <xs:annotation>
          <xs:documentation>Prestonpans West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM08">
        <xs:annotation>
          <xs:documentation>Prestonpans East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM09">
        <xs:annotation>
          <xs:documentation>Cockenzie and Port Seton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM10">
        <xs:annotation>
          <xs:documentation>Longniddry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM11">
        <xs:annotation>
          <xs:documentation>Tranent West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM12">
        <xs:annotation>
          <xs:documentation>Tranent/Macmerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM13">
        <xs:annotation>
          <xs:documentation>Tranent/Elphinstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM14">
        <xs:annotation>
          <xs:documentation>Ormiston/Pencaitland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM15">
        <xs:annotation>
          <xs:documentation>Aberlady/Gullane/Dirleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM16">
        <xs:annotation>
          <xs:documentation>Haddington West/Saltoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM17">
        <xs:annotation>
          <xs:documentation>Haddington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM18">
        <xs:annotation>
          <xs:documentation>Haddington East/Athelstaneford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM19">
        <xs:annotation>
          <xs:documentation>East Linton/Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM20">
        <xs:annotation>
          <xs:documentation>North Berwick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM21">
        <xs:annotation>
          <xs:documentation>North Berwick East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM22">
        <xs:annotation>
          <xs:documentation>Dunbar/West Barns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QM23">
        <xs:annotation>
          <xs:documentation>Dunbar East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN01">
        <xs:annotation>
          <xs:documentation>Liboside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN02">
        <xs:annotation>
          <xs:documentation>Barrhead North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN03">
        <xs:annotation>
          <xs:documentation>North Neilston and West Arthurlie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN04">
        <xs:annotation>
          <xs:documentation>Barrhead Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN05">
        <xs:annotation>
          <xs:documentation>Barrhead East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN06">
        <xs:annotation>
          <xs:documentation>Auchenback</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN07">
        <xs:annotation>
          <xs:documentation>Greenfarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN08">
        <xs:annotation>
          <xs:documentation>Thornliebank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN09">
        <xs:annotation>
          <xs:documentation>Giffnock North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN10">
        <xs:annotation>
          <xs:documentation>Merrylea Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN11">
        <xs:annotation>
          <xs:documentation>Netherlee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN12">
        <xs:annotation>
          <xs:documentation>Crookfur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN13">
        <xs:annotation>
          <xs:documentation>Giffnock South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN14">
        <xs:annotation>
          <xs:documentation>Stamperland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN15">
        <xs:annotation>
          <xs:documentation>Broom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN16">
        <xs:annotation>
          <xs:documentation>Kirkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN17">
        <xs:annotation>
          <xs:documentation>Clarkston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN18">
        <xs:annotation>
          <xs:documentation>Busby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN19">
        <xs:annotation>
          <xs:documentation>Mearns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QN20">
        <xs:annotation>
          <xs:documentation>Eaglesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP01">
        <xs:annotation>
          <xs:documentation>Balerno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP02">
        <xs:annotation>
          <xs:documentation>Baberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP03">
        <xs:annotation>
          <xs:documentation>Dalmeny/Kirkliston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP04">
        <xs:annotation>
          <xs:documentation>Queensferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP05">
        <xs:annotation>
          <xs:documentation>Cramond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP06">
        <xs:annotation>
          <xs:documentation>Davidson's Mains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP07">
        <xs:annotation>
          <xs:documentation>Muirhouse/Drylaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP08">
        <xs:annotation>
          <xs:documentation>Craigleith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP09">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP10">
        <xs:annotation>
          <xs:documentation>Granton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP11">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP12">
        <xs:annotation>
          <xs:documentation>Newhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP13">
        <xs:annotation>
          <xs:documentation>East Craigs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP14">
        <xs:annotation>
          <xs:documentation>N.E. Corstorphine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP15">
        <xs:annotation>
          <xs:documentation>Murrayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP16">
        <xs:annotation>
          <xs:documentation>Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP17">
        <xs:annotation>
          <xs:documentation>Stockbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP18">
        <xs:annotation>
          <xs:documentation>New Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP19">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP20">
        <xs:annotation>
          <xs:documentation>Calton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP21">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP22">
        <xs:annotation>
          <xs:documentation>Lorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP23">
        <xs:annotation>
          <xs:documentation>Gyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP24">
        <xs:annotation>
          <xs:documentation>S.E. Corstorphine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP25">
        <xs:annotation>
          <xs:documentation>Parkhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP26">
        <xs:annotation>
          <xs:documentation>Craiglockhart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP27">
        <xs:annotation>
          <xs:documentation>Stenhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP28">
        <xs:annotation>
          <xs:documentation>Moat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP29">
        <xs:annotation>
          <xs:documentation>Shandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP30">
        <xs:annotation>
          <xs:documentation>Dalry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP31">
        <xs:annotation>
          <xs:documentation>Fountainbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP32">
        <xs:annotation>
          <xs:documentation>Tollcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP33">
        <xs:annotation>
          <xs:documentation>Southside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP34">
        <xs:annotation>
          <xs:documentation>Holyrood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP35">
        <xs:annotation>
          <xs:documentation>Meadowbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP36">
        <xs:annotation>
          <xs:documentation>Mountcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP37">
        <xs:annotation>
          <xs:documentation>Leith Links</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP38">
        <xs:annotation>
          <xs:documentation>Restalrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP39">
        <xs:annotation>
          <xs:documentation>Portobello</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP40">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP41">
        <xs:annotation>
          <xs:documentation>Murray Burn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP42">
        <xs:annotation>
          <xs:documentation>Sighthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP43">
        <xs:annotation>
          <xs:documentation>Colinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP44">
        <xs:annotation>
          <xs:documentation>Firrhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP45">
        <xs:annotation>
          <xs:documentation>Merchiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP46">
        <xs:annotation>
          <xs:documentation>North Morningside/Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP47">
        <xs:annotation>
          <xs:documentation>Marchmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP48">
        <xs:annotation>
          <xs:documentation>Sciennes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP49">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP50">
        <xs:annotation>
          <xs:documentation>Prestonfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP51">
        <xs:annotation>
          <xs:documentation>South Morningside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP52">
        <xs:annotation>
          <xs:documentation>Fairmilehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP53">
        <xs:annotation>
          <xs:documentation>Alnwickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP54">
        <xs:annotation>
          <xs:documentation>Kaimes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP55">
        <xs:annotation>
          <xs:documentation>Moredun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP56">
        <xs:annotation>
          <xs:documentation>Gilmerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP57">
        <xs:annotation>
          <xs:documentation>Craigmillar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QP58">
        <xs:annotation>
          <xs:documentation>Duddingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ01">
        <xs:annotation>
          <xs:documentation>Camelon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ02">
        <xs:annotation>
          <xs:documentation>Summerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ03">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ04">
        <xs:annotation>
          <xs:documentation>Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ05">
        <xs:annotation>
          <xs:documentation>Hall Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ06">
        <xs:annotation>
          <xs:documentation>Dawson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ07">
        <xs:annotation>
          <xs:documentation>Grahamsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ08">
        <xs:annotation>
          <xs:documentation>Middlefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ09">
        <xs:annotation>
          <xs:documentation>Zetland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ10">
        <xs:annotation>
          <xs:documentation>Beancross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ11">
        <xs:annotation>
          <xs:documentation>Inchyra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ12">
        <xs:annotation>
          <xs:documentation>Dundas/Kerse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ13">
        <xs:annotation>
          <xs:documentation>Grange and Blackness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ14">
        <xs:annotation>
          <xs:documentation>Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ15">
        <xs:annotation>
          <xs:documentation>Borrowstoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ16">
        <xs:annotation>
          <xs:documentation>Kinneil and Whitecross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ17">
        <xs:annotation>
          <xs:documentation>Forthside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ18">
        <xs:annotation>
          <xs:documentation>Kinnaird</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ19">
        <xs:annotation>
          <xs:documentation>Carrongrange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ20">
        <xs:annotation>
          <xs:documentation>Tryst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ21">
        <xs:annotation>
          <xs:documentation>Larbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ22">
        <xs:annotation>
          <xs:documentation>Herbertshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ23">
        <xs:annotation>
          <xs:documentation>Denny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ24">
        <xs:annotation>
          <xs:documentation>Denny South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ25">
        <xs:annotation>
          <xs:documentation>Bonnybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ26">
        <xs:annotation>
          <xs:documentation>Banknock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ27">
        <xs:annotation>
          <xs:documentation>Laurieston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ28">
        <xs:annotation>
          <xs:documentation>Polmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ29">
        <xs:annotation>
          <xs:documentation>Redding and Westquarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ30">
        <xs:annotation>
          <xs:documentation>Darnrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ31">
        <xs:annotation>
          <xs:documentation>Reddingmuirhead, Brightons and Rumford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QQ32">
        <xs:annotation>
          <xs:documentation>Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR01">
        <xs:annotation>
          <xs:documentation>Kincardine, Culross and Low Valleyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR02">
        <xs:annotation>
          <xs:documentation>Blairhall, High Valleyfield and Torryburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR03">
        <xs:annotation>
          <xs:documentation>Oakley, Saline and Steelend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR04">
        <xs:annotation>
          <xs:documentation>Cairneyhill, Carnock and Milesmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR05">
        <xs:annotation>
          <xs:documentation>Crossford and Dunfermline Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR06">
        <xs:annotation>
          <xs:documentation>Baldridgeburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR07">
        <xs:annotation>
          <xs:documentation>Wellwood and Headwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR08">
        <xs:annotation>
          <xs:documentation>Townhill and Bellyeoman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR09">
        <xs:annotation>
          <xs:documentation>Garvock and Carnegie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR10">
        <xs:annotation>
          <xs:documentation>Halbeath, Hill of Beath and Kingseat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR11">
        <xs:annotation>
          <xs:documentation>Woodmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR12">
        <xs:annotation>
          <xs:documentation>Linburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR13">
        <xs:annotation>
          <xs:documentation>Brucefield and Nethertown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR14">
        <xs:annotation>
          <xs:documentation>Pitcorthie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR15">
        <xs:annotation>
          <xs:documentation>Limekilns and Pitreavie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR16">
        <xs:annotation>
          <xs:documentation>Rosyth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR17">
        <xs:annotation>
          <xs:documentation>Rosyth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR18">
        <xs:annotation>
          <xs:documentation>Inverkeithing West and Rosyth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR19">
        <xs:annotation>
          <xs:documentation>Inverkeithing East and North Queensferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR20">
        <xs:annotation>
          <xs:documentation>Dalgety Bay West and Hillend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR21">
        <xs:annotation>
          <xs:documentation>Dalgety Bay East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR22">
        <xs:annotation>
          <xs:documentation>Crossgates and Mossside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR23">
        <xs:annotation>
          <xs:documentation>Cowdenbeath Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR24">
        <xs:annotation>
          <xs:documentation>Oakfield and Cowdenbeath North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR25">
        <xs:annotation>
          <xs:documentation>Kelty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR26">
        <xs:annotation>
          <xs:documentation>Ballingry and Lochore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR27">
        <xs:annotation>
          <xs:documentation>Crosshill and Lochgelly North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR28">
        <xs:annotation>
          <xs:documentation>Lumphinnans and Lochgelly South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR29">
        <xs:annotation>
          <xs:documentation>Aberdour and Burntisland West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR30">
        <xs:annotation>
          <xs:documentation>Auchtertool and Burntisland East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR31">
        <xs:annotation>
          <xs:documentation>Kinghorn and Invertiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR32">
        <xs:annotation>
          <xs:documentation>Linktown and Kirkcaldy Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR33">
        <xs:annotation>
          <xs:documentation>Raith and Longbraes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR34">
        <xs:annotation>
          <xs:documentation>Bennochy and Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR35">
        <xs:annotation>
          <xs:documentation>Templehall East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR36">
        <xs:annotation>
          <xs:documentation>Templehall West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR37">
        <xs:annotation>
          <xs:documentation>Cardenden, Cluny and Chapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR38">
        <xs:annotation>
          <xs:documentation>Kinglassie, Bowhill and Dundonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR39">
        <xs:annotation>
          <xs:documentation>Dunnikier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR40">
        <xs:annotation>
          <xs:documentation>Hayfield and Balsusney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR41">
        <xs:annotation>
          <xs:documentation>Smeaton and Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR42">
        <xs:annotation>
          <xs:documentation>Glebe Park, Pathhead and Sinclairtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR43">
        <xs:annotation>
          <xs:documentation>Dysart and Gallatown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR44">
        <xs:annotation>
          <xs:documentation>Wemyss and Muiredge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR45">
        <xs:annotation>
          <xs:documentation>Buckhaven and Denbeath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR46">
        <xs:annotation>
          <xs:documentation>Methilhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR47">
        <xs:annotation>
          <xs:documentation>Methil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR48">
        <xs:annotation>
          <xs:documentation>Leven East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR49">
        <xs:annotation>
          <xs:documentation>Leven West and Kirkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR50">
        <xs:annotation>
          <xs:documentation>Kennoway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR51">
        <xs:annotation>
          <xs:documentation>Windygates, Star and Balgonie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR52">
        <xs:annotation>
          <xs:documentation>Markinch and Woodside East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR53">
        <xs:annotation>
          <xs:documentation>Auchmuty and Woodside West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR54">
        <xs:annotation>
          <xs:documentation>Pitteuchar and Finglassie North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR55">
        <xs:annotation>
          <xs:documentation>Thornton, Stenton and Finglassie South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR56">
        <xs:annotation>
          <xs:documentation>Caskieberran and Rimbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR57">
        <xs:annotation>
          <xs:documentation>Newcastle and Tanshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR58">
        <xs:annotation>
          <xs:documentation>South Parks and Macedonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR59">
        <xs:annotation>
          <xs:documentation>Leslie and Whinnyknowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR60">
        <xs:annotation>
          <xs:documentation>Balgeddie and Collydean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR61">
        <xs:annotation>
          <xs:documentation>Cadham, Pitcoudie and Balfarg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR62">
        <xs:annotation>
          <xs:documentation>Falkland, Freuchie and Strathmiglo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR63">
        <xs:annotation>
          <xs:documentation>Auchtermuchty and Ladybank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR64">
        <xs:annotation>
          <xs:documentation>Kettle, Springfield and Ceres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR65">
        <xs:annotation>
          <xs:documentation>Cupar South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR66">
        <xs:annotation>
          <xs:documentation>Cupar North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR67">
        <xs:annotation>
          <xs:documentation>Newburgh and Tay Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR68">
        <xs:annotation>
          <xs:documentation>Newport-on-Tay and Wormit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR69">
        <xs:annotation>
          <xs:documentation>Tayport and Motray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR70">
        <xs:annotation>
          <xs:documentation>Leuchars, Balmullo and Guardbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR71">
        <xs:annotation>
          <xs:documentation>Strathkinness and St Andrews West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR72">
        <xs:annotation>
          <xs:documentation>St Andrews Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR73">
        <xs:annotation>
          <xs:documentation>St Andrews South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR74">
        <xs:annotation>
          <xs:documentation>St Andrews South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR75">
        <xs:annotation>
          <xs:documentation>Crail, Cameron and Kemback</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR76">
        <xs:annotation>
          <xs:documentation>Anstruther and East Neuk Landward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR77">
        <xs:annotation>
          <xs:documentation>Elie, St Monans and Pittenweem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QR78">
        <xs:annotation>
          <xs:documentation>Largo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS01">
        <xs:annotation>
          <xs:documentation>Drumry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS02">
        <xs:annotation>
          <xs:documentation>Summerhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS03">
        <xs:annotation>
          <xs:documentation>Blairdardie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS04">
        <xs:annotation>
          <xs:documentation>Knightswood Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS05">
        <xs:annotation>
          <xs:documentation>Knightswood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS06">
        <xs:annotation>
          <xs:documentation>Yoker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS07">
        <xs:annotation>
          <xs:documentation>Anniesland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS08">
        <xs:annotation>
          <xs:documentation>Jordanhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS09">
        <xs:annotation>
          <xs:documentation>Kelvindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS10">
        <xs:annotation>
          <xs:documentation>Scotstoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS11">
        <xs:annotation>
          <xs:documentation>Victoria Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS12">
        <xs:annotation>
          <xs:documentation>Hayburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS13">
        <xs:annotation>
          <xs:documentation>Hyndland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS14">
        <xs:annotation>
          <xs:documentation>Hillhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS15">
        <xs:annotation>
          <xs:documentation>Partick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS16">
        <xs:annotation>
          <xs:documentation>Kelvingrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS17">
        <xs:annotation>
          <xs:documentation>Anderston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS18">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS19">
        <xs:annotation>
          <xs:documentation>North Kelvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS20">
        <xs:annotation>
          <xs:documentation>Wyndford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS21">
        <xs:annotation>
          <xs:documentation>Maryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS22">
        <xs:annotation>
          <xs:documentation>Summerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS23">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS24">
        <xs:annotation>
          <xs:documentation>Ashfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS25">
        <xs:annotation>
          <xs:documentation>Firhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS26">
        <xs:annotation>
          <xs:documentation>Keppochhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS27">
        <xs:annotation>
          <xs:documentation>Merchant City</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS28">
        <xs:annotation>
          <xs:documentation>Royston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS29">
        <xs:annotation>
          <xs:documentation>Cowlairs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS30">
        <xs:annotation>
          <xs:documentation>Springburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS31">
        <xs:annotation>
          <xs:documentation>Wallacewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS32">
        <xs:annotation>
          <xs:documentation>Milnbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS33">
        <xs:annotation>
          <xs:documentation>Dennistoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS34">
        <xs:annotation>
          <xs:documentation>Calton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS35">
        <xs:annotation>
          <xs:documentation>Bridgeton/Dalmarnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS36">
        <xs:annotation>
          <xs:documentation>Parkhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS37">
        <xs:annotation>
          <xs:documentation>Carntyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS38">
        <xs:annotation>
          <xs:documentation>Robroyston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS39">
        <xs:annotation>
          <xs:documentation>Gartcraig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS40">
        <xs:annotation>
          <xs:documentation>Queenslie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS41">
        <xs:annotation>
          <xs:documentation>Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS42">
        <xs:annotation>
          <xs:documentation>Barlanark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS43">
        <xs:annotation>
          <xs:documentation>Shettleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS44">
        <xs:annotation>
          <xs:documentation>Tollcross Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS45">
        <xs:annotation>
          <xs:documentation>Braidfauld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS46">
        <xs:annotation>
          <xs:documentation>Mount Vernon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS47">
        <xs:annotation>
          <xs:documentation>Baillieston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS48">
        <xs:annotation>
          <xs:documentation>Garrowhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS49">
        <xs:annotation>
          <xs:documentation>Garthamlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS50">
        <xs:annotation>
          <xs:documentation>Easterhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS51">
        <xs:annotation>
          <xs:documentation>Drumoyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS52">
        <xs:annotation>
          <xs:documentation>Govan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS53">
        <xs:annotation>
          <xs:documentation>Ibrox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS54">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS55">
        <xs:annotation>
          <xs:documentation>Mosspark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS56">
        <xs:annotation>
          <xs:documentation>North Cardonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS57">
        <xs:annotation>
          <xs:documentation>Penilee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS58">
        <xs:annotation>
          <xs:documentation>Cardonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS59">
        <xs:annotation>
          <xs:documentation>Pollok</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS60">
        <xs:annotation>
          <xs:documentation>Crookston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS61">
        <xs:annotation>
          <xs:documentation>Nitshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS62">
        <xs:annotation>
          <xs:documentation>Darnley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS63">
        <xs:annotation>
          <xs:documentation>Carnwadric</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS64">
        <xs:annotation>
          <xs:documentation>Maxwell Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS65">
        <xs:annotation>
          <xs:documentation>Pollokshields East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS66">
        <xs:annotation>
          <xs:documentation>Hutchesontown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS67">
        <xs:annotation>
          <xs:documentation>Govanhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS68">
        <xs:annotation>
          <xs:documentation>Strathbungo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS69">
        <xs:annotation>
          <xs:documentation>Battlefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS70">
        <xs:annotation>
          <xs:documentation>Langside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS71">
        <xs:annotation>
          <xs:documentation>Pollokshaws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS72">
        <xs:annotation>
          <xs:documentation>Newlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS73">
        <xs:annotation>
          <xs:documentation>Cathcart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS74">
        <xs:annotation>
          <xs:documentation>Mount Florida</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS75">
        <xs:annotation>
          <xs:documentation>Toryglen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS76">
        <xs:annotation>
          <xs:documentation>King's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS77">
        <xs:annotation>
          <xs:documentation>Castlemilk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS78">
        <xs:annotation>
          <xs:documentation>Carmunnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QS79">
        <xs:annotation>
          <xs:documentation>Glenwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT01">
        <xs:annotation>
          <xs:documentation>Caithness North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT02">
        <xs:annotation>
          <xs:documentation>Thurso West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT03">
        <xs:annotation>
          <xs:documentation>Thurso Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT04">
        <xs:annotation>
          <xs:documentation>Thurso East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT05">
        <xs:annotation>
          <xs:documentation>Caithness Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT06">
        <xs:annotation>
          <xs:documentation>Caithness North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT07">
        <xs:annotation>
          <xs:documentation>Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT08">
        <xs:annotation>
          <xs:documentation>Wick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT09">
        <xs:annotation>
          <xs:documentation>Pulteneytown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT10">
        <xs:annotation>
          <xs:documentation>Caithness South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT11">
        <xs:annotation>
          <xs:documentation>Sutherland North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT12">
        <xs:annotation>
          <xs:documentation>Tongue and Farr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT13">
        <xs:annotation>
          <xs:documentation>Sutherland Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT14">
        <xs:annotation>
          <xs:documentation>Golspie and Rogart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT15">
        <xs:annotation>
          <xs:documentation>Brora</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT16">
        <xs:annotation>
          <xs:documentation>Dornoch Firth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT17">
        <xs:annotation>
          <xs:documentation>Lochbroom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT18">
        <xs:annotation>
          <xs:documentation>Alness and Ardross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT19">
        <xs:annotation>
          <xs:documentation>Tain West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT20">
        <xs:annotation>
          <xs:documentation>Tain East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT21">
        <xs:annotation>
          <xs:documentation>Seaboard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT22">
        <xs:annotation>
          <xs:documentation>Invergordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT23">
        <xs:annotation>
          <xs:documentation>Rosskeen and Saltburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT24">
        <xs:annotation>
          <xs:documentation>Gairloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT25">
        <xs:annotation>
          <xs:documentation>Lochcarron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT26">
        <xs:annotation>
          <xs:documentation>Ferindonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT27">
        <xs:annotation>
          <xs:documentation>Strathpeffer and Strathconon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT28">
        <xs:annotation>
          <xs:documentation>Dingwall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT29">
        <xs:annotation>
          <xs:documentation>Dingwall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT30">
        <xs:annotation>
          <xs:documentation>Muir of Ord</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT31">
        <xs:annotation>
          <xs:documentation>Conon and Maryburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT32">
        <xs:annotation>
          <xs:documentation>Knockbain and Killearnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT33">
        <xs:annotation>
          <xs:documentation>Black Isle North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT34">
        <xs:annotation>
          <xs:documentation>Avoch Fortrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT35">
        <xs:annotation>
          <xs:documentation>Snizort and Trotternish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT36">
        <xs:annotation>
          <xs:documentation>Skye West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT37">
        <xs:annotation>
          <xs:documentation>Portree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT38">
        <xs:annotation>
          <xs:documentation>Skye Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT39">
        <xs:annotation>
          <xs:documentation>Kyle and Sleat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT40">
        <xs:annotation>
          <xs:documentation>Kinlochshiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT41">
        <xs:annotation>
          <xs:documentation>Beauly and Strathglass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT42">
        <xs:annotation>
          <xs:documentation>Kirkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT43">
        <xs:annotation>
          <xs:documentation>Scorguie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT44">
        <xs:annotation>
          <xs:documentation>Muirtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT45">
        <xs:annotation>
          <xs:documentation>Merkinch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT46">
        <xs:annotation>
          <xs:documentation>Inverness Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT47">
        <xs:annotation>
          <xs:documentation>Culloden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT48">
        <xs:annotation>
          <xs:documentation>Ardersier, Croy and Petty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT49">
        <xs:annotation>
          <xs:documentation>Loch Ness West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT50">
        <xs:annotation>
          <xs:documentation>Inverness West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT51">
        <xs:annotation>
          <xs:documentation>Canal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT52">
        <xs:annotation>
          <xs:documentation>Ballifeary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT53">
        <xs:annotation>
          <xs:documentation>Lochardil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT54">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT55">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT56">
        <xs:annotation>
          <xs:documentation>Crown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT57">
        <xs:annotation>
          <xs:documentation>Raigmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT58">
        <xs:annotation>
          <xs:documentation>Loch Ness East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT59">
        <xs:annotation>
          <xs:documentation>Culduthel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT60">
        <xs:annotation>
          <xs:documentation>Inshes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT61">
        <xs:annotation>
          <xs:documentation>Drumossie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT62">
        <xs:annotation>
          <xs:documentation>Westhill and Smithton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT63">
        <xs:annotation>
          <xs:documentation>Balloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT64">
        <xs:annotation>
          <xs:documentation>Nairn Alltan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT65">
        <xs:annotation>
          <xs:documentation>Nairn Ninian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT66">
        <xs:annotation>
          <xs:documentation>Nairn Cawdor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT67">
        <xs:annotation>
          <xs:documentation>Nairn Auldearn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT68">
        <xs:annotation>
          <xs:documentation>Badenoch West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT69">
        <xs:annotation>
          <xs:documentation>Badenoch East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT70">
        <xs:annotation>
          <xs:documentation>Strathspey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT71">
        <xs:annotation>
          <xs:documentation>Strathspey North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT72">
        <xs:annotation>
          <xs:documentation>Grantown on Spey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT73">
        <xs:annotation>
          <xs:documentation>Mallaig and Small Isles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT74">
        <xs:annotation>
          <xs:documentation>Kilmallie and Invergarry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT75">
        <xs:annotation>
          <xs:documentation>Claggan and Glen Spean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT76">
        <xs:annotation>
          <xs:documentation>Ardnamurchan and Morvern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT77">
        <xs:annotation>
          <xs:documentation>Caol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT78">
        <xs:annotation>
          <xs:documentation>Fort William North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT79">
        <xs:annotation>
          <xs:documentation>Fort William South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QT80">
        <xs:annotation>
          <xs:documentation>Glencoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU01">
        <xs:annotation>
          <xs:documentation>Ward 1</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU02">
        <xs:annotation>
          <xs:documentation>Ward 2</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU03">
        <xs:annotation>
          <xs:documentation>Ward 3</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU04">
        <xs:annotation>
          <xs:documentation>Ward 4</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU05">
        <xs:annotation>
          <xs:documentation>Ward 5</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU06">
        <xs:annotation>
          <xs:documentation>Ward 6</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU07">
        <xs:annotation>
          <xs:documentation>Ward 7</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU08">
        <xs:annotation>
          <xs:documentation>Ward 8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU09">
        <xs:annotation>
          <xs:documentation>Ward 9</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU10">
        <xs:annotation>
          <xs:documentation>Ward 10</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU11">
        <xs:annotation>
          <xs:documentation>Ward 11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU12">
        <xs:annotation>
          <xs:documentation>Ward 12</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU13">
        <xs:annotation>
          <xs:documentation>Ward 13</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU14">
        <xs:annotation>
          <xs:documentation>Ward 14</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU15">
        <xs:annotation>
          <xs:documentation>Ward 15</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU16">
        <xs:annotation>
          <xs:documentation>Ward 16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU17">
        <xs:annotation>
          <xs:documentation>Ward 17</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU18">
        <xs:annotation>
          <xs:documentation>Ward 18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU19">
        <xs:annotation>
          <xs:documentation>Ward 19</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QU20">
        <xs:annotation>
          <xs:documentation>Ward 20</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW01">
        <xs:annotation>
          <xs:documentation>Penicuik South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW02">
        <xs:annotation>
          <xs:documentation>Penicuik North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW03">
        <xs:annotation>
          <xs:documentation>Penicuik/Roslin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW04">
        <xs:annotation>
          <xs:documentation>Penicuik South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW05">
        <xs:annotation>
          <xs:documentation>Bilston/Roslin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW06">
        <xs:annotation>
          <xs:documentation>Loanhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW07">
        <xs:annotation>
          <xs:documentation>Poltonhall/Rosewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW08">
        <xs:annotation>
          <xs:documentation>Bonnyrigg North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW09">
        <xs:annotation>
          <xs:documentation>Bonnyrigg South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW10">
        <xs:annotation>
          <xs:documentation>Newtongrange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW11">
        <xs:annotation>
          <xs:documentation>Arniston/Cockpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW12">
        <xs:annotation>
          <xs:documentation>Gorebridge South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW13">
        <xs:annotation>
          <xs:documentation>Dalkeith/Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW14">
        <xs:annotation>
          <xs:documentation>Dalkeith/Eskbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW15">
        <xs:annotation>
          <xs:documentation>Dalkeith/Woodburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW16">
        <xs:annotation>
          <xs:documentation>Newbattle/Pathhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW17">
        <xs:annotation>
          <xs:documentation>Easthouses/Mayfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QW18">
        <xs:annotation>
          <xs:documentation>Mayfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX01">
        <xs:annotation>
          <xs:documentation>Elgin - Bishopmill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX02">
        <xs:annotation>
          <xs:documentation>Elgin - Bishopmill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX03">
        <xs:annotation>
          <xs:documentation>Elgin - Cathedral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX04">
        <xs:annotation>
          <xs:documentation>Elgin - Central West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX05">
        <xs:annotation>
          <xs:documentation>New Elgin West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX06">
        <xs:annotation>
          <xs:documentation>New Elgin East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX07">
        <xs:annotation>
          <xs:documentation>Forres East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX08">
        <xs:annotation>
          <xs:documentation>Forres Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX09">
        <xs:annotation>
          <xs:documentation>Finderne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX10">
        <xs:annotation>
          <xs:documentation>Forres West and Altyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX11">
        <xs:annotation>
          <xs:documentation>Burghsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX12">
        <xs:annotation>
          <xs:documentation>Heldon and Laich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX13">
        <xs:annotation>
          <xs:documentation>Lossiemouth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX14">
        <xs:annotation>
          <xs:documentation>Lossiemouth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX15">
        <xs:annotation>
          <xs:documentation>Lhanbryde and Birnie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX16">
        <xs:annotation>
          <xs:documentation>Innes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX17">
        <xs:annotation>
          <xs:documentation>Lennox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX18">
        <xs:annotation>
          <xs:documentation>Buckie West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX19">
        <xs:annotation>
          <xs:documentation>Buckie Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX20">
        <xs:annotation>
          <xs:documentation>Buckie East and Findochty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX21">
        <xs:annotation>
          <xs:documentation>Rathford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX22">
        <xs:annotation>
          <xs:documentation>Fife - Keith and Strathisla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX23">
        <xs:annotation>
          <xs:documentation>Keith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX24">
        <xs:annotation>
          <xs:documentation>Rural Keith and Rothes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX25">
        <xs:annotation>
          <xs:documentation>Speyside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QX26">
        <xs:annotation>
          <xs:documentation>Glenlivet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY01">
        <xs:annotation>
          <xs:documentation>Irvine West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY02">
        <xs:annotation>
          <xs:documentation>Irvine Townhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY03">
        <xs:annotation>
          <xs:documentation>Irvine Vineburgh and Woodlands South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY04">
        <xs:annotation>
          <xs:documentation>Irvine North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY05">
        <xs:annotation>
          <xs:documentation>Eglinton and Lawthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY06">
        <xs:annotation>
          <xs:documentation>Dreghorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY07">
        <xs:annotation>
          <xs:documentation>Irvine Landward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY08">
        <xs:annotation>
          <xs:documentation>Bourtreehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY09">
        <xs:annotation>
          <xs:documentation>Woodlands North and Girdle Toll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY10">
        <xs:annotation>
          <xs:documentation>Kilwinning East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY11">
        <xs:annotation>
          <xs:documentation>Kilwinning South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY12">
        <xs:annotation>
          <xs:documentation>Kilwinning West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY13">
        <xs:annotation>
          <xs:documentation>Stevenston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY14">
        <xs:annotation>
          <xs:documentation>Stevenston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY15">
        <xs:annotation>
          <xs:documentation>Beith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY16">
        <xs:annotation>
          <xs:documentation>Dalry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY17">
        <xs:annotation>
          <xs:documentation>Garnock East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY18">
        <xs:annotation>
          <xs:documentation>Kilbirnie South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY19">
        <xs:annotation>
          <xs:documentation>Kilbirnie North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY20">
        <xs:annotation>
          <xs:documentation>Saltcoats East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY21">
        <xs:annotation>
          <xs:documentation>South Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY22">
        <xs:annotation>
          <xs:documentation>Saltcoats North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY23">
        <xs:annotation>
          <xs:documentation>Ardrossan South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY24">
        <xs:annotation>
          <xs:documentation>Ardrossan North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY25">
        <xs:annotation>
          <xs:documentation>West Kilbride</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY26">
        <xs:annotation>
          <xs:documentation>Largs South and Fairlie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY27">
        <xs:annotation>
          <xs:documentation>Largs West and Cumbrae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY28">
        <xs:annotation>
          <xs:documentation>Largs East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY29">
        <xs:annotation>
          <xs:documentation>Largs North and Skelmorlie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QY30">
        <xs:annotation>
          <xs:documentation>Arran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ01">
        <xs:annotation>
          <xs:documentation>Ladywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ02">
        <xs:annotation>
          <xs:documentation>Calder Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ03">
        <xs:annotation>
          <xs:documentation>Forgewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ04">
        <xs:annotation>
          <xs:documentation>North Motherwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ05">
        <xs:annotation>
          <xs:documentation>New Stevenston and Carfin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ06">
        <xs:annotation>
          <xs:documentation>Craigneuk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ07">
        <xs:annotation>
          <xs:documentation>Belhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ08">
        <xs:annotation>
          <xs:documentation>Stewarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ09">
        <xs:annotation>
          <xs:documentation>Cambusnethan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ10">
        <xs:annotation>
          <xs:documentation>Coltness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ11">
        <xs:annotation>
          <xs:documentation>Watsonville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ12">
        <xs:annotation>
          <xs:documentation>Knowetop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ13">
        <xs:annotation>
          <xs:documentation>Muirhouse and Netherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ14">
        <xs:annotation>
          <xs:documentation>Pather and Gowkthrapple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ15">
        <xs:annotation>
          <xs:documentation>Garrion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ16">
        <xs:annotation>
          <xs:documentation>Newmains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ17">
        <xs:annotation>
          <xs:documentation>Stane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ18">
        <xs:annotation>
          <xs:documentation>Dykehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ19">
        <xs:annotation>
          <xs:documentation>Cleland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ20">
        <xs:annotation>
          <xs:documentation>Benhar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ21">
        <xs:annotation>
          <xs:documentation>Tannochside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ22">
        <xs:annotation>
          <xs:documentation>Fallside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ23">
        <xs:annotation>
          <xs:documentation>Viewpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ24">
        <xs:annotation>
          <xs:documentation>Bellshill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ25">
        <xs:annotation>
          <xs:documentation>Orbiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ26">
        <xs:annotation>
          <xs:documentation>Mossend West and Thorndean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ27">
        <xs:annotation>
          <xs:documentation>Holytown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ28">
        <xs:annotation>
          <xs:documentation>Mossend East and New Stevenston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ29">
        <xs:annotation>
          <xs:documentation>Newarthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ30">
        <xs:annotation>
          <xs:documentation>Hattonrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ31">
        <xs:annotation>
          <xs:documentation>Townhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ32">
        <xs:annotation>
          <xs:documentation>Blairpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ33">
        <xs:annotation>
          <xs:documentation>North Central and Glenboig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ34">
        <xs:annotation>
          <xs:documentation>Coatbridge Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ35">
        <xs:annotation>
          <xs:documentation>Sikeside and Carnbroe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ36">
        <xs:annotation>
          <xs:documentation>Bargeddie and Langloan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ37">
        <xs:annotation>
          <xs:documentation>Kirkwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ38">
        <xs:annotation>
          <xs:documentation>Kirkshaws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ39">
        <xs:annotation>
          <xs:documentation>Shawhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ40">
        <xs:annotation>
          <xs:documentation>Old Monkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ41">
        <xs:annotation>
          <xs:documentation>Whinhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ42">
        <xs:annotation>
          <xs:documentation>Academy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ43">
        <xs:annotation>
          <xs:documentation>Airdrie Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ44">
        <xs:annotation>
          <xs:documentation>Clarkston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ45">
        <xs:annotation>
          <xs:documentation>New Monkland West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ46">
        <xs:annotation>
          <xs:documentation>Plains and Caldercruix</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ47">
        <xs:annotation>
          <xs:documentation>North Cairnhill and Coatdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ48">
        <xs:annotation>
          <xs:documentation>South East Cairnhill and Gartlea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ49">
        <xs:annotation>
          <xs:documentation>Craigneuk and Petersburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ50">
        <xs:annotation>
          <xs:documentation>Calderbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ51">
        <xs:annotation>
          <xs:documentation>Chapelhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ52">
        <xs:annotation>
          <xs:documentation>Salsburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ53">
        <xs:annotation>
          <xs:documentation>Kildrum and Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ54">
        <xs:annotation>
          <xs:documentation>Seafar and The Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ55">
        <xs:annotation>
          <xs:documentation>Balloch East and Ravenswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ56">
        <xs:annotation>
          <xs:documentation>Balloch West, Blackwood East and Craigmarloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ57">
        <xs:annotation>
          <xs:documentation>Westerwood, Carrickstone and Dullatur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ58">
        <xs:annotation>
          <xs:documentation>Abronhill South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ59">
        <xs:annotation>
          <xs:documentation>Abronhill Central and North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ60">
        <xs:annotation>
          <xs:documentation>Carbrain East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ61">
        <xs:annotation>
          <xs:documentation>Carbrain West and Greenfaulds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ62">
        <xs:annotation>
          <xs:documentation>Condorrat Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ63">
        <xs:annotation>
          <xs:documentation>Condorrat North and Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ64">
        <xs:annotation>
          <xs:documentation>Croy, Kilsyth South and Smithstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ65">
        <xs:annotation>
          <xs:documentation>Queenzieburn and Kilsyth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ66">
        <xs:annotation>
          <xs:documentation>Banton and Kilsyth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ67">
        <xs:annotation>
          <xs:documentation>Moodiesburn East and Blackwood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ68">
        <xs:annotation>
          <xs:documentation>Moodiesburn West and Gartcosh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ69">
        <xs:annotation>
          <xs:documentation>Chryston and Auchinloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00QZ70">
        <xs:annotation>
          <xs:documentation>Stepps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA01">
        <xs:annotation>
          <xs:documentation>Pickaquoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA02">
        <xs:annotation>
          <xs:documentation>Berstane and Work</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA03">
        <xs:annotation>
          <xs:documentation>Warrenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA04">
        <xs:annotation>
          <xs:documentation>Lynnfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA05">
        <xs:annotation>
          <xs:documentation>Brandyquoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA06">
        <xs:annotation>
          <xs:documentation>Papdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA07">
        <xs:annotation>
          <xs:documentation>Scapa and Kirkwall South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA08">
        <xs:annotation>
          <xs:documentation>Shapinsay and Kirkwall Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA09">
        <xs:annotation>
          <xs:documentation>Stromness North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA10">
        <xs:annotation>
          <xs:documentation>Stromness South, Graemsay and North Hoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA11">
        <xs:annotation>
          <xs:documentation>Orphir, Walls and Flotta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA12">
        <xs:annotation>
          <xs:documentation>Firth and Sunnybrae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA13">
        <xs:annotation>
          <xs:documentation>Harray and Stenness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA14">
        <xs:annotation>
          <xs:documentation>Evie, Rendall, Rousay, Egilsay and Wyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA15">
        <xs:annotation>
          <xs:documentation>Birsay and Dounby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA16">
        <xs:annotation>
          <xs:documentation>Sandwick and Stromness Landward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA17">
        <xs:annotation>
          <xs:documentation>St Andrew's Deerness and Wideford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA18">
        <xs:annotation>
          <xs:documentation>Holm and Burray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA19">
        <xs:annotation>
          <xs:documentation>South Ronaldsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA20">
        <xs:annotation>
          <xs:documentation>Sanday, North Ronaldsay and Stronsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RA21">
        <xs:annotation>
          <xs:documentation>Papa Westray, Westray and Eday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB01">
        <xs:annotation>
          <xs:documentation>Rannoch and Atholl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB02">
        <xs:annotation>
          <xs:documentation>Pitlochry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB03">
        <xs:annotation>
          <xs:documentation>Rattray and Glenshee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB04">
        <xs:annotation>
          <xs:documentation>Alyth and Old Rattray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB05">
        <xs:annotation>
          <xs:documentation>Coupar Angus and Meigle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB06">
        <xs:annotation>
          <xs:documentation>Rosemount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB07">
        <xs:annotation>
          <xs:documentation>Blairgowrie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB08">
        <xs:annotation>
          <xs:documentation>Kinclaven and Clunie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB09">
        <xs:annotation>
          <xs:documentation>Strathtay and Dunkeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB10">
        <xs:annotation>
          <xs:documentation>Breadalbane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB11">
        <xs:annotation>
          <xs:documentation>Comrie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB12">
        <xs:annotation>
          <xs:documentation>Crieff North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB13">
        <xs:annotation>
          <xs:documentation>Crieff South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB14">
        <xs:annotation>
          <xs:documentation>Strathord and Logiealmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB15">
        <xs:annotation>
          <xs:documentation>Strathalmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB16">
        <xs:annotation>
          <xs:documentation>Scone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB17">
        <xs:annotation>
          <xs:documentation>Dunsinnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB18">
        <xs:annotation>
          <xs:documentation>East Carse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB19">
        <xs:annotation>
          <xs:documentation>Central Carse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB20">
        <xs:annotation>
          <xs:documentation>Barnhill and West Carse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB21">
        <xs:annotation>
          <xs:documentation>Pictstonhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB22">
        <xs:annotation>
          <xs:documentation>North Inch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB23">
        <xs:annotation>
          <xs:documentation>Muirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB24">
        <xs:annotation>
          <xs:documentation>North Muirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB25">
        <xs:annotation>
          <xs:documentation>Hillyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB26">
        <xs:annotation>
          <xs:documentation>Ruthven Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB27">
        <xs:annotation>
          <xs:documentation>North Letham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB28">
        <xs:annotation>
          <xs:documentation>South Letham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB29">
        <xs:annotation>
          <xs:documentation>Wellshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB30">
        <xs:annotation>
          <xs:documentation>Oakbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB31">
        <xs:annotation>
          <xs:documentation>Craigie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB32">
        <xs:annotation>
          <xs:documentation>South Inch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB33">
        <xs:annotation>
          <xs:documentation>Moncreiffe and Friarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB34">
        <xs:annotation>
          <xs:documentation>Earn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB35">
        <xs:annotation>
          <xs:documentation>Auchterarder Mid Earn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB36">
        <xs:annotation>
          <xs:documentation>Strathallan and Glendevon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB37">
        <xs:annotation>
          <xs:documentation>Auchterarder Craig Rossie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB38">
        <xs:annotation>
          <xs:documentation>Abernethy and Glenfarg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB39">
        <xs:annotation>
          <xs:documentation>Milnathort and North Kinross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB40">
        <xs:annotation>
          <xs:documentation>Kinross Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RB41">
        <xs:annotation>
          <xs:documentation>Kinross-shire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC01">
        <xs:annotation>
          <xs:documentation>Shortroods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC02">
        <xs:annotation>
          <xs:documentation>St. James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC03">
        <xs:annotation>
          <xs:documentation>Ferguslie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC04">
        <xs:annotation>
          <xs:documentation>Linwood East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC05">
        <xs:annotation>
          <xs:documentation>Linwood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC06">
        <xs:annotation>
          <xs:documentation>Brediland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC07">
        <xs:annotation>
          <xs:documentation>Foxbar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC08">
        <xs:annotation>
          <xs:documentation>Stanely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC09">
        <xs:annotation>
          <xs:documentation>Glenburn South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC10">
        <xs:annotation>
          <xs:documentation>Glenburn North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC11">
        <xs:annotation>
          <xs:documentation>Paisley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC12">
        <xs:annotation>
          <xs:documentation>Lounsdale and Millarston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC13">
        <xs:annotation>
          <xs:documentation>Castlehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC14">
        <xs:annotation>
          <xs:documentation>Saucel and Hunterhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC15">
        <xs:annotation>
          <xs:documentation>Lochfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC16">
        <xs:annotation>
          <xs:documentation>Seedhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC17">
        <xs:annotation>
          <xs:documentation>Blackhall and Hawkhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC18">
        <xs:annotation>
          <xs:documentation>Gallowhill and Whitehaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC19">
        <xs:annotation>
          <xs:documentation>Sandyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC20">
        <xs:annotation>
          <xs:documentation>Ralston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC21">
        <xs:annotation>
          <xs:documentation>Johnstone Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC22">
        <xs:annotation>
          <xs:documentation>Johnstone Cochranemill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC23">
        <xs:annotation>
          <xs:documentation>Johnstone Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC24">
        <xs:annotation>
          <xs:documentation>Johnstone West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC25">
        <xs:annotation>
          <xs:documentation>Elderslie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC26">
        <xs:annotation>
          <xs:documentation>Blythswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC27">
        <xs:annotation>
          <xs:documentation>Deanside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC28">
        <xs:annotation>
          <xs:documentation>Townhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC29">
        <xs:annotation>
          <xs:documentation>Arkleston and Newmains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC30">
        <xs:annotation>
          <xs:documentation>Moorpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC31">
        <xs:annotation>
          <xs:documentation>Lochwinnoch and Howwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC32">
        <xs:annotation>
          <xs:documentation>Bridge of Weir South and Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC33">
        <xs:annotation>
          <xs:documentation>Kilbarchan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC34">
        <xs:annotation>
          <xs:documentation>Bridge of Weir North and Craigends</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC35">
        <xs:annotation>
          <xs:documentation>Houston and Langbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC36">
        <xs:annotation>
          <xs:documentation>Erskine S.E. and Inchinnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC37">
        <xs:annotation>
          <xs:documentation>Parkmains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC38">
        <xs:annotation>
          <xs:documentation>Erskine Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC39">
        <xs:annotation>
          <xs:documentation>Erskine West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RC40">
        <xs:annotation>
          <xs:documentation>Bishopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD01">
        <xs:annotation>
          <xs:documentation>Sound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD02">
        <xs:annotation>
          <xs:documentation>Clickimin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD03">
        <xs:annotation>
          <xs:documentation>North Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD04">
        <xs:annotation>
          <xs:documentation>Breiwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD05">
        <xs:annotation>
          <xs:documentation>South Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD06">
        <xs:annotation>
          <xs:documentation>Harbour and Bressay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD07">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD08">
        <xs:annotation>
          <xs:documentation>Upper Sound, Gulberwick and Quarff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD09">
        <xs:annotation>
          <xs:documentation>Unst and Island of Fetlar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD10">
        <xs:annotation>
          <xs:documentation>Yell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD11">
        <xs:annotation>
          <xs:documentation>Northmavine, Muckle Roe and Busta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD12">
        <xs:annotation>
          <xs:documentation>Delting West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD13">
        <xs:annotation>
          <xs:documentation>Delting East and Lunnasting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD14">
        <xs:annotation>
          <xs:documentation>Nesting, Whiteness, Girlsta and Gott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD15">
        <xs:annotation>
          <xs:documentation>Scalloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD16">
        <xs:annotation>
          <xs:documentation>Whalsay/Skerries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD17">
        <xs:annotation>
          <xs:documentation>Sandsting, Aithsting and Weisdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD18">
        <xs:annotation>
          <xs:documentation>Walls, Sandness and Clousta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD19">
        <xs:annotation>
          <xs:documentation>Burra/Trondra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD20">
        <xs:annotation>
          <xs:documentation>Cunningsburgh and Sandwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD21">
        <xs:annotation>
          <xs:documentation>Sandwick, Levenwick and Bigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RD22">
        <xs:annotation>
          <xs:documentation>Dunrossness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE01">
        <xs:annotation>
          <xs:documentation>Troon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE02">
        <xs:annotation>
          <xs:documentation>Troon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE03">
        <xs:annotation>
          <xs:documentation>Troon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE04">
        <xs:annotation>
          <xs:documentation>Troon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE05">
        <xs:annotation>
          <xs:documentation>Prestwick St Ninian's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE06">
        <xs:annotation>
          <xs:documentation>Prestwick St Cuthbert's and Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE07">
        <xs:annotation>
          <xs:documentation>Prestwick St Nicholas'</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE08">
        <xs:annotation>
          <xs:documentation>Prestwick Kingcase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE09">
        <xs:annotation>
          <xs:documentation>Prestwick Toll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE10">
        <xs:annotation>
          <xs:documentation>Ayr Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE11">
        <xs:annotation>
          <xs:documentation>Ayr Lochside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE12">
        <xs:annotation>
          <xs:documentation>Ayr Whitletts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE13">
        <xs:annotation>
          <xs:documentation>Ayr Craigie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE14">
        <xs:annotation>
          <xs:documentation>Ayr Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE15">
        <xs:annotation>
          <xs:documentation>Ayr Fort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE16">
        <xs:annotation>
          <xs:documentation>Ayr Old Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE17">
        <xs:annotation>
          <xs:documentation>Ayr Forehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE18">
        <xs:annotation>
          <xs:documentation>Ayr Masonhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE19">
        <xs:annotation>
          <xs:documentation>Ayr Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE20">
        <xs:annotation>
          <xs:documentation>Ayr Doonfoot and Seafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE21">
        <xs:annotation>
          <xs:documentation>Ayr Rozelle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE22">
        <xs:annotation>
          <xs:documentation>Dundonald and Loans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE23">
        <xs:annotation>
          <xs:documentation>Tarbolton Symington Craigie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE24">
        <xs:annotation>
          <xs:documentation>Annbank Mossblown St Quivox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE25">
        <xs:annotation>
          <xs:documentation>Coylton and Minishant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE26">
        <xs:annotation>
          <xs:documentation>North Carrick and Maybole West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE27">
        <xs:annotation>
          <xs:documentation>North Carrick and Maybole East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE28">
        <xs:annotation>
          <xs:documentation>South Carrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE29">
        <xs:annotation>
          <xs:documentation>Girvan Ailsa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RE30">
        <xs:annotation>
          <xs:documentation>Girvan Glendoune</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF01">
        <xs:annotation>
          <xs:documentation>Lanark North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF02">
        <xs:annotation>
          <xs:documentation>Lanark South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF03">
        <xs:annotation>
          <xs:documentation>Lesmahagow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF04">
        <xs:annotation>
          <xs:documentation>Blackwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF05">
        <xs:annotation>
          <xs:documentation>Clyde Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF06">
        <xs:annotation>
          <xs:documentation>Biggar/Symington and Black Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF07">
        <xs:annotation>
          <xs:documentation>Duneaton/Carmichael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF08">
        <xs:annotation>
          <xs:documentation>Carstairs/Carnwath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF09">
        <xs:annotation>
          <xs:documentation>Douglas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF10">
        <xs:annotation>
          <xs:documentation>Carluke/Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF11">
        <xs:annotation>
          <xs:documentation>Carluke/Crawforddyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF12">
        <xs:annotation>
          <xs:documentation>Forth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF13">
        <xs:annotation>
          <xs:documentation>Law/Carluke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF14">
        <xs:annotation>
          <xs:documentation>Long Calderwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF15">
        <xs:annotation>
          <xs:documentation>Calderglen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF16">
        <xs:annotation>
          <xs:documentation>Blacklaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF17">
        <xs:annotation>
          <xs:documentation>Morrishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF18">
        <xs:annotation>
          <xs:documentation>Maxwellton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF19">
        <xs:annotation>
          <xs:documentation>East Mains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF20">
        <xs:annotation>
          <xs:documentation>West Mains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF21">
        <xs:annotation>
          <xs:documentation>Duncanrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF22">
        <xs:annotation>
          <xs:documentation>Westwoodhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF23">
        <xs:annotation>
          <xs:documentation>Headhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF24">
        <xs:annotation>
          <xs:documentation>Heatheryknowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF25">
        <xs:annotation>
          <xs:documentation>Greenhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF26">
        <xs:annotation>
          <xs:documentation>Whitehills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF27">
        <xs:annotation>
          <xs:documentation>Hairmyres/Crosshouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF28">
        <xs:annotation>
          <xs:documentation>Mossneuk/Kittoch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF29">
        <xs:annotation>
          <xs:documentation>Stewartfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF30">
        <xs:annotation>
          <xs:documentation>Lindsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF31">
        <xs:annotation>
          <xs:documentation>Avondale North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF32">
        <xs:annotation>
          <xs:documentation>Avondale South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF33">
        <xs:annotation>
          <xs:documentation>Blantyre West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF34">
        <xs:annotation>
          <xs:documentation>Coatshill/Low Blantyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF35">
        <xs:annotation>
          <xs:documentation>Burnbank/Blantyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF36">
        <xs:annotation>
          <xs:documentation>High Blantyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF37">
        <xs:annotation>
          <xs:documentation>Hamilton Centre North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF38">
        <xs:annotation>
          <xs:documentation>Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF39">
        <xs:annotation>
          <xs:documentation>Bothwell South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF40">
        <xs:annotation>
          <xs:documentation>Uddingston South/Bothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF41">
        <xs:annotation>
          <xs:documentation>Uddingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF42">
        <xs:annotation>
          <xs:documentation>Hillhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF43">
        <xs:annotation>
          <xs:documentation>Udston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF44">
        <xs:annotation>
          <xs:documentation>Wellhall/Earnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF45">
        <xs:annotation>
          <xs:documentation>Earnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF46">
        <xs:annotation>
          <xs:documentation>Woodhead/Meikle Earnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF47">
        <xs:annotation>
          <xs:documentation>Hamilton Centre/Ferniegair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF48">
        <xs:annotation>
          <xs:documentation>Low Waters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF49">
        <xs:annotation>
          <xs:documentation>Silvertonhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF50">
        <xs:annotation>
          <xs:documentation>Cadzow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF51">
        <xs:annotation>
          <xs:documentation>Dalserf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF52">
        <xs:annotation>
          <xs:documentation>Larkhall East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF53">
        <xs:annotation>
          <xs:documentation>Larkhall West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF54">
        <xs:annotation>
          <xs:documentation>Larkhall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF55">
        <xs:annotation>
          <xs:documentation>Stonehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF56">
        <xs:annotation>
          <xs:documentation>Rutherglen West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF57">
        <xs:annotation>
          <xs:documentation>Stonelaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF58">
        <xs:annotation>
          <xs:documentation>Bankhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF59">
        <xs:annotation>
          <xs:documentation>Spittal/Blairbeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF60">
        <xs:annotation>
          <xs:documentation>Burgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF61">
        <xs:annotation>
          <xs:documentation>Cairns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF62">
        <xs:annotation>
          <xs:documentation>Hallside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF63">
        <xs:annotation>
          <xs:documentation>Cambuslang Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF64">
        <xs:annotation>
          <xs:documentation>Cathkin/Springhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF65">
        <xs:annotation>
          <xs:documentation>Fernhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF66">
        <xs:annotation>
          <xs:documentation>Kirkhill/Whitlawburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RF67">
        <xs:annotation>
          <xs:documentation>Eastfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG01">
        <xs:annotation>
          <xs:documentation>Bridge of Allan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG02">
        <xs:annotation>
          <xs:documentation>Logie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG03">
        <xs:annotation>
          <xs:documentation>Wallace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG04">
        <xs:annotation>
          <xs:documentation>Raploch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG05">
        <xs:annotation>
          <xs:documentation>Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG06">
        <xs:annotation>
          <xs:documentation>Argyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG07">
        <xs:annotation>
          <xs:documentation>King's Park and Cambusbarron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG08">
        <xs:annotation>
          <xs:documentation>Torbrex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG09">
        <xs:annotation>
          <xs:documentation>Broomridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG10">
        <xs:annotation>
          <xs:documentation>Borestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG11">
        <xs:annotation>
          <xs:documentation>Bannockburn West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG12">
        <xs:annotation>
          <xs:documentation>Bannockburn East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG13">
        <xs:annotation>
          <xs:documentation>Polmaise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG14">
        <xs:annotation>
          <xs:documentation>Sauchenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG15">
        <xs:annotation>
          <xs:documentation>Dunblane West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG16">
        <xs:annotation>
          <xs:documentation>Dunblane East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG17">
        <xs:annotation>
          <xs:documentation>Highland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG18">
        <xs:annotation>
          <xs:documentation>Teith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG19">
        <xs:annotation>
          <xs:documentation>Trossachs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG20">
        <xs:annotation>
          <xs:documentation>Campsies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG21">
        <xs:annotation>
          <xs:documentation>Strathendrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RG22">
        <xs:annotation>
          <xs:documentation>Blane Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH01">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH02">
        <xs:annotation>
          <xs:documentation>Kingsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH03">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH04">
        <xs:annotation>
          <xs:documentation>Boghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH05">
        <xs:annotation>
          <xs:documentation>Oatridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH06">
        <xs:annotation>
          <xs:documentation>Armadale West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH07">
        <xs:annotation>
          <xs:documentation>Armadale Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH08">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH09">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH10">
        <xs:annotation>
          <xs:documentation>Durhamtoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH11">
        <xs:annotation>
          <xs:documentation>Deans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH12">
        <xs:annotation>
          <xs:documentation>Knightsridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH13">
        <xs:annotation>
          <xs:documentation>Ladywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH14">
        <xs:annotation>
          <xs:documentation>Kirkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH15">
        <xs:annotation>
          <xs:documentation>Carmondean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH16">
        <xs:annotation>
          <xs:documentation>Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH17">
        <xs:annotation>
          <xs:documentation>Craigshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH18">
        <xs:annotation>
          <xs:documentation>Dedridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH19">
        <xs:annotation>
          <xs:documentation>Murieston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH20">
        <xs:annotation>
          <xs:documentation>Polkemmet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH21">
        <xs:annotation>
          <xs:documentation>Croftmalloch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH22">
        <xs:annotation>
          <xs:documentation>Almond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH23">
        <xs:annotation>
          <xs:documentation>Blackburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH24">
        <xs:annotation>
          <xs:documentation>Houstoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH25">
        <xs:annotation>
          <xs:documentation>Calderwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH26">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH27">
        <xs:annotation>
          <xs:documentation>Strathbrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH28">
        <xs:annotation>
          <xs:documentation>Fauldhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH29">
        <xs:annotation>
          <xs:documentation>Breich Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH30">
        <xs:annotation>
          <xs:documentation>Limefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH31">
        <xs:annotation>
          <xs:documentation>East Calder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RH32">
        <xs:annotation>
          <xs:documentation>Linhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ01">
        <xs:annotation>
          <xs:documentation>Port of Ness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ02">
        <xs:annotation>
          <xs:documentation>Dell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ03">
        <xs:annotation>
          <xs:documentation>Barvas and Arnol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ04">
        <xs:annotation>
          <xs:documentation>Shawbost</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ05">
        <xs:annotation>
          <xs:documentation>Carloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ06">
        <xs:annotation>
          <xs:documentation>Uig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ07">
        <xs:annotation>
          <xs:documentation>Gress</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ08">
        <xs:annotation>
          <xs:documentation>Coll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ09">
        <xs:annotation>
          <xs:documentation>Blackwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ10">
        <xs:annotation>
          <xs:documentation>Laxdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ11">
        <xs:annotation>
          <xs:documentation>Coulregrein</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ12">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ13">
        <xs:annotation>
          <xs:documentation>Manor Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ14">
        <xs:annotation>
          <xs:documentation>Goathill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ15">
        <xs:annotation>
          <xs:documentation>Bayhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ16">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ17">
        <xs:annotation>
          <xs:documentation>Plasterfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ18">
        <xs:annotation>
          <xs:documentation>Braighe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ19">
        <xs:annotation>
          <xs:documentation>Knock and Bayble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ20">
        <xs:annotation>
          <xs:documentation>Tiumpan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ21">
        <xs:annotation>
          <xs:documentation>North Lochs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ22">
        <xs:annotation>
          <xs:documentation>Lochs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ23">
        <xs:annotation>
          <xs:documentation>Harris West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ24">
        <xs:annotation>
          <xs:documentation>Harris East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ25">
        <xs:annotation>
          <xs:documentation>Paible</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ26">
        <xs:annotation>
          <xs:documentation>Lochmaddy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ27">
        <xs:annotation>
          <xs:documentation>North Benbecula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ28">
        <xs:annotation>
          <xs:documentation>Eochar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ29">
        <xs:annotation>
          <xs:documentation>Loch Eynort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ30">
        <xs:annotation>
          <xs:documentation>Daliburgh and Eriskay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00RJ31">
        <xs:annotation>
          <xs:documentation>Barra and Vatersay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGH">
        <xs:annotation>
          <xs:documentation>Ampthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGJ">
        <xs:annotation>
          <xs:documentation>Arlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGK">
        <xs:annotation>
          <xs:documentation>Aspley Guise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGL">
        <xs:annotation>
          <xs:documentation>Biggleswade Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGM">
        <xs:annotation>
          <xs:documentation>Biggleswade Ivel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGN">
        <xs:annotation>
          <xs:documentation>Biggleswade Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGP">
        <xs:annotation>
          <xs:documentation>Clifton and Meppershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGQ">
        <xs:annotation>
          <xs:documentation>Cranfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGR">
        <xs:annotation>
          <xs:documentation>Flitton, Greenfield and Pulloxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGS">
        <xs:annotation>
          <xs:documentation>Flitwick East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGT">
        <xs:annotation>
          <xs:documentation>Flitwick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGU">
        <xs:annotation>
          <xs:documentation>Harlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGW">
        <xs:annotation>
          <xs:documentation>Houghton, Haynes, Southill and Old Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGX">
        <xs:annotation>
          <xs:documentation>Langford and Henlow Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGY">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCGZ">
        <xs:annotation>
          <xs:documentation>Maulden and Clophill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHA">
        <xs:annotation>
          <xs:documentation>Northill and Blunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHB">
        <xs:annotation>
          <xs:documentation>Potton and Wensley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHC">
        <xs:annotation>
          <xs:documentation>Sandy Ivel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHD">
        <xs:annotation>
          <xs:documentation>Sandy Pinnacle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHE">
        <xs:annotation>
          <xs:documentation>Shefford, Campton and Gravenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHF">
        <xs:annotation>
          <xs:documentation>Shillington, Stondon and Henlow Camp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHG">
        <xs:annotation>
          <xs:documentation>Silsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHH">
        <xs:annotation>
          <xs:documentation>Stotfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHJ">
        <xs:annotation>
          <xs:documentation>Westoning and Tingrith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UCHK">
        <xs:annotation>
          <xs:documentation>Woburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGE">
        <xs:annotation>
          <xs:documentation>Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGF">
        <xs:annotation>
          <xs:documentation>Bromham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGG">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGH">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGJ">
        <xs:annotation>
          <xs:documentation>Cauldwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGK">
        <xs:annotation>
          <xs:documentation>Clapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGL">
        <xs:annotation>
          <xs:documentation>De Parys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGM">
        <xs:annotation>
          <xs:documentation>Eastcotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGN">
        <xs:annotation>
          <xs:documentation>Goldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGP">
        <xs:annotation>
          <xs:documentation>Great Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGQ">
        <xs:annotation>
          <xs:documentation>Harpur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGR">
        <xs:annotation>
          <xs:documentation>Harrold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGS">
        <xs:annotation>
          <xs:documentation>Kempston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGT">
        <xs:annotation>
          <xs:documentation>Kempston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGU">
        <xs:annotation>
          <xs:documentation>Kempston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGW">
        <xs:annotation>
          <xs:documentation>Kingsbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGX">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGY">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDGZ">
        <xs:annotation>
          <xs:documentation>Putnoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHA">
        <xs:annotation>
          <xs:documentation>Queen's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHB">
        <xs:annotation>
          <xs:documentation>Riseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHC">
        <xs:annotation>
          <xs:documentation>Roxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHD">
        <xs:annotation>
          <xs:documentation>Sharnbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHE">
        <xs:annotation>
          <xs:documentation>Turvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHF">
        <xs:annotation>
          <xs:documentation>Wilshamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UDHG">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGC">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGD">
        <xs:annotation>
          <xs:documentation>Barton-le-Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGE">
        <xs:annotation>
          <xs:documentation>Caddington, Hyde and Slip End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGF">
        <xs:annotation>
          <xs:documentation>Chiltern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGG">
        <xs:annotation>
          <xs:documentation>Dunstable Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGH">
        <xs:annotation>
          <xs:documentation>Eaton Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGJ">
        <xs:annotation>
          <xs:documentation>Grovebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGK">
        <xs:annotation>
          <xs:documentation>Heath and Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGL">
        <xs:annotation>
          <xs:documentation>Houghton Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGM">
        <xs:annotation>
          <xs:documentation>Icknield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGN">
        <xs:annotation>
          <xs:documentation>Kensworth and Totternhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGP">
        <xs:annotation>
          <xs:documentation>Linslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGQ">
        <xs:annotation>
          <xs:documentation>Manshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGR">
        <xs:annotation>
          <xs:documentation>Northfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGS">
        <xs:annotation>
          <xs:documentation>Parkside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGT">
        <xs:annotation>
          <xs:documentation>Planets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGU">
        <xs:annotation>
          <xs:documentation>Plantation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGW">
        <xs:annotation>
          <xs:documentation>Southcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGX">
        <xs:annotation>
          <xs:documentation>Stanbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGY">
        <xs:annotation>
          <xs:documentation>Streatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEGZ">
        <xs:annotation>
          <xs:documentation>Tithe Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEHA">
        <xs:annotation>
          <xs:documentation>Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UEHB">
        <xs:annotation>
          <xs:documentation>Watling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGR">
        <xs:annotation>
          <xs:documentation>Aston Clinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGS">
        <xs:annotation>
          <xs:documentation>Aylesbury Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGT">
        <xs:annotation>
          <xs:documentation>Bedgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGU">
        <xs:annotation>
          <xs:documentation>Bierton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGW">
        <xs:annotation>
          <xs:documentation>Brill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGX">
        <xs:annotation>
          <xs:documentation>Buckingham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGY">
        <xs:annotation>
          <xs:documentation>Buckingham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBGZ">
        <xs:annotation>
          <xs:documentation>Cheddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHA">
        <xs:annotation>
          <xs:documentation>Coldharbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHB">
        <xs:annotation>
          <xs:documentation>Edlesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHC">
        <xs:annotation>
          <xs:documentation>Elmhurst and Watermead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHD">
        <xs:annotation>
          <xs:documentation>Gatehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHE">
        <xs:annotation>
          <xs:documentation>Great Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHF">
        <xs:annotation>
          <xs:documentation>Great Horwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHG">
        <xs:annotation>
          <xs:documentation>Grendon Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHH">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHJ">
        <xs:annotation>
          <xs:documentation>Long Crendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHK">
        <xs:annotation>
          <xs:documentation>Luffield Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHL">
        <xs:annotation>
          <xs:documentation>Mandeville and Elm Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHM">
        <xs:annotation>
          <xs:documentation>Marsh Gibbon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHN">
        <xs:annotation>
          <xs:documentation>Newton Longville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHP">
        <xs:annotation>
          <xs:documentation>Oakfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHQ">
        <xs:annotation>
          <xs:documentation>Pitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHR">
        <xs:annotation>
          <xs:documentation>Quainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHS">
        <xs:annotation>
          <xs:documentation>Quarrendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHT">
        <xs:annotation>
          <xs:documentation>Southcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHU">
        <xs:annotation>
          <xs:documentation>Steeple Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHW">
        <xs:annotation>
          <xs:documentation>Stewkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHX">
        <xs:annotation>
          <xs:documentation>Tingewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHY">
        <xs:annotation>
          <xs:documentation>Waddesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBHZ">
        <xs:annotation>
          <xs:documentation>Walton Court and Hawkslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBJA">
        <xs:annotation>
          <xs:documentation>Weedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBJB">
        <xs:annotation>
          <xs:documentation>Wendover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBJC">
        <xs:annotation>
          <xs:documentation>Wing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBJD">
        <xs:annotation>
          <xs:documentation>Wingrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UBJE">
        <xs:annotation>
          <xs:documentation>Winslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGH">
        <xs:annotation>
          <xs:documentation>Amersham Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGJ">
        <xs:annotation>
          <xs:documentation>Amersham-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGK">
        <xs:annotation>
          <xs:documentation>Amersham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGL">
        <xs:annotation>
          <xs:documentation>Asheridge Vale and Lowndes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGM">
        <xs:annotation>
          <xs:documentation>Ashley Green, Latimer and Chenies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGN">
        <xs:annotation>
          <xs:documentation>Austenwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGP">
        <xs:annotation>
          <xs:documentation>Ballinger, South Heath and Chartridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGQ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGR">
        <xs:annotation>
          <xs:documentation>Chalfont Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGS">
        <xs:annotation>
          <xs:documentation>Chalfont St Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGT">
        <xs:annotation>
          <xs:documentation>Chesham Bois and Weedon Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGU">
        <xs:annotation>
          <xs:documentation>Cholesbury, The Lee and Bellingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGW">
        <xs:annotation>
          <xs:documentation>Gold Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGX">
        <xs:annotation>
          <xs:documentation>Great Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGY">
        <xs:annotation>
          <xs:documentation>Hilltop and Townsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCGZ">
        <xs:annotation>
          <xs:documentation>Holmer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHA">
        <xs:annotation>
          <xs:documentation>Little Chalfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHB">
        <xs:annotation>
          <xs:documentation>Little Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHC">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHD">
        <xs:annotation>
          <xs:documentation>Penn and Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHE">
        <xs:annotation>
          <xs:documentation>Prestwood and Heath End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHF">
        <xs:annotation>
          <xs:documentation>Ridgeway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHG">
        <xs:annotation>
          <xs:documentation>St Mary's and Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHH">
        <xs:annotation>
          <xs:documentation>Seer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UCHJ">
        <xs:annotation>
          <xs:documentation>Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEFX">
        <xs:annotation>
          <xs:documentation>Beaconsfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEFY">
        <xs:annotation>
          <xs:documentation>Beaconsfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEFZ">
        <xs:annotation>
          <xs:documentation>Beaconsfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGA">
        <xs:annotation>
          <xs:documentation>Burnham Beeches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGB">
        <xs:annotation>
          <xs:documentation>Burnham Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGC">
        <xs:annotation>
          <xs:documentation>Burnham Lent Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGD">
        <xs:annotation>
          <xs:documentation>Denham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGE">
        <xs:annotation>
          <xs:documentation>Denham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGF">
        <xs:annotation>
          <xs:documentation>Dorney and Burnham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGG">
        <xs:annotation>
          <xs:documentation>Farnham Royal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGH">
        <xs:annotation>
          <xs:documentation>Gerrards Cross East and Denham South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGJ">
        <xs:annotation>
          <xs:documentation>Gerrards Cross North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGK">
        <xs:annotation>
          <xs:documentation>Gerrards Cross South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGL">
        <xs:annotation>
          <xs:documentation>Hedgerley and Fulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGM">
        <xs:annotation>
          <xs:documentation>Iver Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGN">
        <xs:annotation>
          <xs:documentation>Iver Village and Richings Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGP">
        <xs:annotation>
          <xs:documentation>Stoke Poges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGQ">
        <xs:annotation>
          <xs:documentation>Taplow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UEGR">
        <xs:annotation>
          <xs:documentation>Wexham and Iver West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGK">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGL">
        <xs:annotation>
          <xs:documentation>Bledlow and Bradenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGM">
        <xs:annotation>
          <xs:documentation>Booker and Cressex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGN">
        <xs:annotation>
          <xs:documentation>Bourne End-cum-Hedsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGP">
        <xs:annotation>
          <xs:documentation>Bowerdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGQ">
        <xs:annotation>
          <xs:documentation>Chiltern Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGR">
        <xs:annotation>
          <xs:documentation>Disraeli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGS">
        <xs:annotation>
          <xs:documentation>Downley and Plomer Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGT">
        <xs:annotation>
          <xs:documentation>Flackwell Heath and Little Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGU">
        <xs:annotation>
          <xs:documentation>Greater Hughenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGW">
        <xs:annotation>
          <xs:documentation>Greater Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGX">
        <xs:annotation>
          <xs:documentation>Hambleden Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGY">
        <xs:annotation>
          <xs:documentation>Hazlemere North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFGZ">
        <xs:annotation>
          <xs:documentation>Hazlemere South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHA">
        <xs:annotation>
          <xs:documentation>Icknield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHB">
        <xs:annotation>
          <xs:documentation>Lacey Green, Speen and the Hampdens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHC">
        <xs:annotation>
          <xs:documentation>Marlow North and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHD">
        <xs:annotation>
          <xs:documentation>Marlow South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHE">
        <xs:annotation>
          <xs:documentation>Micklefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHF">
        <xs:annotation>
          <xs:documentation>Oakridge and Castlefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHG">
        <xs:annotation>
          <xs:documentation>Ryemead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHH">
        <xs:annotation>
          <xs:documentation>Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHJ">
        <xs:annotation>
          <xs:documentation>Stokenchurch and Radnage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHK">
        <xs:annotation>
          <xs:documentation>Terriers and Amersham Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHL">
        <xs:annotation>
          <xs:documentation>Totteridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHM">
        <xs:annotation>
          <xs:documentation>The Risboroughs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHN">
        <xs:annotation>
          <xs:documentation>The Wooburns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UFHP">
        <xs:annotation>
          <xs:documentation>Tylers Green and Loudwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFQ">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFR">
        <xs:annotation>
          <xs:documentation>Arbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFS">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFT">
        <xs:annotation>
          <xs:documentation>Cherry Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFU">
        <xs:annotation>
          <xs:documentation>Coleridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFW">
        <xs:annotation>
          <xs:documentation>East Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFX">
        <xs:annotation>
          <xs:documentation>King's Hedges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFY">
        <xs:annotation>
          <xs:documentation>Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBFZ">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBGA">
        <xs:annotation>
          <xs:documentation>Petersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBGB">
        <xs:annotation>
          <xs:documentation>Queen Edith's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBGC">
        <xs:annotation>
          <xs:documentation>Romsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBGD">
        <xs:annotation>
          <xs:documentation>Trumpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UBGE">
        <xs:annotation>
          <xs:documentation>West Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCFU">
        <xs:annotation>
          <xs:documentation>Bottisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCFW">
        <xs:annotation>
          <xs:documentation>Burwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCFX">
        <xs:annotation>
          <xs:documentation>Cheveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCFY">
        <xs:annotation>
          <xs:documentation>Downham Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCFZ">
        <xs:annotation>
          <xs:documentation>Dullingham Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGA">
        <xs:annotation>
          <xs:documentation>Ely East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGB">
        <xs:annotation>
          <xs:documentation>Ely North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGC">
        <xs:annotation>
          <xs:documentation>Ely South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGD">
        <xs:annotation>
          <xs:documentation>Ely West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGE">
        <xs:annotation>
          <xs:documentation>Fordham Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGF">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGG">
        <xs:annotation>
          <xs:documentation>Isleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGH">
        <xs:annotation>
          <xs:documentation>Littleport East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGJ">
        <xs:annotation>
          <xs:documentation>Littleport West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGK">
        <xs:annotation>
          <xs:documentation>Soham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGL">
        <xs:annotation>
          <xs:documentation>Soham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGM">
        <xs:annotation>
          <xs:documentation>Stretham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGN">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UCGP">
        <xs:annotation>
          <xs:documentation>The Swaffhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGC">
        <xs:annotation>
          <xs:documentation>Bassenhally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGD">
        <xs:annotation>
          <xs:documentation>Benwick, Coates and Eastrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGE">
        <xs:annotation>
          <xs:documentation>Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGF">
        <xs:annotation>
          <xs:documentation>Clarkson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGG">
        <xs:annotation>
          <xs:documentation>Delph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGH">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGJ">
        <xs:annotation>
          <xs:documentation>Elm and Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGK">
        <xs:annotation>
          <xs:documentation>Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGL">
        <xs:annotation>
          <xs:documentation>Kingsmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGM">
        <xs:annotation>
          <xs:documentation>Kirkgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGN">
        <xs:annotation>
          <xs:documentation>Lattersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGP">
        <xs:annotation>
          <xs:documentation>Manea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGQ">
        <xs:annotation>
          <xs:documentation>March East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGR">
        <xs:annotation>
          <xs:documentation>March North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGS">
        <xs:annotation>
          <xs:documentation>March West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGT">
        <xs:annotation>
          <xs:documentation>Medworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGU">
        <xs:annotation>
          <xs:documentation>Parson Drove and Wisbech St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGW">
        <xs:annotation>
          <xs:documentation>Peckover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGX">
        <xs:annotation>
          <xs:documentation>Roman Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGY">
        <xs:annotation>
          <xs:documentation>St Andrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDGZ">
        <xs:annotation>
          <xs:documentation>St Marys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHA">
        <xs:annotation>
          <xs:documentation>Slade Lode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHB">
        <xs:annotation>
          <xs:documentation>Staithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHC">
        <xs:annotation>
          <xs:documentation>The Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHD">
        <xs:annotation>
          <xs:documentation>Waterlees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHE">
        <xs:annotation>
          <xs:documentation>Wenneye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UDHF">
        <xs:annotation>
          <xs:documentation>Wimblington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGM">
        <xs:annotation>
          <xs:documentation>Alconbury and The Stukeleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGN">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGP">
        <xs:annotation>
          <xs:documentation>Buckden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGQ">
        <xs:annotation>
          <xs:documentation>Earith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGR">
        <xs:annotation>
          <xs:documentation>Ellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGS">
        <xs:annotation>
          <xs:documentation>Elton and Folksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGT">
        <xs:annotation>
          <xs:documentation>Fenstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGU">
        <xs:annotation>
          <xs:documentation>Godmanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGW">
        <xs:annotation>
          <xs:documentation>Gransden and The Offords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGX">
        <xs:annotation>
          <xs:documentation>Huntingdon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGY">
        <xs:annotation>
          <xs:documentation>Huntingdon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEGZ">
        <xs:annotation>
          <xs:documentation>Huntingdon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHA">
        <xs:annotation>
          <xs:documentation>Kimbolton and Staughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHB">
        <xs:annotation>
          <xs:documentation>Little Paxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHC">
        <xs:annotation>
          <xs:documentation>Ramsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHD">
        <xs:annotation>
          <xs:documentation>St Ives East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHE">
        <xs:annotation>
          <xs:documentation>St Ives South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHF">
        <xs:annotation>
          <xs:documentation>St Ives West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHG">
        <xs:annotation>
          <xs:documentation>St Neots Eaton Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHH">
        <xs:annotation>
          <xs:documentation>St Neots Eaton Socon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHJ">
        <xs:annotation>
          <xs:documentation>St Neots Eynesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHK">
        <xs:annotation>
          <xs:documentation>St Neots Priory Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHL">
        <xs:annotation>
          <xs:documentation>Sawtry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHM">
        <xs:annotation>
          <xs:documentation>Somersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHN">
        <xs:annotation>
          <xs:documentation>Stilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHP">
        <xs:annotation>
          <xs:documentation>The Hemingfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHQ">
        <xs:annotation>
          <xs:documentation>Upwood and The Raveleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHR">
        <xs:annotation>
          <xs:documentation>Warboys and Bury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UEHS">
        <xs:annotation>
          <xs:documentation>Yaxley and Farcet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGGW">
        <xs:annotation>
          <xs:documentation>Balsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGGX">
        <xs:annotation>
          <xs:documentation>Bar Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGGY">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGGZ">
        <xs:annotation>
          <xs:documentation>Bassingbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHA">
        <xs:annotation>
          <xs:documentation>Bourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHB">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHC">
        <xs:annotation>
          <xs:documentation>Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHD">
        <xs:annotation>
          <xs:documentation>Cottenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHE">
        <xs:annotation>
          <xs:documentation>Duxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHF">
        <xs:annotation>
          <xs:documentation>Fowlmere and Foxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHG">
        <xs:annotation>
          <xs:documentation>Fulbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHH">
        <xs:annotation>
          <xs:documentation>Gamlingay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHJ">
        <xs:annotation>
          <xs:documentation>Girton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHK">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHL">
        <xs:annotation>
          <xs:documentation>Harston and Hauxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHM">
        <xs:annotation>
          <xs:documentation>Haslingfield and The Eversdens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHN">
        <xs:annotation>
          <xs:documentation>Histon and Impington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHP">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHQ">
        <xs:annotation>
          <xs:documentation>Longstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHR">
        <xs:annotation>
          <xs:documentation>Melbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHS">
        <xs:annotation>
          <xs:documentation>Meldreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHT">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHU">
        <xs:annotation>
          <xs:documentation>Orwell and Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHW">
        <xs:annotation>
          <xs:documentation>Papworth and Elsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHX">
        <xs:annotation>
          <xs:documentation>Sawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHY">
        <xs:annotation>
          <xs:documentation>Swavesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGHZ">
        <xs:annotation>
          <xs:documentation>Teversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJA">
        <xs:annotation>
          <xs:documentation>The Abingtons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJB">
        <xs:annotation>
          <xs:documentation>The Mordens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJC">
        <xs:annotation>
          <xs:documentation>The Shelfords and Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJD">
        <xs:annotation>
          <xs:documentation>The Wilbrahams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJE">
        <xs:annotation>
          <xs:documentation>Waterbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJF">
        <xs:annotation>
          <xs:documentation>Whittlesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UGJG">
        <xs:annotation>
          <xs:documentation>Willingham and Over</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGE">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGF">
        <xs:annotation>
          <xs:documentation>Blacon Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGG">
        <xs:annotation>
          <xs:documentation>Blacon Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGH">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGJ">
        <xs:annotation>
          <xs:documentation>Boughton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGK">
        <xs:annotation>
          <xs:documentation>Christleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGL">
        <xs:annotation>
          <xs:documentation>City &amp; St Anne's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGM">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGN">
        <xs:annotation>
          <xs:documentation>Curzon &amp; Westminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGP">
        <xs:annotation>
          <xs:documentation>Dodleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGQ">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGR">
        <xs:annotation>
          <xs:documentation>Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGS">
        <xs:annotation>
          <xs:documentation>Handbridge &amp; St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGT">
        <xs:annotation>
          <xs:documentation>Hoole All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGU">
        <xs:annotation>
          <xs:documentation>Hoole Groves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGW">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGX">
        <xs:annotation>
          <xs:documentation>Kelsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGY">
        <xs:annotation>
          <xs:documentation>Lache Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBGZ">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHA">
        <xs:annotation>
          <xs:documentation>Mickle Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHB">
        <xs:annotation>
          <xs:documentation>Mollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHC">
        <xs:annotation>
          <xs:documentation>Newton Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHD">
        <xs:annotation>
          <xs:documentation>Newton St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHE">
        <xs:annotation>
          <xs:documentation>Saughall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHF">
        <xs:annotation>
          <xs:documentation>Tarvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHG">
        <xs:annotation>
          <xs:documentation>Tattenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHH">
        <xs:annotation>
          <xs:documentation>Tilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHJ">
        <xs:annotation>
          <xs:documentation>Upton Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHK">
        <xs:annotation>
          <xs:documentation>Upton Westlea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHL">
        <xs:annotation>
          <xs:documentation>Vicars Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UBHM">
        <xs:annotation>
          <xs:documentation>Waverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCFU">
        <xs:annotation>
          <xs:documentation>Alsager Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCFW">
        <xs:annotation>
          <xs:documentation>Alsager East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCFX">
        <xs:annotation>
          <xs:documentation>Alsager West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCFY">
        <xs:annotation>
          <xs:documentation>Astbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCFZ">
        <xs:annotation>
          <xs:documentation>Brereton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGA">
        <xs:annotation>
          <xs:documentation>Buglawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGB">
        <xs:annotation>
          <xs:documentation>Congleton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGC">
        <xs:annotation>
          <xs:documentation>Congleton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGD">
        <xs:annotation>
          <xs:documentation>Congleton North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGE">
        <xs:annotation>
          <xs:documentation>Congleton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGF">
        <xs:annotation>
          <xs:documentation>Congleton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGG">
        <xs:annotation>
          <xs:documentation>Dane Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGH">
        <xs:annotation>
          <xs:documentation>Holmes Chapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGJ">
        <xs:annotation>
          <xs:documentation>Lawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGK">
        <xs:annotation>
          <xs:documentation>Middlewich Cledford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGL">
        <xs:annotation>
          <xs:documentation>Middlewich Kinderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGM">
        <xs:annotation>
          <xs:documentation>Odd Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGN">
        <xs:annotation>
          <xs:documentation>Sandbach East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGP">
        <xs:annotation>
          <xs:documentation>Sandbach North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UCGQ">
        <xs:annotation>
          <xs:documentation>Sandbach West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGD">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGE">
        <xs:annotation>
          <xs:documentation>Alexandra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGF">
        <xs:annotation>
          <xs:documentation>Audlem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGG">
        <xs:annotation>
          <xs:documentation>Barony Weaver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGH">
        <xs:annotation>
          <xs:documentation>Birchin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGJ">
        <xs:annotation>
          <xs:documentation>Bunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGK">
        <xs:annotation>
          <xs:documentation>Coppenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGL">
        <xs:annotation>
          <xs:documentation>Delamere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGM">
        <xs:annotation>
          <xs:documentation>Englesea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGN">
        <xs:annotation>
          <xs:documentation>Grosvenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGP">
        <xs:annotation>
          <xs:documentation>Haslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGQ">
        <xs:annotation>
          <xs:documentation>Leighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGR">
        <xs:annotation>
          <xs:documentation>Maw Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGS">
        <xs:annotation>
          <xs:documentation>Minshull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGT">
        <xs:annotation>
          <xs:documentation>Peckforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGU">
        <xs:annotation>
          <xs:documentation>St Barnabas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGW">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGX">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGY">
        <xs:annotation>
          <xs:documentation>Shavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDGZ">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHA">
        <xs:annotation>
          <xs:documentation>Waldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHB">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHC">
        <xs:annotation>
          <xs:documentation>Wells Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHD">
        <xs:annotation>
          <xs:documentation>Willaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHE">
        <xs:annotation>
          <xs:documentation>Wistaston Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHF">
        <xs:annotation>
          <xs:documentation>Wrenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UDHG">
        <xs:annotation>
          <xs:documentation>Wybunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEFU">
        <xs:annotation>
          <xs:documentation>Burton &amp; Ness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEFW">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEFX">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEFY">
        <xs:annotation>
          <xs:documentation>Groves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEFZ">
        <xs:annotation>
          <xs:documentation>Ledsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGA">
        <xs:annotation>
          <xs:documentation>Little Neston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGB">
        <xs:annotation>
          <xs:documentation>Neston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGC">
        <xs:annotation>
          <xs:documentation>Parkgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGD">
        <xs:annotation>
          <xs:documentation>Pooltown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGE">
        <xs:annotation>
          <xs:documentation>Rivacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGF">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGG">
        <xs:annotation>
          <xs:documentation>Rossmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGH">
        <xs:annotation>
          <xs:documentation>Stanlow &amp; Wolverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGJ">
        <xs:annotation>
          <xs:documentation>Strawberry Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGK">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGL">
        <xs:annotation>
          <xs:documentation>Sutton Green &amp; Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGM">
        <xs:annotation>
          <xs:documentation>Westminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGN">
        <xs:annotation>
          <xs:documentation>Whitby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UEGP">
        <xs:annotation>
          <xs:documentation>Willaston &amp; Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGN">
        <xs:annotation>
          <xs:documentation>Alderley Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGP">
        <xs:annotation>
          <xs:documentation>Bollington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGQ">
        <xs:annotation>
          <xs:documentation>Bollington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGR">
        <xs:annotation>
          <xs:documentation>Bollington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGS">
        <xs:annotation>
          <xs:documentation>Chelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGT">
        <xs:annotation>
          <xs:documentation>Dean Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGU">
        <xs:annotation>
          <xs:documentation>Disley &amp; Lyme Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGW">
        <xs:annotation>
          <xs:documentation>Fulshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGX">
        <xs:annotation>
          <xs:documentation>Gawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGY">
        <xs:annotation>
          <xs:documentation>Handforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGGZ">
        <xs:annotation>
          <xs:documentation>Henbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHA">
        <xs:annotation>
          <xs:documentation>High Legh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHB">
        <xs:annotation>
          <xs:documentation>Hough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHC">
        <xs:annotation>
          <xs:documentation>Knutsford Bexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHD">
        <xs:annotation>
          <xs:documentation>Knutsford Nether</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHE">
        <xs:annotation>
          <xs:documentation>Knutsford Norbury Booths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHF">
        <xs:annotation>
          <xs:documentation>Knutsford Over</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHG">
        <xs:annotation>
          <xs:documentation>Lacey Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHH">
        <xs:annotation>
          <xs:documentation>Macclesfield Bollinbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHJ">
        <xs:annotation>
          <xs:documentation>Macclesfield Broken Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHK">
        <xs:annotation>
          <xs:documentation>Macclesfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHL">
        <xs:annotation>
          <xs:documentation>Macclesfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHM">
        <xs:annotation>
          <xs:documentation>Macclesfield Hurdsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHN">
        <xs:annotation>
          <xs:documentation>Macclesfield Ivy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHP">
        <xs:annotation>
          <xs:documentation>Macclesfield Ryles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHQ">
        <xs:annotation>
          <xs:documentation>Macclesfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHR">
        <xs:annotation>
          <xs:documentation>Macclesfield Tytherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHS">
        <xs:annotation>
          <xs:documentation>Macclesfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHT">
        <xs:annotation>
          <xs:documentation>Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHU">
        <xs:annotation>
          <xs:documentation>Mobberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHW">
        <xs:annotation>
          <xs:documentation>Morley &amp; Styal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHX">
        <xs:annotation>
          <xs:documentation>Plumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHY">
        <xs:annotation>
          <xs:documentation>Poynton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGHZ">
        <xs:annotation>
          <xs:documentation>Poynton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGJA">
        <xs:annotation>
          <xs:documentation>Poynton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGJB">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGJC">
        <xs:annotation>
          <xs:documentation>Rainow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UGJD">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGP">
        <xs:annotation>
          <xs:documentation>Barnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGQ">
        <xs:annotation>
          <xs:documentation>Cogshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGR">
        <xs:annotation>
          <xs:documentation>Cuddington &amp; Oakmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGS">
        <xs:annotation>
          <xs:documentation>Davenham &amp; Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGT">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGU">
        <xs:annotation>
          <xs:documentation>Frodsham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGW">
        <xs:annotation>
          <xs:documentation>Frodsham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGX">
        <xs:annotation>
          <xs:documentation>Hartford &amp; Whitegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGY">
        <xs:annotation>
          <xs:documentation>Helsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHGZ">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHA">
        <xs:annotation>
          <xs:documentation>Leftwich &amp; Kingsmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHB">
        <xs:annotation>
          <xs:documentation>Lostock &amp; Wincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHC">
        <xs:annotation>
          <xs:documentation>Mara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHD">
        <xs:annotation>
          <xs:documentation>Milton Weaver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHE">
        <xs:annotation>
          <xs:documentation>Northwich Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHF">
        <xs:annotation>
          <xs:documentation>Northwich Winnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHG">
        <xs:annotation>
          <xs:documentation>Northwich Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHH">
        <xs:annotation>
          <xs:documentation>Rudheath &amp; South Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHJ">
        <xs:annotation>
          <xs:documentation>Seven Oaks &amp; Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHK">
        <xs:annotation>
          <xs:documentation>Shakerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHL">
        <xs:annotation>
          <xs:documentation>Tarporley &amp; Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHM">
        <xs:annotation>
          <xs:documentation>Weaverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHN">
        <xs:annotation>
          <xs:documentation>Winsford Dene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHP">
        <xs:annotation>
          <xs:documentation>Winsford Gravel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHQ">
        <xs:annotation>
          <xs:documentation>Winsford Over</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHR">
        <xs:annotation>
          <xs:documentation>Winsford Swanlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHS">
        <xs:annotation>
          <xs:documentation>Winsford Verdin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UHHT">
        <xs:annotation>
          <xs:documentation>Winsford Wharton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGH">
        <xs:annotation>
          <xs:documentation>Callington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGJ">
        <xs:annotation>
          <xs:documentation>Calstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGK">
        <xs:annotation>
          <xs:documentation>Deviock and Sheviock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGL">
        <xs:annotation>
          <xs:documentation>Dobwalls and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGM">
        <xs:annotation>
          <xs:documentation>Duloe, Lansallos and Pelynt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGN">
        <xs:annotation>
          <xs:documentation>Landrake and St Dominick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGP">
        <xs:annotation>
          <xs:documentation>Lanteglos and St Veep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGQ">
        <xs:annotation>
          <xs:documentation>Liskeard North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGR">
        <xs:annotation>
          <xs:documentation>Liskeard South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGS">
        <xs:annotation>
          <xs:documentation>Looe and St Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGT">
        <xs:annotation>
          <xs:documentation>Lynher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGU">
        <xs:annotation>
          <xs:documentation>Menheniot and St Ive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGW">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGX">
        <xs:annotation>
          <xs:documentation>Rame Peninsula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGY">
        <xs:annotation>
          <xs:documentation>St Cleer and St Neot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBGZ">
        <xs:annotation>
          <xs:documentation>St Germans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHA">
        <xs:annotation>
          <xs:documentation>Saltash Burraton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHB">
        <xs:annotation>
          <xs:documentation>Saltash Essa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHC">
        <xs:annotation>
          <xs:documentation>Saltash Pill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHD">
        <xs:annotation>
          <xs:documentation>Saltash St Stephens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHE">
        <xs:annotation>
          <xs:documentation>Torpoint East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UBHF">
        <xs:annotation>
          <xs:documentation>Torpoint West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCFX">
        <xs:annotation>
          <xs:documentation>Arwenack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCFY">
        <xs:annotation>
          <xs:documentation>Boscawen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCFZ">
        <xs:annotation>
          <xs:documentation>Boslowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGA">
        <xs:annotation>
          <xs:documentation>Carland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGB">
        <xs:annotation>
          <xs:documentation>Feock and Kea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGC">
        <xs:annotation>
          <xs:documentation>Kenwyn and Chacewater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGD">
        <xs:annotation>
          <xs:documentation>Moresk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGE">
        <xs:annotation>
          <xs:documentation>Mount Hawke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGF">
        <xs:annotation>
          <xs:documentation>Mylor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGG">
        <xs:annotation>
          <xs:documentation>Newlyn and Goonhavern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGH">
        <xs:annotation>
          <xs:documentation>Penryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGJ">
        <xs:annotation>
          <xs:documentation>Penwerris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGK">
        <xs:annotation>
          <xs:documentation>Perranporth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGL">
        <xs:annotation>
          <xs:documentation>Probus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGM">
        <xs:annotation>
          <xs:documentation>Roseland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGN">
        <xs:annotation>
          <xs:documentation>St Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGP">
        <xs:annotation>
          <xs:documentation>Tregolls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGQ">
        <xs:annotation>
          <xs:documentation>Trehaverne and Gloweth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UCGR">
        <xs:annotation>
          <xs:documentation>Trescobeas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDFZ">
        <xs:annotation>
          <xs:documentation>Breage and Crowan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGA">
        <xs:annotation>
          <xs:documentation>Camborne North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGB">
        <xs:annotation>
          <xs:documentation>Camborne South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGC">
        <xs:annotation>
          <xs:documentation>Camborne West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGD">
        <xs:annotation>
          <xs:documentation>Constantine, Gweek and Mawnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGE">
        <xs:annotation>
          <xs:documentation>Grade-Ruan and Landewednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGF">
        <xs:annotation>
          <xs:documentation>Helston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGG">
        <xs:annotation>
          <xs:documentation>Helston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGH">
        <xs:annotation>
          <xs:documentation>Illogan North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGJ">
        <xs:annotation>
          <xs:documentation>Illogan South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGK">
        <xs:annotation>
          <xs:documentation>Mabe and Budock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGL">
        <xs:annotation>
          <xs:documentation>Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGM">
        <xs:annotation>
          <xs:documentation>Mullion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGN">
        <xs:annotation>
          <xs:documentation>Porthleven and Sithney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGP">
        <xs:annotation>
          <xs:documentation>Redruth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGQ">
        <xs:annotation>
          <xs:documentation>Redruth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGR">
        <xs:annotation>
          <xs:documentation>St Day, Lanner and Carharrack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGS">
        <xs:annotation>
          <xs:documentation>St Keverne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGT">
        <xs:annotation>
          <xs:documentation>Stithians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UDGU">
        <xs:annotation>
          <xs:documentation>Wendron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGE">
        <xs:annotation>
          <xs:documentation>Allan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGF">
        <xs:annotation>
          <xs:documentation>Altarnun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGG">
        <xs:annotation>
          <xs:documentation>Blisland and St Breward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGH">
        <xs:annotation>
          <xs:documentation>Bodmin St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGJ">
        <xs:annotation>
          <xs:documentation>Bodmin St Petroc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGK">
        <xs:annotation>
          <xs:documentation>Bude</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGL">
        <xs:annotation>
          <xs:documentation>Camelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGM">
        <xs:annotation>
          <xs:documentation>Camelot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGN">
        <xs:annotation>
          <xs:documentation>Grenville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGP">
        <xs:annotation>
          <xs:documentation>Lanivet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGQ">
        <xs:annotation>
          <xs:documentation>Launceston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGR">
        <xs:annotation>
          <xs:documentation>Marhamchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGS">
        <xs:annotation>
          <xs:documentation>North Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGT">
        <xs:annotation>
          <xs:documentation>Padstow and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGU">
        <xs:annotation>
          <xs:documentation>Poughill and Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGW">
        <xs:annotation>
          <xs:documentation>St Endellion and St Kew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGX">
        <xs:annotation>
          <xs:documentation>St Minver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGY">
        <xs:annotation>
          <xs:documentation>South Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEGZ">
        <xs:annotation>
          <xs:documentation>Stokeclimsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEHA">
        <xs:annotation>
          <xs:documentation>Tremaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEHB">
        <xs:annotation>
          <xs:documentation>Valency</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEHC">
        <xs:annotation>
          <xs:documentation>Wadebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UEHD">
        <xs:annotation>
          <xs:documentation>Week St Mary and Whitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFS">
        <xs:annotation>
          <xs:documentation>Goldsithney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFT">
        <xs:annotation>
          <xs:documentation>Gulval and Heamoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFU">
        <xs:annotation>
          <xs:documentation>Gwinear, Gwithian and Hayle East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFW">
        <xs:annotation>
          <xs:documentation>Hayle North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFX">
        <xs:annotation>
          <xs:documentation>Hayle South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFY">
        <xs:annotation>
          <xs:documentation>Lelant and Carbis Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFFZ">
        <xs:annotation>
          <xs:documentation>Ludgvan and Towednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGA">
        <xs:annotation>
          <xs:documentation>Madron and Zennor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGB">
        <xs:annotation>
          <xs:documentation>Marazion and Perranuthnoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGC">
        <xs:annotation>
          <xs:documentation>Morvah, Pendeen and St Just</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGD">
        <xs:annotation>
          <xs:documentation>Penzance Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGE">
        <xs:annotation>
          <xs:documentation>Penzance East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGF">
        <xs:annotation>
          <xs:documentation>Penzance Promenade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGG">
        <xs:annotation>
          <xs:documentation>Penzance South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGH">
        <xs:annotation>
          <xs:documentation>St Buryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGJ">
        <xs:annotation>
          <xs:documentation>St Erth and St Hilary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGK">
        <xs:annotation>
          <xs:documentation>St Ives North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UFGL">
        <xs:annotation>
          <xs:documentation>St Ives South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGFU">
        <xs:annotation>
          <xs:documentation>Bethel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGFW">
        <xs:annotation>
          <xs:documentation>Crinnis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGFX">
        <xs:annotation>
          <xs:documentation>Edgcumbe North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGFY">
        <xs:annotation>
          <xs:documentation>Edgcumbe South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGFZ">
        <xs:annotation>
          <xs:documentation>Fowey and Tywardreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGA">
        <xs:annotation>
          <xs:documentation>Gannel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGB">
        <xs:annotation>
          <xs:documentation>Gover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGC">
        <xs:annotation>
          <xs:documentation>Lostwithiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGD">
        <xs:annotation>
          <xs:documentation>Mevagissey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGE">
        <xs:annotation>
          <xs:documentation>Mount Charles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGF">
        <xs:annotation>
          <xs:documentation>Poltair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGG">
        <xs:annotation>
          <xs:documentation>Rialton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGH">
        <xs:annotation>
          <xs:documentation>Rock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGJ">
        <xs:annotation>
          <xs:documentation>St Blaise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGK">
        <xs:annotation>
          <xs:documentation>St Columb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGL">
        <xs:annotation>
          <xs:documentation>St Enoder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGM">
        <xs:annotation>
          <xs:documentation>St Ewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGN">
        <xs:annotation>
          <xs:documentation>St Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UGGP">
        <xs:annotation>
          <xs:documentation>Treverbyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UHFA">
        <xs:annotation>
          <xs:documentation>Bryher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UHFB">
        <xs:annotation>
          <xs:documentation>St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UHFC">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UHFD">
        <xs:annotation>
          <xs:documentation>St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UHFE">
        <xs:annotation>
          <xs:documentation>Tresco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGM">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGN">
        <xs:annotation>
          <xs:documentation>Aspatria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGP">
        <xs:annotation>
          <xs:documentation>Boltons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGQ">
        <xs:annotation>
          <xs:documentation>Broughton St Bridget's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGR">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGS">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGT">
        <xs:annotation>
          <xs:documentation>Crummock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGU">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGW">
        <xs:annotation>
          <xs:documentation>Derwent Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGX">
        <xs:annotation>
          <xs:documentation>Ellen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGY">
        <xs:annotation>
          <xs:documentation>Ellenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBGZ">
        <xs:annotation>
          <xs:documentation>Ewanrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHA">
        <xs:annotation>
          <xs:documentation>Flimby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHB">
        <xs:annotation>
          <xs:documentation>Harrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHC">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHD">
        <xs:annotation>
          <xs:documentation>Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHE">
        <xs:annotation>
          <xs:documentation>Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHF">
        <xs:annotation>
          <xs:documentation>Moorclose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHG">
        <xs:annotation>
          <xs:documentation>Moss Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHH">
        <xs:annotation>
          <xs:documentation>Netherhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHJ">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHK">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHL">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHM">
        <xs:annotation>
          <xs:documentation>Silloth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHN">
        <xs:annotation>
          <xs:documentation>Solway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHP">
        <xs:annotation>
          <xs:documentation>Stainburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHQ">
        <xs:annotation>
          <xs:documentation>Wampool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHR">
        <xs:annotation>
          <xs:documentation>Warnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHS">
        <xs:annotation>
          <xs:documentation>Waver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHT">
        <xs:annotation>
          <xs:documentation>Wharrels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UBHU">
        <xs:annotation>
          <xs:documentation>Wigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFP">
        <xs:annotation>
          <xs:documentation>Barrow Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFQ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFR">
        <xs:annotation>
          <xs:documentation>Dalton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFS">
        <xs:annotation>
          <xs:documentation>Dalton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFT">
        <xs:annotation>
          <xs:documentation>Hawcoat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFU">
        <xs:annotation>
          <xs:documentation>Hindpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFW">
        <xs:annotation>
          <xs:documentation>Newbarns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFX">
        <xs:annotation>
          <xs:documentation>Ormsgill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFY">
        <xs:annotation>
          <xs:documentation>Parkside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCFZ">
        <xs:annotation>
          <xs:documentation>Risedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCGA">
        <xs:annotation>
          <xs:documentation>Roosecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCGB">
        <xs:annotation>
          <xs:documentation>Walney North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UCGC">
        <xs:annotation>
          <xs:documentation>Walney South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGA">
        <xs:annotation>
          <xs:documentation>Belah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGB">
        <xs:annotation>
          <xs:documentation>Belle Vue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGC">
        <xs:annotation>
          <xs:documentation>Botcherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGD">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGE">
        <xs:annotation>
          <xs:documentation>Burgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGF">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGG">
        <xs:annotation>
          <xs:documentation>Currock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGH">
        <xs:annotation>
          <xs:documentation>Dalston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGJ">
        <xs:annotation>
          <xs:documentation>Denton Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGK">
        <xs:annotation>
          <xs:documentation>Great Corby and Geltsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGL">
        <xs:annotation>
          <xs:documentation>Harraby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGM">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGN">
        <xs:annotation>
          <xs:documentation>Irthing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGP">
        <xs:annotation>
          <xs:documentation>Longtown &amp; Rockcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGQ">
        <xs:annotation>
          <xs:documentation>Lyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGR">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGS">
        <xs:annotation>
          <xs:documentation>St Aidans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGT">
        <xs:annotation>
          <xs:documentation>Stanwix Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGU">
        <xs:annotation>
          <xs:documentation>Stanwix Urban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGW">
        <xs:annotation>
          <xs:documentation>Upperby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGX">
        <xs:annotation>
          <xs:documentation>Wetheral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UDGY">
        <xs:annotation>
          <xs:documentation>Yewdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGD">
        <xs:annotation>
          <xs:documentation>Arlecdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGE">
        <xs:annotation>
          <xs:documentation>Beckermet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGF">
        <xs:annotation>
          <xs:documentation>Bootle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGG">
        <xs:annotation>
          <xs:documentation>Bransty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGH">
        <xs:annotation>
          <xs:documentation>Cleator Moor North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGJ">
        <xs:annotation>
          <xs:documentation>Cleator Moor South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGK">
        <xs:annotation>
          <xs:documentation>Distington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGL">
        <xs:annotation>
          <xs:documentation>Egremont North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGM">
        <xs:annotation>
          <xs:documentation>Egremont South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGN">
        <xs:annotation>
          <xs:documentation>Ennerdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGP">
        <xs:annotation>
          <xs:documentation>Frizington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGQ">
        <xs:annotation>
          <xs:documentation>Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGR">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGS">
        <xs:annotation>
          <xs:documentation>Haverigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGT">
        <xs:annotation>
          <xs:documentation>Hensingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGU">
        <xs:annotation>
          <xs:documentation>Hillcrest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGW">
        <xs:annotation>
          <xs:documentation>Holborn Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGX">
        <xs:annotation>
          <xs:documentation>Kells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGY">
        <xs:annotation>
          <xs:documentation>Millom Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEGZ">
        <xs:annotation>
          <xs:documentation>Mirehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEHA">
        <xs:annotation>
          <xs:documentation>Moresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEHB">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEHC">
        <xs:annotation>
          <xs:documentation>St Bees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEHD">
        <xs:annotation>
          <xs:documentation>Sandwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UEHE">
        <xs:annotation>
          <xs:documentation>Seascale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGF">
        <xs:annotation>
          <xs:documentation>Alston Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGG">
        <xs:annotation>
          <xs:documentation>Appleby (Appleby)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGH">
        <xs:annotation>
          <xs:documentation>Appleby (Bongate)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGJ">
        <xs:annotation>
          <xs:documentation>Askham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGK">
        <xs:annotation>
          <xs:documentation>Brough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGL">
        <xs:annotation>
          <xs:documentation>Crosby Ravensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGM">
        <xs:annotation>
          <xs:documentation>Dacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGN">
        <xs:annotation>
          <xs:documentation>Eamont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGP">
        <xs:annotation>
          <xs:documentation>Greystoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGQ">
        <xs:annotation>
          <xs:documentation>Hartside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGR">
        <xs:annotation>
          <xs:documentation>Hesket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGS">
        <xs:annotation>
          <xs:documentation>Kirkby Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGT">
        <xs:annotation>
          <xs:documentation>Kirkby Thore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGU">
        <xs:annotation>
          <xs:documentation>Kirkoswald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGW">
        <xs:annotation>
          <xs:documentation>Langwathby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGX">
        <xs:annotation>
          <xs:documentation>Lazonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGY">
        <xs:annotation>
          <xs:documentation>Long Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFGZ">
        <xs:annotation>
          <xs:documentation>Morland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHA">
        <xs:annotation>
          <xs:documentation>Orton with Tebay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHB">
        <xs:annotation>
          <xs:documentation>Penrith Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHC">
        <xs:annotation>
          <xs:documentation>Penrith East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHD">
        <xs:annotation>
          <xs:documentation>Penrith North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHE">
        <xs:annotation>
          <xs:documentation>Penrith Pategill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHF">
        <xs:annotation>
          <xs:documentation>Penrith South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHG">
        <xs:annotation>
          <xs:documentation>Penrith West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHH">
        <xs:annotation>
          <xs:documentation>Ravenstonedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHJ">
        <xs:annotation>
          <xs:documentation>Shap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHK">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHL">
        <xs:annotation>
          <xs:documentation>Ullswater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UFHM">
        <xs:annotation>
          <xs:documentation>Warcop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHB">
        <xs:annotation>
          <xs:documentation>Arnside &amp; Beetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHC">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHD">
        <xs:annotation>
          <xs:documentation>Burneside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHE">
        <xs:annotation>
          <xs:documentation>Burton &amp; Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHF">
        <xs:annotation>
          <xs:documentation>Cartmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHG">
        <xs:annotation>
          <xs:documentation>Coniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHH">
        <xs:annotation>
          <xs:documentation>Crake Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHJ">
        <xs:annotation>
          <xs:documentation>Crooklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHK">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHL">
        <xs:annotation>
          <xs:documentation>Hawkshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHM">
        <xs:annotation>
          <xs:documentation>Holker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHN">
        <xs:annotation>
          <xs:documentation>Kendal Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHP">
        <xs:annotation>
          <xs:documentation>Kendal Far Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHQ">
        <xs:annotation>
          <xs:documentation>Kendal Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHR">
        <xs:annotation>
          <xs:documentation>Kendal Glebelands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHS">
        <xs:annotation>
          <xs:documentation>Kendal Heron Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHT">
        <xs:annotation>
          <xs:documentation>Kendal Highgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHU">
        <xs:annotation>
          <xs:documentation>Kendal Kirkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHW">
        <xs:annotation>
          <xs:documentation>Kendal Mintsfeet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHX">
        <xs:annotation>
          <xs:documentation>Kendal Nether</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHY">
        <xs:annotation>
          <xs:documentation>Kendal Oxenholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGHZ">
        <xs:annotation>
          <xs:documentation>Kendal Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJA">
        <xs:annotation>
          <xs:documentation>Kendal Stonecross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJB">
        <xs:annotation>
          <xs:documentation>Kendal Strickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJC">
        <xs:annotation>
          <xs:documentation>Kendal Underley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJD">
        <xs:annotation>
          <xs:documentation>Kirkby Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJE">
        <xs:annotation>
          <xs:documentation>Lakes Ambleside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJF">
        <xs:annotation>
          <xs:documentation>Lakes Grasmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJG">
        <xs:annotation>
          <xs:documentation>Levens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJH">
        <xs:annotation>
          <xs:documentation>Low Furness &amp; Swarthmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJJ">
        <xs:annotation>
          <xs:documentation>Lyth Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJK">
        <xs:annotation>
          <xs:documentation>Milnthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJL">
        <xs:annotation>
          <xs:documentation>Natland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJM">
        <xs:annotation>
          <xs:documentation>Sedbergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJN">
        <xs:annotation>
          <xs:documentation>Staveley-in-Cartmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJP">
        <xs:annotation>
          <xs:documentation>Staveley-in-Westmorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJQ">
        <xs:annotation>
          <xs:documentation>Ulverston Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJR">
        <xs:annotation>
          <xs:documentation>Ulverston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJS">
        <xs:annotation>
          <xs:documentation>Ulverston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJT">
        <xs:annotation>
          <xs:documentation>Ulverston South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJU">
        <xs:annotation>
          <xs:documentation>Ulverston Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJW">
        <xs:annotation>
          <xs:documentation>Ulverston West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJX">
        <xs:annotation>
          <xs:documentation>Whinfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJY">
        <xs:annotation>
          <xs:documentation>Windermere Applethwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGJZ">
        <xs:annotation>
          <xs:documentation>Windermere Bowness North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGKA">
        <xs:annotation>
          <xs:documentation>Windermere Bowness South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UGKB">
        <xs:annotation>
          <xs:documentation>Windermere Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGC">
        <xs:annotation>
          <xs:documentation>Alfreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGD">
        <xs:annotation>
          <xs:documentation>Alport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGE">
        <xs:annotation>
          <xs:documentation>Belper Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGF">
        <xs:annotation>
          <xs:documentation>Belper East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGG">
        <xs:annotation>
          <xs:documentation>Belper North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGH">
        <xs:annotation>
          <xs:documentation>Belper South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGJ">
        <xs:annotation>
          <xs:documentation>Codnor and Waingroves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGK">
        <xs:annotation>
          <xs:documentation>Crich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGL">
        <xs:annotation>
          <xs:documentation>Duffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGM">
        <xs:annotation>
          <xs:documentation>Heage and Ambergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGN">
        <xs:annotation>
          <xs:documentation>Heanor and Loscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGP">
        <xs:annotation>
          <xs:documentation>Heanor East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGQ">
        <xs:annotation>
          <xs:documentation>Heanor West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGR">
        <xs:annotation>
          <xs:documentation>Ironville and Riddings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGS">
        <xs:annotation>
          <xs:documentation>Kilburn, Denby and Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGT">
        <xs:annotation>
          <xs:documentation>Langley Mill and Aldercar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGU">
        <xs:annotation>
          <xs:documentation>Ripley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGW">
        <xs:annotation>
          <xs:documentation>Ripley and Marehay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGX">
        <xs:annotation>
          <xs:documentation>Shipley Park, Horsley and Horsley Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGY">
        <xs:annotation>
          <xs:documentation>Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBGZ">
        <xs:annotation>
          <xs:documentation>South West Parishes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBHA">
        <xs:annotation>
          <xs:documentation>Swanwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UBHB">
        <xs:annotation>
          <xs:documentation>Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGB">
        <xs:annotation>
          <xs:documentation>Barlborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGC">
        <xs:annotation>
          <xs:documentation>Blackwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGD">
        <xs:annotation>
          <xs:documentation>Bolsover North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGE">
        <xs:annotation>
          <xs:documentation>Bolsover South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGF">
        <xs:annotation>
          <xs:documentation>Bolsover West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGG">
        <xs:annotation>
          <xs:documentation>Clowne North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGH">
        <xs:annotation>
          <xs:documentation>Clowne South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGJ">
        <xs:annotation>
          <xs:documentation>Elmton-with-Creswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGK">
        <xs:annotation>
          <xs:documentation>Pinxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGL">
        <xs:annotation>
          <xs:documentation>Pleasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGM">
        <xs:annotation>
          <xs:documentation>Scarcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGN">
        <xs:annotation>
          <xs:documentation>Shirebrook East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGP">
        <xs:annotation>
          <xs:documentation>Shirebrook Langwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGQ">
        <xs:annotation>
          <xs:documentation>Shirebrook North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGR">
        <xs:annotation>
          <xs:documentation>Shirebrook South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGS">
        <xs:annotation>
          <xs:documentation>Shirebrook South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGT">
        <xs:annotation>
          <xs:documentation>South Normanton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGU">
        <xs:annotation>
          <xs:documentation>South Normanton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGW">
        <xs:annotation>
          <xs:documentation>Tibshelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UCGX">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDFX">
        <xs:annotation>
          <xs:documentation>Barrow Hill and New Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDFY">
        <xs:annotation>
          <xs:documentation>Brimington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDFZ">
        <xs:annotation>
          <xs:documentation>Brimington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGA">
        <xs:annotation>
          <xs:documentation>Brockwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGB">
        <xs:annotation>
          <xs:documentation>Dunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGC">
        <xs:annotation>
          <xs:documentation>Hasland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGD">
        <xs:annotation>
          <xs:documentation>Hollingwood and Inkersall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGE">
        <xs:annotation>
          <xs:documentation>Holmebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGF">
        <xs:annotation>
          <xs:documentation>Linacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGG">
        <xs:annotation>
          <xs:documentation>Loundsley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGH">
        <xs:annotation>
          <xs:documentation>Lowgates and Woodthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGJ">
        <xs:annotation>
          <xs:documentation>Middlecroft and Poolsbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGK">
        <xs:annotation>
          <xs:documentation>Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGL">
        <xs:annotation>
          <xs:documentation>Old Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGM">
        <xs:annotation>
          <xs:documentation>Rother</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGN">
        <xs:annotation>
          <xs:documentation>St Helen's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGP">
        <xs:annotation>
          <xs:documentation>St Leonard's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGQ">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UDGR">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGC">
        <xs:annotation>
          <xs:documentation>Ashbourne North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGD">
        <xs:annotation>
          <xs:documentation>Ashbourne South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGE">
        <xs:annotation>
          <xs:documentation>Bakewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGF">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGG">
        <xs:annotation>
          <xs:documentation>Brailsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGH">
        <xs:annotation>
          <xs:documentation>Calver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGJ">
        <xs:annotation>
          <xs:documentation>Carsington Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGK">
        <xs:annotation>
          <xs:documentation>Chatsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGL">
        <xs:annotation>
          <xs:documentation>Clifton and Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGM">
        <xs:annotation>
          <xs:documentation>Darley Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGN">
        <xs:annotation>
          <xs:documentation>Dovedale and Parwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGP">
        <xs:annotation>
          <xs:documentation>Doveridge and Sudbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGQ">
        <xs:annotation>
          <xs:documentation>Hartington and Taddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGR">
        <xs:annotation>
          <xs:documentation>Hathersage and Eyam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGS">
        <xs:annotation>
          <xs:documentation>Hulland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGT">
        <xs:annotation>
          <xs:documentation>Lathkill and Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGU">
        <xs:annotation>
          <xs:documentation>Litton and Longstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGW">
        <xs:annotation>
          <xs:documentation>Masson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGX">
        <xs:annotation>
          <xs:documentation>Matlock All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGY">
        <xs:annotation>
          <xs:documentation>Matlock St Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFGZ">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFHA">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFHB">
        <xs:annotation>
          <xs:documentation>Tideswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFHC">
        <xs:annotation>
          <xs:documentation>Winster and South Darley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UFHD">
        <xs:annotation>
          <xs:documentation>Wirksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGC">
        <xs:annotation>
          <xs:documentation>Abbotsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGD">
        <xs:annotation>
          <xs:documentation>Breaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGE">
        <xs:annotation>
          <xs:documentation>Cotmanhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGF">
        <xs:annotation>
          <xs:documentation>Derby Road East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGG">
        <xs:annotation>
          <xs:documentation>Derby Road West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGH">
        <xs:annotation>
          <xs:documentation>Draycott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGJ">
        <xs:annotation>
          <xs:documentation>Hallam Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGK">
        <xs:annotation>
          <xs:documentation>Ilkeston Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGL">
        <xs:annotation>
          <xs:documentation>Ilkeston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGM">
        <xs:annotation>
          <xs:documentation>Kirk Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGN">
        <xs:annotation>
          <xs:documentation>Little Eaton and Breadsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGP">
        <xs:annotation>
          <xs:documentation>Little Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGQ">
        <xs:annotation>
          <xs:documentation>Long Eaton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGR">
        <xs:annotation>
          <xs:documentation>Nottingham Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGS">
        <xs:annotation>
          <xs:documentation>Ockbrook And Borrowash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGT">
        <xs:annotation>
          <xs:documentation>Old Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGU">
        <xs:annotation>
          <xs:documentation>Sandiacre North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGW">
        <xs:annotation>
          <xs:documentation>Sandiacre South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGX">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGY">
        <xs:annotation>
          <xs:documentation>Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGGZ">
        <xs:annotation>
          <xs:documentation>West Hallam and Dale Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UGHA">
        <xs:annotation>
          <xs:documentation>Wilsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGC">
        <xs:annotation>
          <xs:documentation>Barms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGD">
        <xs:annotation>
          <xs:documentation>Blackbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGE">
        <xs:annotation>
          <xs:documentation>Burbage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGF">
        <xs:annotation>
          <xs:documentation>Buxton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGG">
        <xs:annotation>
          <xs:documentation>Chapel East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGH">
        <xs:annotation>
          <xs:documentation>Chapel West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGJ">
        <xs:annotation>
          <xs:documentation>Corbar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGK">
        <xs:annotation>
          <xs:documentation>Cote Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGL">
        <xs:annotation>
          <xs:documentation>Dinting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGM">
        <xs:annotation>
          <xs:documentation>Gamesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGN">
        <xs:annotation>
          <xs:documentation>Hadfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGP">
        <xs:annotation>
          <xs:documentation>Hadfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGQ">
        <xs:annotation>
          <xs:documentation>Hayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGR">
        <xs:annotation>
          <xs:documentation>Hope Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGS">
        <xs:annotation>
          <xs:documentation>Howard Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGT">
        <xs:annotation>
          <xs:documentation>Limestone Peak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGU">
        <xs:annotation>
          <xs:documentation>New Mills East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGW">
        <xs:annotation>
          <xs:documentation>New Mills West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGX">
        <xs:annotation>
          <xs:documentation>Old Glossop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGY">
        <xs:annotation>
          <xs:documentation>Padfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHGZ">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHA">
        <xs:annotation>
          <xs:documentation>Sett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHB">
        <xs:annotation>
          <xs:documentation>Simmondley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHC">
        <xs:annotation>
          <xs:documentation>Stone Bench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHD">
        <xs:annotation>
          <xs:documentation>Temple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHE">
        <xs:annotation>
          <xs:documentation>Tintwistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHF">
        <xs:annotation>
          <xs:documentation>Whaley Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UHHG">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGD">
        <xs:annotation>
          <xs:documentation>Ashover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGE">
        <xs:annotation>
          <xs:documentation>Barlow and Holmesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGF">
        <xs:annotation>
          <xs:documentation>Brampton and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGG">
        <xs:annotation>
          <xs:documentation>Clay Cross North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGH">
        <xs:annotation>
          <xs:documentation>Clay Cross South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGJ">
        <xs:annotation>
          <xs:documentation>Coal Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGK">
        <xs:annotation>
          <xs:documentation>Dronfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGL">
        <xs:annotation>
          <xs:documentation>Dronfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGM">
        <xs:annotation>
          <xs:documentation>Dronfield Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGN">
        <xs:annotation>
          <xs:documentation>Eckington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGP">
        <xs:annotation>
          <xs:documentation>Eckington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGQ">
        <xs:annotation>
          <xs:documentation>Gosforth Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGR">
        <xs:annotation>
          <xs:documentation>Grassmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGS">
        <xs:annotation>
          <xs:documentation>Holmewood and Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGT">
        <xs:annotation>
          <xs:documentation>Killamarsh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGU">
        <xs:annotation>
          <xs:documentation>Killamarsh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGW">
        <xs:annotation>
          <xs:documentation>North Wingfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGX">
        <xs:annotation>
          <xs:documentation>Pilsley and Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGY">
        <xs:annotation>
          <xs:documentation>Renishaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJGZ">
        <xs:annotation>
          <xs:documentation>Ridgeway and Marsh Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJHA">
        <xs:annotation>
          <xs:documentation>Shirland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJHB">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJHC">
        <xs:annotation>
          <xs:documentation>Tupton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJHD">
        <xs:annotation>
          <xs:documentation>Unstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJHE">
        <xs:annotation>
          <xs:documentation>Wingerworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKFW">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKFX">
        <xs:annotation>
          <xs:documentation>Church Gresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKFY">
        <xs:annotation>
          <xs:documentation>Etwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKFZ">
        <xs:annotation>
          <xs:documentation>Hartshorne and Ticknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGA">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGB">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGC">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGD">
        <xs:annotation>
          <xs:documentation>Melbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGE">
        <xs:annotation>
          <xs:documentation>Midway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGF">
        <xs:annotation>
          <xs:documentation>Newhall and Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGG">
        <xs:annotation>
          <xs:documentation>North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGH">
        <xs:annotation>
          <xs:documentation>Repton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGJ">
        <xs:annotation>
          <xs:documentation>Seales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGK">
        <xs:annotation>
          <xs:documentation>Stenson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGL">
        <xs:annotation>
          <xs:documentation>Swadlincote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGM">
        <xs:annotation>
          <xs:documentation>Willington and Findern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UKGN">
        <xs:annotation>
          <xs:documentation>Woodville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGN">
        <xs:annotation>
          <xs:documentation>Axminster Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGP">
        <xs:annotation>
          <xs:documentation>Axminster Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGQ">
        <xs:annotation>
          <xs:documentation>Beer and Branscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGR">
        <xs:annotation>
          <xs:documentation>Broadclyst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGS">
        <xs:annotation>
          <xs:documentation>Budleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGT">
        <xs:annotation>
          <xs:documentation>Clyst Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGU">
        <xs:annotation>
          <xs:documentation>Coly Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGW">
        <xs:annotation>
          <xs:documentation>Dunkeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGX">
        <xs:annotation>
          <xs:documentation>Exe Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGY">
        <xs:annotation>
          <xs:documentation>Exmouth Brixington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBGZ">
        <xs:annotation>
          <xs:documentation>Exmouth Halsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHA">
        <xs:annotation>
          <xs:documentation>Exmouth Littleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHB">
        <xs:annotation>
          <xs:documentation>Exmouth Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHC">
        <xs:annotation>
          <xs:documentation>Exmouth Withycombe Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHD">
        <xs:annotation>
          <xs:documentation>Feniton and Buckerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHE">
        <xs:annotation>
          <xs:documentation>Honiton St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHF">
        <xs:annotation>
          <xs:documentation>Honiton St Paul's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHG">
        <xs:annotation>
          <xs:documentation>Newbridges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHH">
        <xs:annotation>
          <xs:documentation>Newton Poppleford and Harpford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHJ">
        <xs:annotation>
          <xs:documentation>Otterhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHK">
        <xs:annotation>
          <xs:documentation>Ottery St Mary Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHL">
        <xs:annotation>
          <xs:documentation>Ottery St Mary Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHM">
        <xs:annotation>
          <xs:documentation>Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHN">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHP">
        <xs:annotation>
          <xs:documentation>Sidmouth Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHQ">
        <xs:annotation>
          <xs:documentation>Sidmouth Sidford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHR">
        <xs:annotation>
          <xs:documentation>Sidmouth Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHS">
        <xs:annotation>
          <xs:documentation>Tale Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHT">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHU">
        <xs:annotation>
          <xs:documentation>Whimple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHW">
        <xs:annotation>
          <xs:documentation>Woodbury and Lympstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UBHX">
        <xs:annotation>
          <xs:documentation>Yarty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCFU">
        <xs:annotation>
          <xs:documentation>Alphington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCFW">
        <xs:annotation>
          <xs:documentation>Cowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCFX">
        <xs:annotation>
          <xs:documentation>Duryard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCFY">
        <xs:annotation>
          <xs:documentation>Exwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCFZ">
        <xs:annotation>
          <xs:documentation>Heavitree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGA">
        <xs:annotation>
          <xs:documentation>Mincinglake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGB">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGC">
        <xs:annotation>
          <xs:documentation>Pennsylvania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGD">
        <xs:annotation>
          <xs:documentation>Pinhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGE">
        <xs:annotation>
          <xs:documentation>Polsloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGF">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGG">
        <xs:annotation>
          <xs:documentation>St David's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGH">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGJ">
        <xs:annotation>
          <xs:documentation>St Leonard's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGK">
        <xs:annotation>
          <xs:documentation>St Loyes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGL">
        <xs:annotation>
          <xs:documentation>St Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGM">
        <xs:annotation>
          <xs:documentation>Topsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UCGN">
        <xs:annotation>
          <xs:documentation>Whipton &amp; Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGF">
        <xs:annotation>
          <xs:documentation>Boniface</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGG">
        <xs:annotation>
          <xs:documentation>Bradninch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGH">
        <xs:annotation>
          <xs:documentation>Cadbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGJ">
        <xs:annotation>
          <xs:documentation>Canonsleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGK">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGL">
        <xs:annotation>
          <xs:documentation>Clare and Shuttern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGM">
        <xs:annotation>
          <xs:documentation>Cranmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGN">
        <xs:annotation>
          <xs:documentation>Cullompton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGP">
        <xs:annotation>
          <xs:documentation>Cullompton Outer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGQ">
        <xs:annotation>
          <xs:documentation>Cullompton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGR">
        <xs:annotation>
          <xs:documentation>Halberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGS">
        <xs:annotation>
          <xs:documentation>Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGT">
        <xs:annotation>
          <xs:documentation>Lower Culm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGU">
        <xs:annotation>
          <xs:documentation>Lowman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGW">
        <xs:annotation>
          <xs:documentation>Newbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGX">
        <xs:annotation>
          <xs:documentation>Sandford and Creedy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGY">
        <xs:annotation>
          <xs:documentation>Silverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDGZ">
        <xs:annotation>
          <xs:documentation>Taw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHA">
        <xs:annotation>
          <xs:documentation>Taw Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHB">
        <xs:annotation>
          <xs:documentation>Upper Culm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHC">
        <xs:annotation>
          <xs:documentation>Upper Yeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHD">
        <xs:annotation>
          <xs:documentation>Way</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHE">
        <xs:annotation>
          <xs:documentation>Westexe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UDHF">
        <xs:annotation>
          <xs:documentation>Yeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGH">
        <xs:annotation>
          <xs:documentation>Bickington and Roundswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGJ">
        <xs:annotation>
          <xs:documentation>Bishop's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGK">
        <xs:annotation>
          <xs:documentation>Bratton Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGL">
        <xs:annotation>
          <xs:documentation>Braunton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGM">
        <xs:annotation>
          <xs:documentation>Braunton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGN">
        <xs:annotation>
          <xs:documentation>Central Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGP">
        <xs:annotation>
          <xs:documentation>Chittlehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGQ">
        <xs:annotation>
          <xs:documentation>Chulmleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGR">
        <xs:annotation>
          <xs:documentation>Combe Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGS">
        <xs:annotation>
          <xs:documentation>Forches and Whiddon Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGT">
        <xs:annotation>
          <xs:documentation>Fremington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGU">
        <xs:annotation>
          <xs:documentation>Georgeham and Mortehoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGW">
        <xs:annotation>
          <xs:documentation>Heanton Punchardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGX">
        <xs:annotation>
          <xs:documentation>Ilfracombe Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGY">
        <xs:annotation>
          <xs:documentation>Ilfracombe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEGZ">
        <xs:annotation>
          <xs:documentation>Ilfracombe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHA">
        <xs:annotation>
          <xs:documentation>Instow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHB">
        <xs:annotation>
          <xs:documentation>Landkey, Swimbridge and Taw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHC">
        <xs:annotation>
          <xs:documentation>Longbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHD">
        <xs:annotation>
          <xs:documentation>Lynton and Lynmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHE">
        <xs:annotation>
          <xs:documentation>Marwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHF">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHG">
        <xs:annotation>
          <xs:documentation>North Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHH">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHJ">
        <xs:annotation>
          <xs:documentation>South Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHK">
        <xs:annotation>
          <xs:documentation>Witheridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UEHL">
        <xs:annotation>
          <xs:documentation>Yeo Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGM">
        <xs:annotation>
          <xs:documentation>Allington and Loddiswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGN">
        <xs:annotation>
          <xs:documentation>Avon and Harbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGP">
        <xs:annotation>
          <xs:documentation>Bickleigh and Shaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGQ">
        <xs:annotation>
          <xs:documentation>Charterlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGR">
        <xs:annotation>
          <xs:documentation>Cornwood and Sparkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGS">
        <xs:annotation>
          <xs:documentation>Dartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGT">
        <xs:annotation>
          <xs:documentation>Dartmouth and Kingswear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGU">
        <xs:annotation>
          <xs:documentation>Dartmouth Townstal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGW">
        <xs:annotation>
          <xs:documentation>East Dart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGX">
        <xs:annotation>
          <xs:documentation>Eastmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGY">
        <xs:annotation>
          <xs:documentation>Erme Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGGZ">
        <xs:annotation>
          <xs:documentation>Ivybridge Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHA">
        <xs:annotation>
          <xs:documentation>Ivybridge Filham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHB">
        <xs:annotation>
          <xs:documentation>Ivybridge Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHC">
        <xs:annotation>
          <xs:documentation>Kingsbridge East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHD">
        <xs:annotation>
          <xs:documentation>Kingsbridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHE">
        <xs:annotation>
          <xs:documentation>Marldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHF">
        <xs:annotation>
          <xs:documentation>Newton and Noss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHG">
        <xs:annotation>
          <xs:documentation>Salcombe and Malborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHH">
        <xs:annotation>
          <xs:documentation>Saltstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHJ">
        <xs:annotation>
          <xs:documentation>Skerries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHK">
        <xs:annotation>
          <xs:documentation>South Brent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHL">
        <xs:annotation>
          <xs:documentation>Stokenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHM">
        <xs:annotation>
          <xs:documentation>Thurlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHN">
        <xs:annotation>
          <xs:documentation>Totnes Bridgetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHP">
        <xs:annotation>
          <xs:documentation>Totnes Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHQ">
        <xs:annotation>
          <xs:documentation>Wembury and Brixton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHR">
        <xs:annotation>
          <xs:documentation>West Dart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHS">
        <xs:annotation>
          <xs:documentation>Westville and Alvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UGHT">
        <xs:annotation>
          <xs:documentation>Yealmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGL">
        <xs:annotation>
          <xs:documentation>Ambrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGM">
        <xs:annotation>
          <xs:documentation>Ashburton and Buckfastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGN">
        <xs:annotation>
          <xs:documentation>Bishopsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGP">
        <xs:annotation>
          <xs:documentation>Bovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGQ">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGR">
        <xs:annotation>
          <xs:documentation>Buckland and Milber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGS">
        <xs:annotation>
          <xs:documentation>Bushell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGT">
        <xs:annotation>
          <xs:documentation>Chudleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGU">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGW">
        <xs:annotation>
          <xs:documentation>Dawlish Central and North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGX">
        <xs:annotation>
          <xs:documentation>Dawlish South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGY">
        <xs:annotation>
          <xs:documentation>Haytor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHGZ">
        <xs:annotation>
          <xs:documentation>Ipplepen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHA">
        <xs:annotation>
          <xs:documentation>Kenn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHB">
        <xs:annotation>
          <xs:documentation>Kenton with Starcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHC">
        <xs:annotation>
          <xs:documentation>Kerswell-with-Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHD">
        <xs:annotation>
          <xs:documentation>Kingsteignton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHE">
        <xs:annotation>
          <xs:documentation>Kingsteignton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHF">
        <xs:annotation>
          <xs:documentation>Moorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHG">
        <xs:annotation>
          <xs:documentation>Shaldon and Stokeinteignhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHH">
        <xs:annotation>
          <xs:documentation>Teignbridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHJ">
        <xs:annotation>
          <xs:documentation>Teignmouth Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHK">
        <xs:annotation>
          <xs:documentation>Teignmouth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHL">
        <xs:annotation>
          <xs:documentation>Teignmouth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UHHM">
        <xs:annotation>
          <xs:documentation>Teign Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGE">
        <xs:annotation>
          <xs:documentation>Appledore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGF">
        <xs:annotation>
          <xs:documentation>Bideford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGG">
        <xs:annotation>
          <xs:documentation>Bideford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGH">
        <xs:annotation>
          <xs:documentation>Bideford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGJ">
        <xs:annotation>
          <xs:documentation>Broadheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGK">
        <xs:annotation>
          <xs:documentation>Clinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGL">
        <xs:annotation>
          <xs:documentation>Clovelly Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGM">
        <xs:annotation>
          <xs:documentation>Coham Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGN">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGP">
        <xs:annotation>
          <xs:documentation>Hartland and Bradworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGQ">
        <xs:annotation>
          <xs:documentation>Holsworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGR">
        <xs:annotation>
          <xs:documentation>Kenwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGS">
        <xs:annotation>
          <xs:documentation>Monkleigh and Littleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGT">
        <xs:annotation>
          <xs:documentation>Northam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGU">
        <xs:annotation>
          <xs:documentation>Orchard Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGW">
        <xs:annotation>
          <xs:documentation>Shebbear and Langtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGX">
        <xs:annotation>
          <xs:documentation>Tamarside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGY">
        <xs:annotation>
          <xs:documentation>Three Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKGZ">
        <xs:annotation>
          <xs:documentation>Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKHA">
        <xs:annotation>
          <xs:documentation>Two Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKHB">
        <xs:annotation>
          <xs:documentation>Waldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKHC">
        <xs:annotation>
          <xs:documentation>Westward Ho!</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UKHD">
        <xs:annotation>
          <xs:documentation>Winkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULFY">
        <xs:annotation>
          <xs:documentation>Bere Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULFZ">
        <xs:annotation>
          <xs:documentation>Bridestowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGA">
        <xs:annotation>
          <xs:documentation>Buckland Monachorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGB">
        <xs:annotation>
          <xs:documentation>Burrator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGC">
        <xs:annotation>
          <xs:documentation>Chagford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGD">
        <xs:annotation>
          <xs:documentation>Drewsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGE">
        <xs:annotation>
          <xs:documentation>Exbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGF">
        <xs:annotation>
          <xs:documentation>Hatherleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGG">
        <xs:annotation>
          <xs:documentation>Lew Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGH">
        <xs:annotation>
          <xs:documentation>Lydford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGJ">
        <xs:annotation>
          <xs:documentation>Mary Tavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGK">
        <xs:annotation>
          <xs:documentation>Milton Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGL">
        <xs:annotation>
          <xs:documentation>North Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGM">
        <xs:annotation>
          <xs:documentation>Okehampton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGN">
        <xs:annotation>
          <xs:documentation>Okehampton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGP">
        <xs:annotation>
          <xs:documentation>Tamarside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGQ">
        <xs:annotation>
          <xs:documentation>Tavistock North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGR">
        <xs:annotation>
          <xs:documentation>Tavistock South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGS">
        <xs:annotation>
          <xs:documentation>Tavistock South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGT">
        <xs:annotation>
          <xs:documentation>South Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGU">
        <xs:annotation>
          <xs:documentation>Thrushel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18ULGW">
        <xs:annotation>
          <xs:documentation>Walkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFL">
        <xs:annotation>
          <xs:documentation>Burton and Winkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFM">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFN">
        <xs:annotation>
          <xs:documentation>Highcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFP">
        <xs:annotation>
          <xs:documentation>Jumpers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFQ">
        <xs:annotation>
          <xs:documentation>Mudeford and Friars Cliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFR">
        <xs:annotation>
          <xs:documentation>North Highcliffe and Walkford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFS">
        <xs:annotation>
          <xs:documentation>Portfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFT">
        <xs:annotation>
          <xs:documentation>Purewell and Stanpit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFU">
        <xs:annotation>
          <xs:documentation>St Catherine's and Hurn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFW">
        <xs:annotation>
          <xs:documentation>Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UCFX">
        <xs:annotation>
          <xs:documentation>West Highcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGA">
        <xs:annotation>
          <xs:documentation>Alderholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGB">
        <xs:annotation>
          <xs:documentation>Ameysford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGC">
        <xs:annotation>
          <xs:documentation>Colehill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGD">
        <xs:annotation>
          <xs:documentation>Colehill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGE">
        <xs:annotation>
          <xs:documentation>Corfe Mullen Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGF">
        <xs:annotation>
          <xs:documentation>Corfe Mullen North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGG">
        <xs:annotation>
          <xs:documentation>Corfe Mullen South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGH">
        <xs:annotation>
          <xs:documentation>Crane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGJ">
        <xs:annotation>
          <xs:documentation>Ferndown Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGK">
        <xs:annotation>
          <xs:documentation>Ferndown Links</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGL">
        <xs:annotation>
          <xs:documentation>Handley Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGM">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGN">
        <xs:annotation>
          <xs:documentation>Longham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGP">
        <xs:annotation>
          <xs:documentation>Parley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGQ">
        <xs:annotation>
          <xs:documentation>St Leonards and St Ives East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGR">
        <xs:annotation>
          <xs:documentation>St Leonards and St Ives West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGS">
        <xs:annotation>
          <xs:documentation>Stapehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGT">
        <xs:annotation>
          <xs:documentation>Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGU">
        <xs:annotation>
          <xs:documentation>Three Cross and Potterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGW">
        <xs:annotation>
          <xs:documentation>Verwood Dewlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGX">
        <xs:annotation>
          <xs:documentation>Verwood Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGY">
        <xs:annotation>
          <xs:documentation>Verwood Stephen's Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDGZ">
        <xs:annotation>
          <xs:documentation>West Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UDHA">
        <xs:annotation>
          <xs:documentation>Wimborne Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGE">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGF">
        <xs:annotation>
          <xs:documentation>Blackmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGG">
        <xs:annotation>
          <xs:documentation>Blandford Damory Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGH">
        <xs:annotation>
          <xs:documentation>Blandford Hilltop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGJ">
        <xs:annotation>
          <xs:documentation>Blandford Langton St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGK">
        <xs:annotation>
          <xs:documentation>Blandford Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGL">
        <xs:annotation>
          <xs:documentation>Blandford Station</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGM">
        <xs:annotation>
          <xs:documentation>Bourton and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGN">
        <xs:annotation>
          <xs:documentation>Bulbarrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGP">
        <xs:annotation>
          <xs:documentation>Cranborne Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGQ">
        <xs:annotation>
          <xs:documentation>Gillingham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGR">
        <xs:annotation>
          <xs:documentation>Hill Forts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGS">
        <xs:annotation>
          <xs:documentation>Lodbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGT">
        <xs:annotation>
          <xs:documentation>Lydden Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGU">
        <xs:annotation>
          <xs:documentation>Marnhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGW">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGX">
        <xs:annotation>
          <xs:documentation>Motcombe and Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGY">
        <xs:annotation>
          <xs:documentation>Portman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEGZ">
        <xs:annotation>
          <xs:documentation>Riversdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHA">
        <xs:annotation>
          <xs:documentation>Shaftesbury Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHB">
        <xs:annotation>
          <xs:documentation>Shaftesbury Christy's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHC">
        <xs:annotation>
          <xs:documentation>Shaftesbury Grosvenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHD">
        <xs:annotation>
          <xs:documentation>Shaftesbury Underhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHE">
        <xs:annotation>
          <xs:documentation>Stour Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHF">
        <xs:annotation>
          <xs:documentation>The Beacon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHG">
        <xs:annotation>
          <xs:documentation>The Lower Tarrants</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHH">
        <xs:annotation>
          <xs:documentation>The Stours</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UEHJ">
        <xs:annotation>
          <xs:documentation>Wyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFN">
        <xs:annotation>
          <xs:documentation>Bere Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFP">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFQ">
        <xs:annotation>
          <xs:documentation>Creech Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFR">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFS">
        <xs:annotation>
          <xs:documentation>Lytchett Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFT">
        <xs:annotation>
          <xs:documentation>Lytchett Minster and Upton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFU">
        <xs:annotation>
          <xs:documentation>Lytchett Minster and Upton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFW">
        <xs:annotation>
          <xs:documentation>St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFX">
        <xs:annotation>
          <xs:documentation>Swanage North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFY">
        <xs:annotation>
          <xs:documentation>Swanage South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGFZ">
        <xs:annotation>
          <xs:documentation>Wareham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGGA">
        <xs:annotation>
          <xs:documentation>West Purbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGGB">
        <xs:annotation>
          <xs:documentation>Winfrith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UGGC">
        <xs:annotation>
          <xs:documentation>Wool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGR">
        <xs:annotation>
          <xs:documentation>Beaminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGS">
        <xs:annotation>
          <xs:documentation>Bradford Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGT">
        <xs:annotation>
          <xs:documentation>Bradpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGU">
        <xs:annotation>
          <xs:documentation>Bridport North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGW">
        <xs:annotation>
          <xs:documentation>Bridport South and Bothenhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGX">
        <xs:annotation>
          <xs:documentation>Broadmayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGY">
        <xs:annotation>
          <xs:documentation>Broadwindsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHGZ">
        <xs:annotation>
          <xs:documentation>Burton Bradstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHA">
        <xs:annotation>
          <xs:documentation>Cam Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHB">
        <xs:annotation>
          <xs:documentation>Charminster and Cerne Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHC">
        <xs:annotation>
          <xs:documentation>Charmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHD">
        <xs:annotation>
          <xs:documentation>Chesil Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHE">
        <xs:annotation>
          <xs:documentation>Chickerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHF">
        <xs:annotation>
          <xs:documentation>Chideock and Symondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHG">
        <xs:annotation>
          <xs:documentation>Dorchester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHH">
        <xs:annotation>
          <xs:documentation>Dorchester North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHJ">
        <xs:annotation>
          <xs:documentation>Dorchester South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHK">
        <xs:annotation>
          <xs:documentation>Dorchester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHL">
        <xs:annotation>
          <xs:documentation>Frome Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHM">
        <xs:annotation>
          <xs:documentation>Halstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHN">
        <xs:annotation>
          <xs:documentation>Loders</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHP">
        <xs:annotation>
          <xs:documentation>Lyme Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHQ">
        <xs:annotation>
          <xs:documentation>Maiden Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHR">
        <xs:annotation>
          <xs:documentation>Marshwood Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHS">
        <xs:annotation>
          <xs:documentation>Netherbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHT">
        <xs:annotation>
          <xs:documentation>Owermoigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHU">
        <xs:annotation>
          <xs:documentation>Piddle Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHW">
        <xs:annotation>
          <xs:documentation>Puddletown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHX">
        <xs:annotation>
          <xs:documentation>Queen Thorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHY">
        <xs:annotation>
          <xs:documentation>Sherborne East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHHZ">
        <xs:annotation>
          <xs:documentation>Sherborne West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHJA">
        <xs:annotation>
          <xs:documentation>Winterborne St Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UHJB">
        <xs:annotation>
          <xs:documentation>Yetminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFQ">
        <xs:annotation>
          <xs:documentation>Littlemoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFR">
        <xs:annotation>
          <xs:documentation>Melcombe Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFS">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFT">
        <xs:annotation>
          <xs:documentation>Radipole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFU">
        <xs:annotation>
          <xs:documentation>Tophill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFW">
        <xs:annotation>
          <xs:documentation>Tophill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFX">
        <xs:annotation>
          <xs:documentation>Underhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFY">
        <xs:annotation>
          <xs:documentation>Upwey and Broadwey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJFZ">
        <xs:annotation>
          <xs:documentation>Westham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGA">
        <xs:annotation>
          <xs:documentation>Westham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGB">
        <xs:annotation>
          <xs:documentation>Westham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGC">
        <xs:annotation>
          <xs:documentation>Wey Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGD">
        <xs:annotation>
          <xs:documentation>Weymouth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGE">
        <xs:annotation>
          <xs:documentation>Weymouth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJGF">
        <xs:annotation>
          <xs:documentation>Wyke Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFT">
        <xs:annotation>
          <xs:documentation>Bournmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFU">
        <xs:annotation>
          <xs:documentation>Chester Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFW">
        <xs:annotation>
          <xs:documentation>Chester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFX">
        <xs:annotation>
          <xs:documentation>Chester North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFY">
        <xs:annotation>
          <xs:documentation>Chester South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBFZ">
        <xs:annotation>
          <xs:documentation>Chester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGA">
        <xs:annotation>
          <xs:documentation>Edmondsley and Waldridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGB">
        <xs:annotation>
          <xs:documentation>Grange Villa and West Pelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGC">
        <xs:annotation>
          <xs:documentation>Kimblesworth and Plawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGD">
        <xs:annotation>
          <xs:documentation>Lumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGE">
        <xs:annotation>
          <xs:documentation>North Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGF">
        <xs:annotation>
          <xs:documentation>Ouston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGG">
        <xs:annotation>
          <xs:documentation>Pelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGH">
        <xs:annotation>
          <xs:documentation>Pelton Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGJ">
        <xs:annotation>
          <xs:documentation>Sacriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UBGK">
        <xs:annotation>
          <xs:documentation>Urpeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGA">
        <xs:annotation>
          <xs:documentation>Annfield Plain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGB">
        <xs:annotation>
          <xs:documentation>Benfieldside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGC">
        <xs:annotation>
          <xs:documentation>Blackhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGD">
        <xs:annotation>
          <xs:documentation>Burnhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGE">
        <xs:annotation>
          <xs:documentation>Burnopfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGF">
        <xs:annotation>
          <xs:documentation>Castleside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGG">
        <xs:annotation>
          <xs:documentation>Catchgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGH">
        <xs:annotation>
          <xs:documentation>Consett East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGJ">
        <xs:annotation>
          <xs:documentation>Consett North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGK">
        <xs:annotation>
          <xs:documentation>Consett South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGL">
        <xs:annotation>
          <xs:documentation>Cornsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGM">
        <xs:annotation>
          <xs:documentation>Craghead and South Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGN">
        <xs:annotation>
          <xs:documentation>Delves Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGP">
        <xs:annotation>
          <xs:documentation>Dipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGQ">
        <xs:annotation>
          <xs:documentation>Ebchester and Medomsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGR">
        <xs:annotation>
          <xs:documentation>Esh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGS">
        <xs:annotation>
          <xs:documentation>Havannah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGT">
        <xs:annotation>
          <xs:documentation>Lanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGU">
        <xs:annotation>
          <xs:documentation>Leadgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGW">
        <xs:annotation>
          <xs:documentation>South Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGX">
        <xs:annotation>
          <xs:documentation>Stanley Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UDGY">
        <xs:annotation>
          <xs:documentation>Tanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGB">
        <xs:annotation>
          <xs:documentation>Bearpark and Witton Gilbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGC">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGD">
        <xs:annotation>
          <xs:documentation>Brancepeth, Langley Moor and Meadowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGE">
        <xs:annotation>
          <xs:documentation>Brandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGF">
        <xs:annotation>
          <xs:documentation>Carrville and Gilesgate Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGG">
        <xs:annotation>
          <xs:documentation>Cassop-cum-Quarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGH">
        <xs:annotation>
          <xs:documentation>Coxhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGJ">
        <xs:annotation>
          <xs:documentation>Crossgate and Framwelgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGK">
        <xs:annotation>
          <xs:documentation>Deerness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGL">
        <xs:annotation>
          <xs:documentation>Elvet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGM">
        <xs:annotation>
          <xs:documentation>Framwellgate Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGN">
        <xs:annotation>
          <xs:documentation>Neville's Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGP">
        <xs:annotation>
          <xs:documentation>New Brancepeth and Ushaw Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGQ">
        <xs:annotation>
          <xs:documentation>Newton Hall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGR">
        <xs:annotation>
          <xs:documentation>Newton Hall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGS">
        <xs:annotation>
          <xs:documentation>Pelaw and Gilesgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGT">
        <xs:annotation>
          <xs:documentation>Pittington and West Rainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGU">
        <xs:annotation>
          <xs:documentation>St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGW">
        <xs:annotation>
          <xs:documentation>Shadforth and Sherburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UEGX">
        <xs:annotation>
          <xs:documentation>Shincliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGD">
        <xs:annotation>
          <xs:documentation>Acre Rigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGE">
        <xs:annotation>
          <xs:documentation>Blackhalls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGF">
        <xs:annotation>
          <xs:documentation>Dawdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGG">
        <xs:annotation>
          <xs:documentation>Dene House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGH">
        <xs:annotation>
          <xs:documentation>Deneside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGJ">
        <xs:annotation>
          <xs:documentation>Easington Colliery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGK">
        <xs:annotation>
          <xs:documentation>Easington Village and South Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGL">
        <xs:annotation>
          <xs:documentation>Eden Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGM">
        <xs:annotation>
          <xs:documentation>Haswell and Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGN">
        <xs:annotation>
          <xs:documentation>Horden North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGP">
        <xs:annotation>
          <xs:documentation>Horden South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGQ">
        <xs:annotation>
          <xs:documentation>Howletch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGR">
        <xs:annotation>
          <xs:documentation>Hutton Henry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGS">
        <xs:annotation>
          <xs:documentation>Murton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGT">
        <xs:annotation>
          <xs:documentation>Murton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGU">
        <xs:annotation>
          <xs:documentation>Passfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGW">
        <xs:annotation>
          <xs:documentation>Seaham Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGX">
        <xs:annotation>
          <xs:documentation>Seaham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGY">
        <xs:annotation>
          <xs:documentation>Thornley and Wheatley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UFGZ">
        <xs:annotation>
          <xs:documentation>Wingate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGFZ">
        <xs:annotation>
          <xs:documentation>Bishop Middleham and Cornforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGA">
        <xs:annotation>
          <xs:documentation>Broom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGB">
        <xs:annotation>
          <xs:documentation>Byerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGC">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGD">
        <xs:annotation>
          <xs:documentation>Ferryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGE">
        <xs:annotation>
          <xs:documentation>Fishburn and Old Trimdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGF">
        <xs:annotation>
          <xs:documentation>Greenfield Middridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGG">
        <xs:annotation>
          <xs:documentation>Low Spennymoor and Tudhoe Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGH">
        <xs:annotation>
          <xs:documentation>Middlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGJ">
        <xs:annotation>
          <xs:documentation>Neville and Simpasture</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGK">
        <xs:annotation>
          <xs:documentation>New Trimdon and Trimdon Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGL">
        <xs:annotation>
          <xs:documentation>Sedgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGM">
        <xs:annotation>
          <xs:documentation>Shafto St Marys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGN">
        <xs:annotation>
          <xs:documentation>Spennymoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGP">
        <xs:annotation>
          <xs:documentation>Sunnydale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGQ">
        <xs:annotation>
          <xs:documentation>Thickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGR">
        <xs:annotation>
          <xs:documentation>Tudhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGS">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UGGT">
        <xs:annotation>
          <xs:documentation>Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHFW">
        <xs:annotation>
          <xs:documentation>Barnard Castle East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHFX">
        <xs:annotation>
          <xs:documentation>Barnard Castle North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHFY">
        <xs:annotation>
          <xs:documentation>Barnard Castle West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHFZ">
        <xs:annotation>
          <xs:documentation>Barningham and Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGA">
        <xs:annotation>
          <xs:documentation>Cockfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGB">
        <xs:annotation>
          <xs:documentation>Cotherstone with Lartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGC">
        <xs:annotation>
          <xs:documentation>Eggleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGD">
        <xs:annotation>
          <xs:documentation>Etherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGE">
        <xs:annotation>
          <xs:documentation>Evenwood, Ramshaw and Lands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGF">
        <xs:annotation>
          <xs:documentation>Gainford and Winston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGG">
        <xs:annotation>
          <xs:documentation>Greta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGH">
        <xs:annotation>
          <xs:documentation>Hamsterley and South Bedburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGJ">
        <xs:annotation>
          <xs:documentation>Ingleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGK">
        <xs:annotation>
          <xs:documentation>Lynesack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGL">
        <xs:annotation>
          <xs:documentation>Middleton-in-Teesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGM">
        <xs:annotation>
          <xs:documentation>Romaldkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGN">
        <xs:annotation>
          <xs:documentation>Staindrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGP">
        <xs:annotation>
          <xs:documentation>Startforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UHGQ">
        <xs:annotation>
          <xs:documentation>Streatlam and Whorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJFY">
        <xs:annotation>
          <xs:documentation>Bishop Auckland Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJFZ">
        <xs:annotation>
          <xs:documentation>Cockton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGA">
        <xs:annotation>
          <xs:documentation>Coundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGB">
        <xs:annotation>
          <xs:documentation>Crook North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGC">
        <xs:annotation>
          <xs:documentation>Crook South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGD">
        <xs:annotation>
          <xs:documentation>Dene Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGE">
        <xs:annotation>
          <xs:documentation>Escomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGF">
        <xs:annotation>
          <xs:documentation>Henknowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGG">
        <xs:annotation>
          <xs:documentation>Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGH">
        <xs:annotation>
          <xs:documentation>Hunwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGJ">
        <xs:annotation>
          <xs:documentation>St John's Chapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGK">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGL">
        <xs:annotation>
          <xs:documentation>Tow Law and Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGM">
        <xs:annotation>
          <xs:documentation>West Auckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGN">
        <xs:annotation>
          <xs:documentation>Wheatbottom and Helmington Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGP">
        <xs:annotation>
          <xs:documentation>Willington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGQ">
        <xs:annotation>
          <xs:documentation>Willington West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGR">
        <xs:annotation>
          <xs:documentation>Wolsingham and Witton-le-Wear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJGS">
        <xs:annotation>
          <xs:documentation>Woodhouse Close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFL">
        <xs:annotation>
          <xs:documentation>Devonshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFM">
        <xs:annotation>
          <xs:documentation>Hampden Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFN">
        <xs:annotation>
          <xs:documentation>Langney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFP">
        <xs:annotation>
          <xs:documentation>Meads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFQ">
        <xs:annotation>
          <xs:documentation>Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFR">
        <xs:annotation>
          <xs:documentation>Ratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFS">
        <xs:annotation>
          <xs:documentation>St Anthony's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFT">
        <xs:annotation>
          <xs:documentation>Sovereign</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UCFU">
        <xs:annotation>
          <xs:documentation>Upperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFS">
        <xs:annotation>
          <xs:documentation>Ashdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFT">
        <xs:annotation>
          <xs:documentation>Baird</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFU">
        <xs:annotation>
          <xs:documentation>Braybrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFW">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFX">
        <xs:annotation>
          <xs:documentation>Central St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFY">
        <xs:annotation>
          <xs:documentation>Conquest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDFZ">
        <xs:annotation>
          <xs:documentation>Gensing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGA">
        <xs:annotation>
          <xs:documentation>Hollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGB">
        <xs:annotation>
          <xs:documentation>Maze Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGC">
        <xs:annotation>
          <xs:documentation>Old Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGD">
        <xs:annotation>
          <xs:documentation>Ore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGE">
        <xs:annotation>
          <xs:documentation>St Helens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGF">
        <xs:annotation>
          <xs:documentation>Silverhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGG">
        <xs:annotation>
          <xs:documentation>Tressell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGH">
        <xs:annotation>
          <xs:documentation>West St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UDGJ">
        <xs:annotation>
          <xs:documentation>Wishing Tree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGG">
        <xs:annotation>
          <xs:documentation>Barcombe and Hamsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGH">
        <xs:annotation>
          <xs:documentation>Chailey and Wivelsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGJ">
        <xs:annotation>
          <xs:documentation>Ditchling and Westmeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGK">
        <xs:annotation>
          <xs:documentation>East Saltdean and Telscombe Cliffs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGL">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGM">
        <xs:annotation>
          <xs:documentation>Lewes Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGN">
        <xs:annotation>
          <xs:documentation>Lewes Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGP">
        <xs:annotation>
          <xs:documentation>Lewes Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGQ">
        <xs:annotation>
          <xs:documentation>Newhaven Denton and Meeching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGR">
        <xs:annotation>
          <xs:documentation>Newhaven Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGS">
        <xs:annotation>
          <xs:documentation>Newick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGT">
        <xs:annotation>
          <xs:documentation>Ouse Valley and Ringmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGU">
        <xs:annotation>
          <xs:documentation>Peacehaven East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGW">
        <xs:annotation>
          <xs:documentation>Peacehaven North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGX">
        <xs:annotation>
          <xs:documentation>Peacehaven West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGY">
        <xs:annotation>
          <xs:documentation>Plumpton, Streat, East Chiltington and St John (Without)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFGZ">
        <xs:annotation>
          <xs:documentation>Seaford Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFHA">
        <xs:annotation>
          <xs:documentation>Seaford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFHB">
        <xs:annotation>
          <xs:documentation>Seaford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFHC">
        <xs:annotation>
          <xs:documentation>Seaford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UFHD">
        <xs:annotation>
          <xs:documentation>Seaford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGD">
        <xs:annotation>
          <xs:documentation>Battle Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGE">
        <xs:annotation>
          <xs:documentation>Brede Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGF">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGG">
        <xs:annotation>
          <xs:documentation>Collington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGH">
        <xs:annotation>
          <xs:documentation>Crowhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGJ">
        <xs:annotation>
          <xs:documentation>Darwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGK">
        <xs:annotation>
          <xs:documentation>Eastern Rother</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGL">
        <xs:annotation>
          <xs:documentation>Ewhurst and Sedlescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGM">
        <xs:annotation>
          <xs:documentation>Kewhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGN">
        <xs:annotation>
          <xs:documentation>Marsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGP">
        <xs:annotation>
          <xs:documentation>Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGQ">
        <xs:annotation>
          <xs:documentation>Rother Levels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGR">
        <xs:annotation>
          <xs:documentation>Rye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGS">
        <xs:annotation>
          <xs:documentation>Sackville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGT">
        <xs:annotation>
          <xs:documentation>St Marks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGU">
        <xs:annotation>
          <xs:documentation>St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGW">
        <xs:annotation>
          <xs:documentation>St Stephens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGX">
        <xs:annotation>
          <xs:documentation>Salehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGY">
        <xs:annotation>
          <xs:documentation>Sidley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UGGZ">
        <xs:annotation>
          <xs:documentation>Ticehurst and Etchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGM">
        <xs:annotation>
          <xs:documentation>Alfriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGN">
        <xs:annotation>
          <xs:documentation>Buxted and Maresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGP">
        <xs:annotation>
          <xs:documentation>Chiddingly and East Hoathly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGQ">
        <xs:annotation>
          <xs:documentation>Cross in Hand/Five Ashes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGR">
        <xs:annotation>
          <xs:documentation>Crowborough East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGS">
        <xs:annotation>
          <xs:documentation>Crowborough Jarvis Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGT">
        <xs:annotation>
          <xs:documentation>Crowborough North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGU">
        <xs:annotation>
          <xs:documentation>Crowborough St. Johns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGW">
        <xs:annotation>
          <xs:documentation>Crowborough West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGX">
        <xs:annotation>
          <xs:documentation>Danehill/Fletching/Nutley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGY">
        <xs:annotation>
          <xs:documentation>East Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHGZ">
        <xs:annotation>
          <xs:documentation>Forest Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHA">
        <xs:annotation>
          <xs:documentation>Framfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHB">
        <xs:annotation>
          <xs:documentation>Frant/Withyham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHC">
        <xs:annotation>
          <xs:documentation>Hailsham Central and North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHD">
        <xs:annotation>
          <xs:documentation>Hailsham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHE">
        <xs:annotation>
          <xs:documentation>Hailsham South and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHF">
        <xs:annotation>
          <xs:documentation>Hartfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHG">
        <xs:annotation>
          <xs:documentation>Heathfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHH">
        <xs:annotation>
          <xs:documentation>Heathfield North and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHJ">
        <xs:annotation>
          <xs:documentation>Hellingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHK">
        <xs:annotation>
          <xs:documentation>Herstmonceux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHL">
        <xs:annotation>
          <xs:documentation>Horam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHM">
        <xs:annotation>
          <xs:documentation>Mayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHN">
        <xs:annotation>
          <xs:documentation>Ninfield and Hooe with Wartling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHP">
        <xs:annotation>
          <xs:documentation>Pevensey and Westham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHQ">
        <xs:annotation>
          <xs:documentation>Polegate North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHR">
        <xs:annotation>
          <xs:documentation>Polegate South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHS">
        <xs:annotation>
          <xs:documentation>Rotherfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHT">
        <xs:annotation>
          <xs:documentation>Uckfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHU">
        <xs:annotation>
          <xs:documentation>Uckfield New Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHW">
        <xs:annotation>
          <xs:documentation>Uckfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHX">
        <xs:annotation>
          <xs:documentation>Uckfield Ridgewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHY">
        <xs:annotation>
          <xs:documentation>Wadhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UHHZ">
        <xs:annotation>
          <xs:documentation>Willingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFQ">
        <xs:annotation>
          <xs:documentation>Billericay East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFR">
        <xs:annotation>
          <xs:documentation>Billericay West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFS">
        <xs:annotation>
          <xs:documentation>Burstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFT">
        <xs:annotation>
          <xs:documentation>Crouch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFU">
        <xs:annotation>
          <xs:documentation>Fryerns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFW">
        <xs:annotation>
          <xs:documentation>Laindon Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFX">
        <xs:annotation>
          <xs:documentation>Langdon Hills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFY">
        <xs:annotation>
          <xs:documentation>Lee Chapel North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBFZ">
        <xs:annotation>
          <xs:documentation>Nethermayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGA">
        <xs:annotation>
          <xs:documentation>Pitsea North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGB">
        <xs:annotation>
          <xs:documentation>Pitsea South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGC">
        <xs:annotation>
          <xs:documentation>St Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGD">
        <xs:annotation>
          <xs:documentation>Vange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGE">
        <xs:annotation>
          <xs:documentation>Wickford Castledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGF">
        <xs:annotation>
          <xs:documentation>Wickford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UBGG">
        <xs:annotation>
          <xs:documentation>Wickford Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGL">
        <xs:annotation>
          <xs:documentation>Black Notley and Terling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGM">
        <xs:annotation>
          <xs:documentation>Bocking Blackwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGN">
        <xs:annotation>
          <xs:documentation>Bocking North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGP">
        <xs:annotation>
          <xs:documentation>Bocking South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGQ">
        <xs:annotation>
          <xs:documentation>Bradwell, Silver End and Rivenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGR">
        <xs:annotation>
          <xs:documentation>Braintree Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGS">
        <xs:annotation>
          <xs:documentation>Braintree East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGT">
        <xs:annotation>
          <xs:documentation>Braintree South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGU">
        <xs:annotation>
          <xs:documentation>Bumpstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGW">
        <xs:annotation>
          <xs:documentation>Coggeshall and North Feering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGX">
        <xs:annotation>
          <xs:documentation>Cressing and Stisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGY">
        <xs:annotation>
          <xs:documentation>Gosfield and Greenstead Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCGZ">
        <xs:annotation>
          <xs:documentation>Great Notley and Braintree West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHA">
        <xs:annotation>
          <xs:documentation>Halstead St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHB">
        <xs:annotation>
          <xs:documentation>Halstead Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHC">
        <xs:annotation>
          <xs:documentation>Hatfield Peverel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHD">
        <xs:annotation>
          <xs:documentation>Hedingham and Maplestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHE">
        <xs:annotation>
          <xs:documentation>Kelvedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHF">
        <xs:annotation>
          <xs:documentation>Panfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHG">
        <xs:annotation>
          <xs:documentation>Rayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHH">
        <xs:annotation>
          <xs:documentation>Stour Valley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHJ">
        <xs:annotation>
          <xs:documentation>Stour Valley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHK">
        <xs:annotation>
          <xs:documentation>The Three Colnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHL">
        <xs:annotation>
          <xs:documentation>Three Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHM">
        <xs:annotation>
          <xs:documentation>Upper Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHN">
        <xs:annotation>
          <xs:documentation>Witham Chipping Hill and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHP">
        <xs:annotation>
          <xs:documentation>Witham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHQ">
        <xs:annotation>
          <xs:documentation>Witham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHR">
        <xs:annotation>
          <xs:documentation>Witham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UCHS">
        <xs:annotation>
          <xs:documentation>Yeldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFT">
        <xs:annotation>
          <xs:documentation>Brentwood North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFU">
        <xs:annotation>
          <xs:documentation>Brentwood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFW">
        <xs:annotation>
          <xs:documentation>Brentwood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFX">
        <xs:annotation>
          <xs:documentation>Brizes and Doddinghurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFY">
        <xs:annotation>
          <xs:documentation>Herongate, Ingrave and West Horndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDFZ">
        <xs:annotation>
          <xs:documentation>Hutton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGA">
        <xs:annotation>
          <xs:documentation>Hutton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGB">
        <xs:annotation>
          <xs:documentation>Hutton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGC">
        <xs:annotation>
          <xs:documentation>Hutton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGD">
        <xs:annotation>
          <xs:documentation>Ingatestone, Fryerning and Mountnessing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGE">
        <xs:annotation>
          <xs:documentation>Pilgrims Hatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGF">
        <xs:annotation>
          <xs:documentation>Shenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGG">
        <xs:annotation>
          <xs:documentation>South Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGH">
        <xs:annotation>
          <xs:documentation>Tipps Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UDGJ">
        <xs:annotation>
          <xs:documentation>Warley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFQ">
        <xs:annotation>
          <xs:documentation>Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFR">
        <xs:annotation>
          <xs:documentation>Boyce</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFS">
        <xs:annotation>
          <xs:documentation>Canvey Island Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFT">
        <xs:annotation>
          <xs:documentation>Canvey Island East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFU">
        <xs:annotation>
          <xs:documentation>Canvey Island North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFW">
        <xs:annotation>
          <xs:documentation>Canvey Island South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFX">
        <xs:annotation>
          <xs:documentation>Canvey Island West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFY">
        <xs:annotation>
          <xs:documentation>Canvey Island Winter Gardens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEFZ">
        <xs:annotation>
          <xs:documentation>Cedar Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEGA">
        <xs:annotation>
          <xs:documentation>St George's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEGB">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEGC">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEGD">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UEGE">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGE">
        <xs:annotation>
          <xs:documentation>Bicknacre and East and West Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGF">
        <xs:annotation>
          <xs:documentation>Boreham and The Leighs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGG">
        <xs:annotation>
          <xs:documentation>Broomfield and The Walthams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGH">
        <xs:annotation>
          <xs:documentation>Chelmer Village and Beaulieu Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGJ">
        <xs:annotation>
          <xs:documentation>Chelmsford Rural West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGK">
        <xs:annotation>
          <xs:documentation>Galleywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGL">
        <xs:annotation>
          <xs:documentation>Goat Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGM">
        <xs:annotation>
          <xs:documentation>Great Baddow East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGN">
        <xs:annotation>
          <xs:documentation>Great Baddow West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGP">
        <xs:annotation>
          <xs:documentation>Little Baddow, Danbury and Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGQ">
        <xs:annotation>
          <xs:documentation>Marconi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGR">
        <xs:annotation>
          <xs:documentation>Moulsham and Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGS">
        <xs:annotation>
          <xs:documentation>Moulsham Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGT">
        <xs:annotation>
          <xs:documentation>Patching Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGU">
        <xs:annotation>
          <xs:documentation>Rettendon and Runwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGW">
        <xs:annotation>
          <xs:documentation>St Andrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGX">
        <xs:annotation>
          <xs:documentation>South Hanningfield, Stock and Margaretting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGY">
        <xs:annotation>
          <xs:documentation>South Woodham-Chetwood and Collingwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFGZ">
        <xs:annotation>
          <xs:documentation>South Woodham-Elmwood and Woodville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFHA">
        <xs:annotation>
          <xs:documentation>Springfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFHB">
        <xs:annotation>
          <xs:documentation>The Lawns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFHC">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFHD">
        <xs:annotation>
          <xs:documentation>Waterhouse Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UFHE">
        <xs:annotation>
          <xs:documentation>Writtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGE">
        <xs:annotation>
          <xs:documentation>Berechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGF">
        <xs:annotation>
          <xs:documentation>Birch and Winstree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGG">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGH">
        <xs:annotation>
          <xs:documentation>Christ Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGJ">
        <xs:annotation>
          <xs:documentation>Copford and West Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGK">
        <xs:annotation>
          <xs:documentation>Dedham and Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGL">
        <xs:annotation>
          <xs:documentation>East Donyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGM">
        <xs:annotation>
          <xs:documentation>Fordham and Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGN">
        <xs:annotation>
          <xs:documentation>Great Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGP">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGQ">
        <xs:annotation>
          <xs:documentation>Highwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGR">
        <xs:annotation>
          <xs:documentation>Lexden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGS">
        <xs:annotation>
          <xs:documentation>Marks Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGT">
        <xs:annotation>
          <xs:documentation>Mile End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGU">
        <xs:annotation>
          <xs:documentation>New Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGW">
        <xs:annotation>
          <xs:documentation>Prettygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGX">
        <xs:annotation>
          <xs:documentation>Pyefleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGY">
        <xs:annotation>
          <xs:documentation>St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGGZ">
        <xs:annotation>
          <xs:documentation>St Anne's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHA">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHB">
        <xs:annotation>
          <xs:documentation>Shrub End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHC">
        <xs:annotation>
          <xs:documentation>Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHD">
        <xs:annotation>
          <xs:documentation>Tiptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHE">
        <xs:annotation>
          <xs:documentation>West Bergholt and Eight Ash Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHF">
        <xs:annotation>
          <xs:documentation>West Mersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHG">
        <xs:annotation>
          <xs:documentation>Wivenhoe Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UGHH">
        <xs:annotation>
          <xs:documentation>Wivenhoe Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGH">
        <xs:annotation>
          <xs:documentation>Broadley Common, Epping Upland and Nazeing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGJ">
        <xs:annotation>
          <xs:documentation>Buckhurst Hill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGK">
        <xs:annotation>
          <xs:documentation>Buckhurst Hill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGL">
        <xs:annotation>
          <xs:documentation>Chigwell Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGM">
        <xs:annotation>
          <xs:documentation>Chigwell Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGN">
        <xs:annotation>
          <xs:documentation>Chipping Ongar, Greensted and Marden Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGP">
        <xs:annotation>
          <xs:documentation>Epping Hemnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGQ">
        <xs:annotation>
          <xs:documentation>Epping Lindsey and Thornwood Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGR">
        <xs:annotation>
          <xs:documentation>Grange Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGS">
        <xs:annotation>
          <xs:documentation>Hastingwood, Matching and Sheering Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGT">
        <xs:annotation>
          <xs:documentation>High Ongar, Willingale and The Rodings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGU">
        <xs:annotation>
          <xs:documentation>Lambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGW">
        <xs:annotation>
          <xs:documentation>Loughton Alderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGX">
        <xs:annotation>
          <xs:documentation>Loughton Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGY">
        <xs:annotation>
          <xs:documentation>Loughton Fairmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHGZ">
        <xs:annotation>
          <xs:documentation>Loughton Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHA">
        <xs:annotation>
          <xs:documentation>Loughton Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHB">
        <xs:annotation>
          <xs:documentation>Loughton St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHC">
        <xs:annotation>
          <xs:documentation>Loughton St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHD">
        <xs:annotation>
          <xs:documentation>Lower Nazeing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHE">
        <xs:annotation>
          <xs:documentation>Lower Sheering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHF">
        <xs:annotation>
          <xs:documentation>Moreton and Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHG">
        <xs:annotation>
          <xs:documentation>North Weald Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHH">
        <xs:annotation>
          <xs:documentation>Passingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHJ">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHK">
        <xs:annotation>
          <xs:documentation>Shelley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHL">
        <xs:annotation>
          <xs:documentation>Theydon Bois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHM">
        <xs:annotation>
          <xs:documentation>Waltham Abbey High Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHN">
        <xs:annotation>
          <xs:documentation>Waltham Abbey Honey Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHP">
        <xs:annotation>
          <xs:documentation>Waltham Abbey North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHQ">
        <xs:annotation>
          <xs:documentation>Waltham Abbey Paternoster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UHHR">
        <xs:annotation>
          <xs:documentation>Waltham Abbey South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFS">
        <xs:annotation>
          <xs:documentation>Bush Fair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFT">
        <xs:annotation>
          <xs:documentation>Church Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFU">
        <xs:annotation>
          <xs:documentation>Great Parndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFW">
        <xs:annotation>
          <xs:documentation>Harlow Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFX">
        <xs:annotation>
          <xs:documentation>Little Parndon and Hare Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFY">
        <xs:annotation>
          <xs:documentation>Mark Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJFZ">
        <xs:annotation>
          <xs:documentation>Netteswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJGA">
        <xs:annotation>
          <xs:documentation>Old Harlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJGB">
        <xs:annotation>
          <xs:documentation>Staple Tye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJGC">
        <xs:annotation>
          <xs:documentation>Sumners and Kingsmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UJGD">
        <xs:annotation>
          <xs:documentation>Toddbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKFX">
        <xs:annotation>
          <xs:documentation>Althorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKFY">
        <xs:annotation>
          <xs:documentation>Burnham-on-Crouch North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKFZ">
        <xs:annotation>
          <xs:documentation>Burnham-on-Crouch South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGA">
        <xs:annotation>
          <xs:documentation>Great Totham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGB">
        <xs:annotation>
          <xs:documentation>Heybridge East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGC">
        <xs:annotation>
          <xs:documentation>Heybridge West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGD">
        <xs:annotation>
          <xs:documentation>Maldon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGE">
        <xs:annotation>
          <xs:documentation>Maldon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGF">
        <xs:annotation>
          <xs:documentation>Maldon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGG">
        <xs:annotation>
          <xs:documentation>Maldon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGH">
        <xs:annotation>
          <xs:documentation>Mayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGJ">
        <xs:annotation>
          <xs:documentation>Purleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGK">
        <xs:annotation>
          <xs:documentation>Southminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGL">
        <xs:annotation>
          <xs:documentation>Tillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGM">
        <xs:annotation>
          <xs:documentation>Tollesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGN">
        <xs:annotation>
          <xs:documentation>Tolleshunt D'Arcy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UKGP">
        <xs:annotation>
          <xs:documentation>Wickham Bishops and Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGA">
        <xs:annotation>
          <xs:documentation>Ashingdon and Canewdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGB">
        <xs:annotation>
          <xs:documentation>Barling and Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGC">
        <xs:annotation>
          <xs:documentation>Downhall and Rawreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGD">
        <xs:annotation>
          <xs:documentation>Foulness and Great Wakering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGE">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGF">
        <xs:annotation>
          <xs:documentation>Hawkwell North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGG">
        <xs:annotation>
          <xs:documentation>Hawkwell South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGH">
        <xs:annotation>
          <xs:documentation>Hawkwell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGJ">
        <xs:annotation>
          <xs:documentation>Hockley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGK">
        <xs:annotation>
          <xs:documentation>Hockley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGL">
        <xs:annotation>
          <xs:documentation>Hockley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGM">
        <xs:annotation>
          <xs:documentation>Hullbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGN">
        <xs:annotation>
          <xs:documentation>Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGP">
        <xs:annotation>
          <xs:documentation>Rayleigh Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGQ">
        <xs:annotation>
          <xs:documentation>Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGR">
        <xs:annotation>
          <xs:documentation>Sweyne Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGS">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGT">
        <xs:annotation>
          <xs:documentation>Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22ULGU">
        <xs:annotation>
          <xs:documentation>Whitehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGK">
        <xs:annotation>
          <xs:documentation>Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGL">
        <xs:annotation>
          <xs:documentation>Alton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGM">
        <xs:annotation>
          <xs:documentation>Ardleigh and Little Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGN">
        <xs:annotation>
          <xs:documentation>Beaumont and Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGP">
        <xs:annotation>
          <xs:documentation>Bockings Elm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGQ">
        <xs:annotation>
          <xs:documentation>Bradfield, Wrabness and Wix</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGR">
        <xs:annotation>
          <xs:documentation>Brightlingsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGS">
        <xs:annotation>
          <xs:documentation>Burrsville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGT">
        <xs:annotation>
          <xs:documentation>Frinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGU">
        <xs:annotation>
          <xs:documentation>Golf Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGW">
        <xs:annotation>
          <xs:documentation>Great and Little Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGX">
        <xs:annotation>
          <xs:documentation>Great Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGY">
        <xs:annotation>
          <xs:documentation>Hamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNGZ">
        <xs:annotation>
          <xs:documentation>Harwich East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHA">
        <xs:annotation>
          <xs:documentation>Harwich East Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHB">
        <xs:annotation>
          <xs:documentation>Harwich West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHC">
        <xs:annotation>
          <xs:documentation>Harwich West Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHD">
        <xs:annotation>
          <xs:documentation>Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHE">
        <xs:annotation>
          <xs:documentation>Holland and Kirby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHF">
        <xs:annotation>
          <xs:documentation>Homelands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHG">
        <xs:annotation>
          <xs:documentation>Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHH">
        <xs:annotation>
          <xs:documentation>Little Clacton and Weeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHJ">
        <xs:annotation>
          <xs:documentation>Manningtree, Mistley, Little Bentley and Tendring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHK">
        <xs:annotation>
          <xs:documentation>Peter Bruff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHL">
        <xs:annotation>
          <xs:documentation>Pier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHM">
        <xs:annotation>
          <xs:documentation>Ramsey and Parkeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHN">
        <xs:annotation>
          <xs:documentation>Rush Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHP">
        <xs:annotation>
          <xs:documentation>St Bartholomews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHQ">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHR">
        <xs:annotation>
          <xs:documentation>St Johns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHS">
        <xs:annotation>
          <xs:documentation>St Marys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHT">
        <xs:annotation>
          <xs:documentation>St Osyth and Point Clear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHU">
        <xs:annotation>
          <xs:documentation>St Pauls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHW">
        <xs:annotation>
          <xs:documentation>Thorrington, Frating, Elmstead and Great Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UNHX">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGJ">
        <xs:annotation>
          <xs:documentation>Ashdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGK">
        <xs:annotation>
          <xs:documentation>Barnston and High Easter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGL">
        <xs:annotation>
          <xs:documentation>Birchanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGM">
        <xs:annotation>
          <xs:documentation>Broad Oak and the Hallingburys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGN">
        <xs:annotation>
          <xs:documentation>Clavering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGP">
        <xs:annotation>
          <xs:documentation>Elsenham and Henham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGQ">
        <xs:annotation>
          <xs:documentation>Felsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGR">
        <xs:annotation>
          <xs:documentation>Great Dunmow North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGS">
        <xs:annotation>
          <xs:documentation>Great Dunmow South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGT">
        <xs:annotation>
          <xs:documentation>Hatfield Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGU">
        <xs:annotation>
          <xs:documentation>Littlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGW">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGX">
        <xs:annotation>
          <xs:documentation>Saffron Walden Audley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGY">
        <xs:annotation>
          <xs:documentation>Saffron Walden Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQGZ">
        <xs:annotation>
          <xs:documentation>Saffron Walden Shire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHA">
        <xs:annotation>
          <xs:documentation>Stansted North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHB">
        <xs:annotation>
          <xs:documentation>Stansted South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHC">
        <xs:annotation>
          <xs:documentation>Stebbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHD">
        <xs:annotation>
          <xs:documentation>Stort Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHE">
        <xs:annotation>
          <xs:documentation>Takeley and the Canfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHF">
        <xs:annotation>
          <xs:documentation>Thaxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHG">
        <xs:annotation>
          <xs:documentation>The Chesterfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHH">
        <xs:annotation>
          <xs:documentation>The Eastons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHJ">
        <xs:annotation>
          <xs:documentation>The Rodings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHK">
        <xs:annotation>
          <xs:documentation>The Sampfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHL">
        <xs:annotation>
          <xs:documentation>Wenden Lofts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQHM">
        <xs:annotation>
          <xs:documentation>Wimbish and Debden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFQ">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFR">
        <xs:annotation>
          <xs:documentation>Battledown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFS">
        <xs:annotation>
          <xs:documentation>Benhall and The Reddings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFT">
        <xs:annotation>
          <xs:documentation>Charlton Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFU">
        <xs:annotation>
          <xs:documentation>Charlton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFW">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFX">
        <xs:annotation>
          <xs:documentation>Hesters Way</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFY">
        <xs:annotation>
          <xs:documentation>Lansdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBFZ">
        <xs:annotation>
          <xs:documentation>Leckhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGA">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGB">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGC">
        <xs:annotation>
          <xs:documentation>Pittville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGD">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGE">
        <xs:annotation>
          <xs:documentation>St Mark's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGF">
        <xs:annotation>
          <xs:documentation>St Paul's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGG">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGH">
        <xs:annotation>
          <xs:documentation>Springbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGJ">
        <xs:annotation>
          <xs:documentation>Swindon Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGK">
        <xs:annotation>
          <xs:documentation>Up Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UBGL">
        <xs:annotation>
          <xs:documentation>Warden Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGL">
        <xs:annotation>
          <xs:documentation>Ampney-Coln</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGM">
        <xs:annotation>
          <xs:documentation>Avening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGN">
        <xs:annotation>
          <xs:documentation>Beacon-Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGP">
        <xs:annotation>
          <xs:documentation>Blockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGQ">
        <xs:annotation>
          <xs:documentation>Bourton-on-the-Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGR">
        <xs:annotation>
          <xs:documentation>Campden-Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGS">
        <xs:annotation>
          <xs:documentation>Chedworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGT">
        <xs:annotation>
          <xs:documentation>Churn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGU">
        <xs:annotation>
          <xs:documentation>Cirencester Beeches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGW">
        <xs:annotation>
          <xs:documentation>Cirencester Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGX">
        <xs:annotation>
          <xs:documentation>Cirencester Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGY">
        <xs:annotation>
          <xs:documentation>Cirencester Stratton-Whiteway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCGZ">
        <xs:annotation>
          <xs:documentation>Cirencester Watermoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHA">
        <xs:annotation>
          <xs:documentation>Ermin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHB">
        <xs:annotation>
          <xs:documentation>Fairford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHC">
        <xs:annotation>
          <xs:documentation>Fosseridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHD">
        <xs:annotation>
          <xs:documentation>Grumbolds Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHE">
        <xs:annotation>
          <xs:documentation>Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHF">
        <xs:annotation>
          <xs:documentation>Kempsford-Lechlade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHG">
        <xs:annotation>
          <xs:documentation>Moreton-in-Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHH">
        <xs:annotation>
          <xs:documentation>Northleach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHJ">
        <xs:annotation>
          <xs:documentation>Rissingtons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHK">
        <xs:annotation>
          <xs:documentation>Riversmeet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHL">
        <xs:annotation>
          <xs:documentation>Sandywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHM">
        <xs:annotation>
          <xs:documentation>Tetbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHN">
        <xs:annotation>
          <xs:documentation>Thames Head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHP">
        <xs:annotation>
          <xs:documentation>Three Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UCHQ">
        <xs:annotation>
          <xs:documentation>Water Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGF">
        <xs:annotation>
          <xs:documentation>Alvington, Aylburton and West Lydney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGG">
        <xs:annotation>
          <xs:documentation>Awre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGH">
        <xs:annotation>
          <xs:documentation>Berry Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGJ">
        <xs:annotation>
          <xs:documentation>Blaisdon and Longhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGK">
        <xs:annotation>
          <xs:documentation>Bream</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGL">
        <xs:annotation>
          <xs:documentation>Bromesberrow and Dymock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGM">
        <xs:annotation>
          <xs:documentation>Christchurch and English Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGN">
        <xs:annotation>
          <xs:documentation>Churcham and Huntley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGP">
        <xs:annotation>
          <xs:documentation>Cinderford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGQ">
        <xs:annotation>
          <xs:documentation>Cinderford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGR">
        <xs:annotation>
          <xs:documentation>Coleford Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGS">
        <xs:annotation>
          <xs:documentation>Coleford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGT">
        <xs:annotation>
          <xs:documentation>Hartpury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGU">
        <xs:annotation>
          <xs:documentation>Hewelsfield and Woolaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGW">
        <xs:annotation>
          <xs:documentation>Littledean and Ruspidge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGX">
        <xs:annotation>
          <xs:documentation>Lydbrook and Ruardean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGY">
        <xs:annotation>
          <xs:documentation>Lydney East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDGZ">
        <xs:annotation>
          <xs:documentation>Lydney North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHA">
        <xs:annotation>
          <xs:documentation>Mitcheldean and Drybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHB">
        <xs:annotation>
          <xs:documentation>Newent Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHC">
        <xs:annotation>
          <xs:documentation>Newland and St Briavels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHD">
        <xs:annotation>
          <xs:documentation>Newnham and Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHE">
        <xs:annotation>
          <xs:documentation>Oxenhall and Newent North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHF">
        <xs:annotation>
          <xs:documentation>Pillowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHG">
        <xs:annotation>
          <xs:documentation>Redmarley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHH">
        <xs:annotation>
          <xs:documentation>Tibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UDHJ">
        <xs:annotation>
          <xs:documentation>Tidenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFR">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFS">
        <xs:annotation>
          <xs:documentation>Barnwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFT">
        <xs:annotation>
          <xs:documentation>Barton and Tredworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFU">
        <xs:annotation>
          <xs:documentation>Elmbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFW">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFX">
        <xs:annotation>
          <xs:documentation>Hucclecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFY">
        <xs:annotation>
          <xs:documentation>Kingsholm and Wotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEFZ">
        <xs:annotation>
          <xs:documentation>Longlevens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGA">
        <xs:annotation>
          <xs:documentation>Matson and Robinswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGB">
        <xs:annotation>
          <xs:documentation>Moreland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGC">
        <xs:annotation>
          <xs:documentation>Podsmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGD">
        <xs:annotation>
          <xs:documentation>Quedgeley Fieldcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGE">
        <xs:annotation>
          <xs:documentation>Quedgeley Severn Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGF">
        <xs:annotation>
          <xs:documentation>Tuffley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UEGG">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGJ">
        <xs:annotation>
          <xs:documentation>Amberley and Woodchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGK">
        <xs:annotation>
          <xs:documentation>Berkeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGL">
        <xs:annotation>
          <xs:documentation>Bisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGM">
        <xs:annotation>
          <xs:documentation>Cainscross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGN">
        <xs:annotation>
          <xs:documentation>Cam East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGP">
        <xs:annotation>
          <xs:documentation>Cam West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGQ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGR">
        <xs:annotation>
          <xs:documentation>Chalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGS">
        <xs:annotation>
          <xs:documentation>Coaley and Uley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGT">
        <xs:annotation>
          <xs:documentation>Dursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGU">
        <xs:annotation>
          <xs:documentation>Eastington and Standish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGW">
        <xs:annotation>
          <xs:documentation>Farmhill and Paganhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGX">
        <xs:annotation>
          <xs:documentation>Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGY">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFGZ">
        <xs:annotation>
          <xs:documentation>Minchinhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHA">
        <xs:annotation>
          <xs:documentation>Nailsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHB">
        <xs:annotation>
          <xs:documentation>Over Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHC">
        <xs:annotation>
          <xs:documentation>Painswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHD">
        <xs:annotation>
          <xs:documentation>Rodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHE">
        <xs:annotation>
          <xs:documentation>Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHF">
        <xs:annotation>
          <xs:documentation>Slade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHG">
        <xs:annotation>
          <xs:documentation>Stonehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHH">
        <xs:annotation>
          <xs:documentation>The Stanleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHJ">
        <xs:annotation>
          <xs:documentation>Thrupp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHK">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHL">
        <xs:annotation>
          <xs:documentation>Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHM">
        <xs:annotation>
          <xs:documentation>Upton St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHN">
        <xs:annotation>
          <xs:documentation>Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHP">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UFHQ">
        <xs:annotation>
          <xs:documentation>Wotton-under-Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGE">
        <xs:annotation>
          <xs:documentation>Ashchurch with Walton Cardiff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGF">
        <xs:annotation>
          <xs:documentation>Badgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGG">
        <xs:annotation>
          <xs:documentation>Brockworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGH">
        <xs:annotation>
          <xs:documentation>Churchdown Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGJ">
        <xs:annotation>
          <xs:documentation>Churchdown St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGK">
        <xs:annotation>
          <xs:documentation>Cleeve Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGL">
        <xs:annotation>
          <xs:documentation>Cleeve Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGM">
        <xs:annotation>
          <xs:documentation>Cleeve St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGN">
        <xs:annotation>
          <xs:documentation>Cleeve West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGP">
        <xs:annotation>
          <xs:documentation>Coombe Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGQ">
        <xs:annotation>
          <xs:documentation>Highnam with Haw Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGR">
        <xs:annotation>
          <xs:documentation>Hucclecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGS">
        <xs:annotation>
          <xs:documentation>Innsworth with Down Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGT">
        <xs:annotation>
          <xs:documentation>Isbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGU">
        <xs:annotation>
          <xs:documentation>Northway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGW">
        <xs:annotation>
          <xs:documentation>Oxenton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGX">
        <xs:annotation>
          <xs:documentation>Shurdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGY">
        <xs:annotation>
          <xs:documentation>Tewkesbury Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGGZ">
        <xs:annotation>
          <xs:documentation>Tewkesbury Prior's Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGHA">
        <xs:annotation>
          <xs:documentation>Tewkesbury Town with Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGHB">
        <xs:annotation>
          <xs:documentation>Twyning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UGHC">
        <xs:annotation>
          <xs:documentation>Winchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHP">
        <xs:annotation>
          <xs:documentation>Basing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHQ">
        <xs:annotation>
          <xs:documentation>Baughurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHR">
        <xs:annotation>
          <xs:documentation>Brighton Hill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHS">
        <xs:annotation>
          <xs:documentation>Brighton Hill South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHT">
        <xs:annotation>
          <xs:documentation>Brookvale and Kings Furlong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHU">
        <xs:annotation>
          <xs:documentation>Buckskin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHW">
        <xs:annotation>
          <xs:documentation>Burghclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHX">
        <xs:annotation>
          <xs:documentation>Calleva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHY">
        <xs:annotation>
          <xs:documentation>Chineham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBHZ">
        <xs:annotation>
          <xs:documentation>East Woodhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJA">
        <xs:annotation>
          <xs:documentation>Eastrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJB">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJC">
        <xs:annotation>
          <xs:documentation>Hatch Warren and Beggarwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJD">
        <xs:annotation>
          <xs:documentation>Highclere and Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJE">
        <xs:annotation>
          <xs:documentation>Kempshott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJF">
        <xs:annotation>
          <xs:documentation>Kingsclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJG">
        <xs:annotation>
          <xs:documentation>Norden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJH">
        <xs:annotation>
          <xs:documentation>Oakley and North Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJJ">
        <xs:annotation>
          <xs:documentation>Overton, Laverstoke and Steventon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJK">
        <xs:annotation>
          <xs:documentation>Pamber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJL">
        <xs:annotation>
          <xs:documentation>Popley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJM">
        <xs:annotation>
          <xs:documentation>Popley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJN">
        <xs:annotation>
          <xs:documentation>Rooksdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJP">
        <xs:annotation>
          <xs:documentation>Sherborne St John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJQ">
        <xs:annotation>
          <xs:documentation>South Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJR">
        <xs:annotation>
          <xs:documentation>Tadley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJS">
        <xs:annotation>
          <xs:documentation>Tadley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJT">
        <xs:annotation>
          <xs:documentation>Upton Grey and The Candovers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJU">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UBJW">
        <xs:annotation>
          <xs:documentation>Winklebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGJ">
        <xs:annotation>
          <xs:documentation>Alton Amery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGK">
        <xs:annotation>
          <xs:documentation>Alton Ashdell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGL">
        <xs:annotation>
          <xs:documentation>Alton Eastbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGM">
        <xs:annotation>
          <xs:documentation>Alton Westbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGN">
        <xs:annotation>
          <xs:documentation>Alton Whitedown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGP">
        <xs:annotation>
          <xs:documentation>Alton Wooteys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGQ">
        <xs:annotation>
          <xs:documentation>Binsted and Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGR">
        <xs:annotation>
          <xs:documentation>Bramshott and Liphook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGS">
        <xs:annotation>
          <xs:documentation>Clanfield and Finchdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGT">
        <xs:annotation>
          <xs:documentation>Downland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGU">
        <xs:annotation>
          <xs:documentation>East Meon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGW">
        <xs:annotation>
          <xs:documentation>Four Marks and Medstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGX">
        <xs:annotation>
          <xs:documentation>Froxfield and Steep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGY">
        <xs:annotation>
          <xs:documentation>Grayshott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCGZ">
        <xs:annotation>
          <xs:documentation>Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHA">
        <xs:annotation>
          <xs:documentation>Holybourne and Froyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHB">
        <xs:annotation>
          <xs:documentation>Horndean Catherington and Lovedean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHC">
        <xs:annotation>
          <xs:documentation>Horndean Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHD">
        <xs:annotation>
          <xs:documentation>Horndean Hazleton and Blendworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHE">
        <xs:annotation>
          <xs:documentation>Horndean Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHF">
        <xs:annotation>
          <xs:documentation>Horndean Murray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHG">
        <xs:annotation>
          <xs:documentation>Lindford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHH">
        <xs:annotation>
          <xs:documentation>Liss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHJ">
        <xs:annotation>
          <xs:documentation>Petersfield Bell Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHK">
        <xs:annotation>
          <xs:documentation>Petersfield Causeway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHL">
        <xs:annotation>
          <xs:documentation>Petersfield Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHM">
        <xs:annotation>
          <xs:documentation>Petersfield Rother</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHN">
        <xs:annotation>
          <xs:documentation>Petersfield St Marys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHP">
        <xs:annotation>
          <xs:documentation>Petersfield St Peters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHQ">
        <xs:annotation>
          <xs:documentation>Ropley and Tisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHR">
        <xs:annotation>
          <xs:documentation>Rowlands Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHS">
        <xs:annotation>
          <xs:documentation>Selborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHT">
        <xs:annotation>
          <xs:documentation>The Hangers and Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHU">
        <xs:annotation>
          <xs:documentation>Whitehill Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHW">
        <xs:annotation>
          <xs:documentation>Whitehill Deadwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHX">
        <xs:annotation>
          <xs:documentation>Whitehill Hogmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHY">
        <xs:annotation>
          <xs:documentation>Whitehill Pinewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UCHZ">
        <xs:annotation>
          <xs:documentation>Whitehill Walldown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFT">
        <xs:annotation>
          <xs:documentation>Bishopstoke East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFU">
        <xs:annotation>
          <xs:documentation>Bishopstoke West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFW">
        <xs:annotation>
          <xs:documentation>Botley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFX">
        <xs:annotation>
          <xs:documentation>Bursledon and Old Netley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFY">
        <xs:annotation>
          <xs:documentation>Chandler's Ford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDFZ">
        <xs:annotation>
          <xs:documentation>Chandler's Ford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGA">
        <xs:annotation>
          <xs:documentation>Eastleigh Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGB">
        <xs:annotation>
          <xs:documentation>Eastleigh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGC">
        <xs:annotation>
          <xs:documentation>Eastleigh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGD">
        <xs:annotation>
          <xs:documentation>Fair Oak and Horton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGE">
        <xs:annotation>
          <xs:documentation>Hamble-le-Rice and Butlocks Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGF">
        <xs:annotation>
          <xs:documentation>Hedge End Grange Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGG">
        <xs:annotation>
          <xs:documentation>Hedge End St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGH">
        <xs:annotation>
          <xs:documentation>Hedge End Wildern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGJ">
        <xs:annotation>
          <xs:documentation>Hiltingbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGK">
        <xs:annotation>
          <xs:documentation>Hiltingbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGL">
        <xs:annotation>
          <xs:documentation>Netley Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGM">
        <xs:annotation>
          <xs:documentation>West End North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UDGN">
        <xs:annotation>
          <xs:documentation>West End South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFQ">
        <xs:annotation>
          <xs:documentation>Fareham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFR">
        <xs:annotation>
          <xs:documentation>Fareham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFS">
        <xs:annotation>
          <xs:documentation>Fareham North-West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFT">
        <xs:annotation>
          <xs:documentation>Fareham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFU">
        <xs:annotation>
          <xs:documentation>Fareham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFW">
        <xs:annotation>
          <xs:documentation>Hill Head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFX">
        <xs:annotation>
          <xs:documentation>Locks Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFY">
        <xs:annotation>
          <xs:documentation>Park Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEFZ">
        <xs:annotation>
          <xs:documentation>Portchester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGA">
        <xs:annotation>
          <xs:documentation>Portchester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGB">
        <xs:annotation>
          <xs:documentation>Sarisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGC">
        <xs:annotation>
          <xs:documentation>Stubbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGD">
        <xs:annotation>
          <xs:documentation>Titchfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGE">
        <xs:annotation>
          <xs:documentation>Titchfield Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UEGF">
        <xs:annotation>
          <xs:documentation>Warsash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFL">
        <xs:annotation>
          <xs:documentation>Alverstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFM">
        <xs:annotation>
          <xs:documentation>Anglesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFN">
        <xs:annotation>
          <xs:documentation>Bridgemary North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFP">
        <xs:annotation>
          <xs:documentation>Bridgemary South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFQ">
        <xs:annotation>
          <xs:documentation>Brockhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFR">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFS">
        <xs:annotation>
          <xs:documentation>Elson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFT">
        <xs:annotation>
          <xs:documentation>Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFU">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFW">
        <xs:annotation>
          <xs:documentation>Hardway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFX">
        <xs:annotation>
          <xs:documentation>Lee East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFY">
        <xs:annotation>
          <xs:documentation>Lee West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFFZ">
        <xs:annotation>
          <xs:documentation>Leesland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFGA">
        <xs:annotation>
          <xs:documentation>Peel Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFGB">
        <xs:annotation>
          <xs:documentation>Privett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFGC">
        <xs:annotation>
          <xs:documentation>Rowner and Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UFGD">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFS">
        <xs:annotation>
          <xs:documentation>Blackwater and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFT">
        <xs:annotation>
          <xs:documentation>Church Crookham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFU">
        <xs:annotation>
          <xs:documentation>Church Crookham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFW">
        <xs:annotation>
          <xs:documentation>Crondall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFX">
        <xs:annotation>
          <xs:documentation>Eversley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFY">
        <xs:annotation>
          <xs:documentation>Fleet Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGFZ">
        <xs:annotation>
          <xs:documentation>Fleet Courtmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGA">
        <xs:annotation>
          <xs:documentation>Fleet North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGB">
        <xs:annotation>
          <xs:documentation>Fleet Pondtail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGC">
        <xs:annotation>
          <xs:documentation>Fleet West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGD">
        <xs:annotation>
          <xs:documentation>Frogmore and Darby Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGE">
        <xs:annotation>
          <xs:documentation>Hartley Wintney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGF">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGG">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGH">
        <xs:annotation>
          <xs:documentation>Odiham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGJ">
        <xs:annotation>
          <xs:documentation>Yateley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGK">
        <xs:annotation>
          <xs:documentation>Yateley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UGGL">
        <xs:annotation>
          <xs:documentation>Yateley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFQ">
        <xs:annotation>
          <xs:documentation>Barncroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFR">
        <xs:annotation>
          <xs:documentation>Battins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFS">
        <xs:annotation>
          <xs:documentation>Bedhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFT">
        <xs:annotation>
          <xs:documentation>Bondfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFU">
        <xs:annotation>
          <xs:documentation>Cowplain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFW">
        <xs:annotation>
          <xs:documentation>Emsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFX">
        <xs:annotation>
          <xs:documentation>Hart Plain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFY">
        <xs:annotation>
          <xs:documentation>Hayling East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHFZ">
        <xs:annotation>
          <xs:documentation>Hayling West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHGA">
        <xs:annotation>
          <xs:documentation>Purbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHGB">
        <xs:annotation>
          <xs:documentation>St Faith's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHGC">
        <xs:annotation>
          <xs:documentation>Stakes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHGD">
        <xs:annotation>
          <xs:documentation>Warren Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UHGE">
        <xs:annotation>
          <xs:documentation>Waterloo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGL">
        <xs:annotation>
          <xs:documentation>Ashurst, Copythorne South and Netley Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGM">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGN">
        <xs:annotation>
          <xs:documentation>Bashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGP">
        <xs:annotation>
          <xs:documentation>Becton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGQ">
        <xs:annotation>
          <xs:documentation>Boldre and Sway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGR">
        <xs:annotation>
          <xs:documentation>Bramshaw, Copythorne North and Minstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGS">
        <xs:annotation>
          <xs:documentation>Bransgore and Burley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGT">
        <xs:annotation>
          <xs:documentation>Brockenhurst and Forest South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGU">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGW">
        <xs:annotation>
          <xs:documentation>Butts Ash and Dibden Purlieu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGX">
        <xs:annotation>
          <xs:documentation>Dibden and Hythe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGY">
        <xs:annotation>
          <xs:documentation>Downlands and Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJGZ">
        <xs:annotation>
          <xs:documentation>Fawley, Blackfield and Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHA">
        <xs:annotation>
          <xs:documentation>Fernhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHB">
        <xs:annotation>
          <xs:documentation>Fordingbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHC">
        <xs:annotation>
          <xs:documentation>Forest North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHD">
        <xs:annotation>
          <xs:documentation>Furzedown and Hardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHE">
        <xs:annotation>
          <xs:documentation>Holbury and North Blackfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHF">
        <xs:annotation>
          <xs:documentation>Hordle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHG">
        <xs:annotation>
          <xs:documentation>Hythe West and Langdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHH">
        <xs:annotation>
          <xs:documentation>Lymington Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHJ">
        <xs:annotation>
          <xs:documentation>Lyndhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHK">
        <xs:annotation>
          <xs:documentation>Marchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHL">
        <xs:annotation>
          <xs:documentation>Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHM">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHN">
        <xs:annotation>
          <xs:documentation>Pennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHP">
        <xs:annotation>
          <xs:documentation>Ringwood East and Sopley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHQ">
        <xs:annotation>
          <xs:documentation>Ringwood North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHR">
        <xs:annotation>
          <xs:documentation>Ringwood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHS">
        <xs:annotation>
          <xs:documentation>Totton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHT">
        <xs:annotation>
          <xs:documentation>Totton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHU">
        <xs:annotation>
          <xs:documentation>Totton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHW">
        <xs:annotation>
          <xs:documentation>Totton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJHX">
        <xs:annotation>
          <xs:documentation>Totton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFR">
        <xs:annotation>
          <xs:documentation>Cove and Southwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFS">
        <xs:annotation>
          <xs:documentation>Empress</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFT">
        <xs:annotation>
          <xs:documentation>Fernhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFU">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFW">
        <xs:annotation>
          <xs:documentation>Heron Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFX">
        <xs:annotation>
          <xs:documentation>Knellwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFY">
        <xs:annotation>
          <xs:documentation>Manor Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULFZ">
        <xs:annotation>
          <xs:documentation>Mayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGA">
        <xs:annotation>
          <xs:documentation>North Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGB">
        <xs:annotation>
          <xs:documentation>Rowhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGC">
        <xs:annotation>
          <xs:documentation>St. John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGD">
        <xs:annotation>
          <xs:documentation>St. Mark's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGE">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24ULGF">
        <xs:annotation>
          <xs:documentation>Westheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGA">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGB">
        <xs:annotation>
          <xs:documentation>Alamein</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGC">
        <xs:annotation>
          <xs:documentation>Ampfield and Braishfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGD">
        <xs:annotation>
          <xs:documentation>Amport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGE">
        <xs:annotation>
          <xs:documentation>Anna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGF">
        <xs:annotation>
          <xs:documentation>Blackwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGG">
        <xs:annotation>
          <xs:documentation>Bourne Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGH">
        <xs:annotation>
          <xs:documentation>Broughton and Stockbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGJ">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGK">
        <xs:annotation>
          <xs:documentation>Chilworth, Nursling and Rownhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGL">
        <xs:annotation>
          <xs:documentation>Cupernham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGM">
        <xs:annotation>
          <xs:documentation>Dun Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGN">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGP">
        <xs:annotation>
          <xs:documentation>Harroway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGQ">
        <xs:annotation>
          <xs:documentation>Kings Somborne and Michelmersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGR">
        <xs:annotation>
          <xs:documentation>Millway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGS">
        <xs:annotation>
          <xs:documentation>North Baddesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGT">
        <xs:annotation>
          <xs:documentation>Over Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGU">
        <xs:annotation>
          <xs:documentation>Penton Bellinger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGW">
        <xs:annotation>
          <xs:documentation>Romsey Extra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGX">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGY">
        <xs:annotation>
          <xs:documentation>Tadburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNGZ">
        <xs:annotation>
          <xs:documentation>Valley Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UNHA">
        <xs:annotation>
          <xs:documentation>Winton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGK">
        <xs:annotation>
          <xs:documentation>Bishops Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGL">
        <xs:annotation>
          <xs:documentation>Boarhunt and Southwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGM">
        <xs:annotation>
          <xs:documentation>Cheriton and Bishops Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGN">
        <xs:annotation>
          <xs:documentation>Colden Common and Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGP">
        <xs:annotation>
          <xs:documentation>Compton and Otterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGQ">
        <xs:annotation>
          <xs:documentation>Denmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGR">
        <xs:annotation>
          <xs:documentation>Droxford, Soberton and Hambledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGS">
        <xs:annotation>
          <xs:documentation>Itchen Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGT">
        <xs:annotation>
          <xs:documentation>Kings Worthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGU">
        <xs:annotation>
          <xs:documentation>Littleton and Harestock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGW">
        <xs:annotation>
          <xs:documentation>Olivers Battery and Badger Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGX">
        <xs:annotation>
          <xs:documentation>Owslebury and Curdridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGY">
        <xs:annotation>
          <xs:documentation>St Barnabas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPGZ">
        <xs:annotation>
          <xs:documentation>St Bartholomew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHA">
        <xs:annotation>
          <xs:documentation>St John and All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHB">
        <xs:annotation>
          <xs:documentation>St Luke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHC">
        <xs:annotation>
          <xs:documentation>St Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHD">
        <xs:annotation>
          <xs:documentation>St Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHE">
        <xs:annotation>
          <xs:documentation>Shedfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHF">
        <xs:annotation>
          <xs:documentation>Sparsholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHG">
        <xs:annotation>
          <xs:documentation>Swanmore and Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHH">
        <xs:annotation>
          <xs:documentation>The Alresfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHJ">
        <xs:annotation>
          <xs:documentation>Upper Meon Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHK">
        <xs:annotation>
          <xs:documentation>Whiteley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHL">
        <xs:annotation>
          <xs:documentation>Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UPHM">
        <xs:annotation>
          <xs:documentation>Wonston and Micheldever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFQ">
        <xs:annotation>
          <xs:documentation>Broxbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFR">
        <xs:annotation>
          <xs:documentation>Bury Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFS">
        <xs:annotation>
          <xs:documentation>Cheshunt Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFT">
        <xs:annotation>
          <xs:documentation>Cheshunt North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFU">
        <xs:annotation>
          <xs:documentation>Flamstead End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFW">
        <xs:annotation>
          <xs:documentation>Goffs Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFX">
        <xs:annotation>
          <xs:documentation>Hoddesdon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFY">
        <xs:annotation>
          <xs:documentation>Hoddesdon Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBFZ">
        <xs:annotation>
          <xs:documentation>Rosedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBGA">
        <xs:annotation>
          <xs:documentation>Rye Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBGB">
        <xs:annotation>
          <xs:documentation>Theobalds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBGC">
        <xs:annotation>
          <xs:documentation>Waltham Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UBGD">
        <xs:annotation>
          <xs:documentation>Wormley &amp; Turnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGF">
        <xs:annotation>
          <xs:documentation>Adeyfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGG">
        <xs:annotation>
          <xs:documentation>Adeyfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGH">
        <xs:annotation>
          <xs:documentation>Aldbury and Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGJ">
        <xs:annotation>
          <xs:documentation>Apsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGK">
        <xs:annotation>
          <xs:documentation>Ashridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGL">
        <xs:annotation>
          <xs:documentation>Bennetts End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGM">
        <xs:annotation>
          <xs:documentation>Berkhamsted Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGN">
        <xs:annotation>
          <xs:documentation>Berkhamsted East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGP">
        <xs:annotation>
          <xs:documentation>Berkhamsted West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGQ">
        <xs:annotation>
          <xs:documentation>Bovingdon, Flaunden &amp; Chipperfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGR">
        <xs:annotation>
          <xs:documentation>Boxmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGS">
        <xs:annotation>
          <xs:documentation>Chaulden &amp; Shrubhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGT">
        <xs:annotation>
          <xs:documentation>Corner Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGU">
        <xs:annotation>
          <xs:documentation>Gadebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGW">
        <xs:annotation>
          <xs:documentation>Grove Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGX">
        <xs:annotation>
          <xs:documentation>Hemel Hempstead Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGY">
        <xs:annotation>
          <xs:documentation>Highfield &amp; St Pauls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCGZ">
        <xs:annotation>
          <xs:documentation>Kings Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHA">
        <xs:annotation>
          <xs:documentation>Leverstock Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHB">
        <xs:annotation>
          <xs:documentation>Nash Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHC">
        <xs:annotation>
          <xs:documentation>Northchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHD">
        <xs:annotation>
          <xs:documentation>Tring Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHE">
        <xs:annotation>
          <xs:documentation>Tring East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHF">
        <xs:annotation>
          <xs:documentation>Tring West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHG">
        <xs:annotation>
          <xs:documentation>Warners End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHH">
        <xs:annotation>
          <xs:documentation>Watling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UCHJ">
        <xs:annotation>
          <xs:documentation>Woodhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGH">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGJ">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGK">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford Meads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGL">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford Silverleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGM">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGN">
        <xs:annotation>
          <xs:documentation>Braughing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGP">
        <xs:annotation>
          <xs:documentation>Buntingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGQ">
        <xs:annotation>
          <xs:documentation>Datchworth &amp; Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGR">
        <xs:annotation>
          <xs:documentation>Great Amwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGS">
        <xs:annotation>
          <xs:documentation>Hertford Bengeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGT">
        <xs:annotation>
          <xs:documentation>Hertford Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGU">
        <xs:annotation>
          <xs:documentation>Hertford Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGW">
        <xs:annotation>
          <xs:documentation>Hertford Kingsmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGX">
        <xs:annotation>
          <xs:documentation>Hertford Rural North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGY">
        <xs:annotation>
          <xs:documentation>Hertford Rural South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDGZ">
        <xs:annotation>
          <xs:documentation>Hertford Sele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHA">
        <xs:annotation>
          <xs:documentation>Hunsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHB">
        <xs:annotation>
          <xs:documentation>Little Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHC">
        <xs:annotation>
          <xs:documentation>Mundens and Cottered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHD">
        <xs:annotation>
          <xs:documentation>Much Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHE">
        <xs:annotation>
          <xs:documentation>Puckeridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHF">
        <xs:annotation>
          <xs:documentation>Sawbridgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHG">
        <xs:annotation>
          <xs:documentation>Stanstead Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHH">
        <xs:annotation>
          <xs:documentation>Thundridge &amp; Standon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHJ">
        <xs:annotation>
          <xs:documentation>Walkern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHK">
        <xs:annotation>
          <xs:documentation>Ware Chadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHL">
        <xs:annotation>
          <xs:documentation>Ware Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHM">
        <xs:annotation>
          <xs:documentation>Ware St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHN">
        <xs:annotation>
          <xs:documentation>Ware Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UDHP">
        <xs:annotation>
          <xs:documentation>Watton-at-Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEFX">
        <xs:annotation>
          <xs:documentation>Aldenham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEFY">
        <xs:annotation>
          <xs:documentation>Aldenham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEFZ">
        <xs:annotation>
          <xs:documentation>Borehamwood Brookmeadow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGA">
        <xs:annotation>
          <xs:documentation>Borehamwood Cowley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGB">
        <xs:annotation>
          <xs:documentation>Borehamwood Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGC">
        <xs:annotation>
          <xs:documentation>Borehamwood Kenilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGD">
        <xs:annotation>
          <xs:documentation>Bushey Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGE">
        <xs:annotation>
          <xs:documentation>Bushey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGF">
        <xs:annotation>
          <xs:documentation>Bushey Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGG">
        <xs:annotation>
          <xs:documentation>Bushey St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGH">
        <xs:annotation>
          <xs:documentation>Elstree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGJ">
        <xs:annotation>
          <xs:documentation>Potters Bar Furzefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGK">
        <xs:annotation>
          <xs:documentation>Potters Bar Oakmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGL">
        <xs:annotation>
          <xs:documentation>Potters Bar Parkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UEGM">
        <xs:annotation>
          <xs:documentation>Shenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGC">
        <xs:annotation>
          <xs:documentation>Arbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGD">
        <xs:annotation>
          <xs:documentation>Baldock East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGE">
        <xs:annotation>
          <xs:documentation>Baldock Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGF">
        <xs:annotation>
          <xs:documentation>Cadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGG">
        <xs:annotation>
          <xs:documentation>Codicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGH">
        <xs:annotation>
          <xs:documentation>Ermine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGJ">
        <xs:annotation>
          <xs:documentation>Graveley &amp; Wymondley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGK">
        <xs:annotation>
          <xs:documentation>Hitchin Bearton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGL">
        <xs:annotation>
          <xs:documentation>Hitchin Highbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGM">
        <xs:annotation>
          <xs:documentation>Hitchin Oughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGN">
        <xs:annotation>
          <xs:documentation>Hitchin Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGP">
        <xs:annotation>
          <xs:documentation>Hitchin Walsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGQ">
        <xs:annotation>
          <xs:documentation>Hitchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGR">
        <xs:annotation>
          <xs:documentation>Hoo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGS">
        <xs:annotation>
          <xs:documentation>Kimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGT">
        <xs:annotation>
          <xs:documentation>Knebworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGU">
        <xs:annotation>
          <xs:documentation>Letchworth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGW">
        <xs:annotation>
          <xs:documentation>Letchworth Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGX">
        <xs:annotation>
          <xs:documentation>Letchworth South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGY">
        <xs:annotation>
          <xs:documentation>Letchworth South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFGZ">
        <xs:annotation>
          <xs:documentation>Letchworth Wilbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFHA">
        <xs:annotation>
          <xs:documentation>Offa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFHB">
        <xs:annotation>
          <xs:documentation>Royston Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFHC">
        <xs:annotation>
          <xs:documentation>Royston Meridian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFHD">
        <xs:annotation>
          <xs:documentation>Royston Palace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UFHE">
        <xs:annotation>
          <xs:documentation>Weston and Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGFX">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGFY">
        <xs:annotation>
          <xs:documentation>Batchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGFZ">
        <xs:annotation>
          <xs:documentation>Clarence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGA">
        <xs:annotation>
          <xs:documentation>Colney Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGB">
        <xs:annotation>
          <xs:documentation>Cunningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGC">
        <xs:annotation>
          <xs:documentation>Harpenden East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGD">
        <xs:annotation>
          <xs:documentation>Harpenden North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGE">
        <xs:annotation>
          <xs:documentation>Harpenden South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGF">
        <xs:annotation>
          <xs:documentation>Harpenden West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGG">
        <xs:annotation>
          <xs:documentation>London Colney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGH">
        <xs:annotation>
          <xs:documentation>Marshalswick North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGJ">
        <xs:annotation>
          <xs:documentation>Marshalswick South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGK">
        <xs:annotation>
          <xs:documentation>Park Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGL">
        <xs:annotation>
          <xs:documentation>Redbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGM">
        <xs:annotation>
          <xs:documentation>St Peters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGN">
        <xs:annotation>
          <xs:documentation>St Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGP">
        <xs:annotation>
          <xs:documentation>Sandridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGQ">
        <xs:annotation>
          <xs:documentation>Sopwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGR">
        <xs:annotation>
          <xs:documentation>Verulam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UGGS">
        <xs:annotation>
          <xs:documentation>Wheathampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFQ">
        <xs:annotation>
          <xs:documentation>Bandley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFR">
        <xs:annotation>
          <xs:documentation>Bedwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFS">
        <xs:annotation>
          <xs:documentation>Chells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFT">
        <xs:annotation>
          <xs:documentation>Longmeadow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFU">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFW">
        <xs:annotation>
          <xs:documentation>Martins Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFX">
        <xs:annotation>
          <xs:documentation>Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFY">
        <xs:annotation>
          <xs:documentation>Pin Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHFZ">
        <xs:annotation>
          <xs:documentation>Roebuck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHGA">
        <xs:annotation>
          <xs:documentation>St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHGB">
        <xs:annotation>
          <xs:documentation>Shephall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHGC">
        <xs:annotation>
          <xs:documentation>Symonds Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UHGD">
        <xs:annotation>
          <xs:documentation>Woodfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJFX">
        <xs:annotation>
          <xs:documentation>Abbots Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJFY">
        <xs:annotation>
          <xs:documentation>Ashridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJFZ">
        <xs:annotation>
          <xs:documentation>Bedmond &amp; Primrose Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGA">
        <xs:annotation>
          <xs:documentation>Carpenders Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGB">
        <xs:annotation>
          <xs:documentation>Chorleywood East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGC">
        <xs:annotation>
          <xs:documentation>Chorleywood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGD">
        <xs:annotation>
          <xs:documentation>Croxley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGE">
        <xs:annotation>
          <xs:documentation>Croxley Green North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGF">
        <xs:annotation>
          <xs:documentation>Croxley Green South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGG">
        <xs:annotation>
          <xs:documentation>Hayling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGH">
        <xs:annotation>
          <xs:documentation>Langleybury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGJ">
        <xs:annotation>
          <xs:documentation>Leavesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGK">
        <xs:annotation>
          <xs:documentation>Maple Cross &amp; Mill End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGL">
        <xs:annotation>
          <xs:documentation>Moor Park &amp; Eastbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGM">
        <xs:annotation>
          <xs:documentation>Northwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGN">
        <xs:annotation>
          <xs:documentation>Oxhey Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGP">
        <xs:annotation>
          <xs:documentation>Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGQ">
        <xs:annotation>
          <xs:documentation>Rickmansworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGR">
        <xs:annotation>
          <xs:documentation>Rickmansworth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJGS">
        <xs:annotation>
          <xs:documentation>Sarratt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFN">
        <xs:annotation>
          <xs:documentation>Callowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFP">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFQ">
        <xs:annotation>
          <xs:documentation>Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFR">
        <xs:annotation>
          <xs:documentation>Leggatts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFS">
        <xs:annotation>
          <xs:documentation>Meriden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFT">
        <xs:annotation>
          <xs:documentation>Nascot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFU">
        <xs:annotation>
          <xs:documentation>Oxhey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFW">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFX">
        <xs:annotation>
          <xs:documentation>Stanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFY">
        <xs:annotation>
          <xs:documentation>Tudor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKFZ">
        <xs:annotation>
          <xs:documentation>Vicarage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UKGA">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGJ">
        <xs:annotation>
          <xs:documentation>Brookmans Park and Little Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGK">
        <xs:annotation>
          <xs:documentation>Haldens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGL">
        <xs:annotation>
          <xs:documentation>Handside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGM">
        <xs:annotation>
          <xs:documentation>Hatfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGN">
        <xs:annotation>
          <xs:documentation>Hatfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGP">
        <xs:annotation>
          <xs:documentation>Hatfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGQ">
        <xs:annotation>
          <xs:documentation>Hatfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGR">
        <xs:annotation>
          <xs:documentation>Hatfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGS">
        <xs:annotation>
          <xs:documentation>Hollybush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGT">
        <xs:annotation>
          <xs:documentation>Howlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGU">
        <xs:annotation>
          <xs:documentation>Northaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGW">
        <xs:annotation>
          <xs:documentation>Panshanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGX">
        <xs:annotation>
          <xs:documentation>Peartree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGY">
        <xs:annotation>
          <xs:documentation>Sherrards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULGZ">
        <xs:annotation>
          <xs:documentation>Welham Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULHA">
        <xs:annotation>
          <xs:documentation>Welwyn North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26ULHB">
        <xs:annotation>
          <xs:documentation>Welwyn South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBGZ">
        <xs:annotation>
          <xs:documentation>Aylesford Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHA">
        <xs:annotation>
          <xs:documentation>Beaver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHB">
        <xs:annotation>
          <xs:documentation>Biddenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHC">
        <xs:annotation>
          <xs:documentation>Bockhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHD">
        <xs:annotation>
          <xs:documentation>Boughton Aluph and Eastwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHE">
        <xs:annotation>
          <xs:documentation>Bybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHF">
        <xs:annotation>
          <xs:documentation>Charing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHG">
        <xs:annotation>
          <xs:documentation>Downs North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHH">
        <xs:annotation>
          <xs:documentation>Downs West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHJ">
        <xs:annotation>
          <xs:documentation>Godinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHK">
        <xs:annotation>
          <xs:documentation>Great Chart with Singleton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHL">
        <xs:annotation>
          <xs:documentation>Highfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHM">
        <xs:annotation>
          <xs:documentation>Isle of Oxney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHN">
        <xs:annotation>
          <xs:documentation>Kennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHP">
        <xs:annotation>
          <xs:documentation>Little Burton Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHQ">
        <xs:annotation>
          <xs:documentation>Norman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHR">
        <xs:annotation>
          <xs:documentation>North Willesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHS">
        <xs:annotation>
          <xs:documentation>Park Farm North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHT">
        <xs:annotation>
          <xs:documentation>Park Farm South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHU">
        <xs:annotation>
          <xs:documentation>Rolvenden and Tenterden West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHW">
        <xs:annotation>
          <xs:documentation>St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHX">
        <xs:annotation>
          <xs:documentation>Saxon Shore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHY">
        <xs:annotation>
          <xs:documentation>Singleton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBHZ">
        <xs:annotation>
          <xs:documentation>South Willesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJA">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJB">
        <xs:annotation>
          <xs:documentation>Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJC">
        <xs:annotation>
          <xs:documentation>Tenterden North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJD">
        <xs:annotation>
          <xs:documentation>Tenterden South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJE">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJF">
        <xs:annotation>
          <xs:documentation>Washford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJG">
        <xs:annotation>
          <xs:documentation>Weald Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJH">
        <xs:annotation>
          <xs:documentation>Weald East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJJ">
        <xs:annotation>
          <xs:documentation>Weald North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJK">
        <xs:annotation>
          <xs:documentation>Weald South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UBJL">
        <xs:annotation>
          <xs:documentation>Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGC">
        <xs:annotation>
          <xs:documentation>Barham Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGD">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGE">
        <xs:annotation>
          <xs:documentation>Blean Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGF">
        <xs:annotation>
          <xs:documentation>Chartham and Stone Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGG">
        <xs:annotation>
          <xs:documentation>Chestfield and Swalecliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGH">
        <xs:annotation>
          <xs:documentation>Gorrell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGJ">
        <xs:annotation>
          <xs:documentation>Greenhill and Eddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGK">
        <xs:annotation>
          <xs:documentation>Harbledown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGL">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGM">
        <xs:annotation>
          <xs:documentation>Herne and Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGN">
        <xs:annotation>
          <xs:documentation>Heron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGP">
        <xs:annotation>
          <xs:documentation>Little Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGQ">
        <xs:annotation>
          <xs:documentation>Marshside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGR">
        <xs:annotation>
          <xs:documentation>North Nailbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGS">
        <xs:annotation>
          <xs:documentation>Northgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGT">
        <xs:annotation>
          <xs:documentation>Reculver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGU">
        <xs:annotation>
          <xs:documentation>St Stephens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGW">
        <xs:annotation>
          <xs:documentation>Seasalter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGX">
        <xs:annotation>
          <xs:documentation>Sturry North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGY">
        <xs:annotation>
          <xs:documentation>Sturry South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCGZ">
        <xs:annotation>
          <xs:documentation>Tankerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCHA">
        <xs:annotation>
          <xs:documentation>West Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCHB">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UCHC">
        <xs:annotation>
          <xs:documentation>Wincheap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGA">
        <xs:annotation>
          <xs:documentation>Bean and Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGB">
        <xs:annotation>
          <xs:documentation>Brent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGC">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGD">
        <xs:annotation>
          <xs:documentation>Greenhithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGE">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGF">
        <xs:annotation>
          <xs:documentation>Joyce Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGG">
        <xs:annotation>
          <xs:documentation>Joydens Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGH">
        <xs:annotation>
          <xs:documentation>Littlebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGJ">
        <xs:annotation>
          <xs:documentation>Longfield, New Barn and Southfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGK">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGL">
        <xs:annotation>
          <xs:documentation>Princes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGM">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGN">
        <xs:annotation>
          <xs:documentation>Sutton-at-Hone and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGP">
        <xs:annotation>
          <xs:documentation>Swanscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGQ">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGR">
        <xs:annotation>
          <xs:documentation>West Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UDGS">
        <xs:annotation>
          <xs:documentation>Wilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGJ">
        <xs:annotation>
          <xs:documentation>Aylesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGK">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGL">
        <xs:annotation>
          <xs:documentation>Capel-le-Ferne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGM">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGN">
        <xs:annotation>
          <xs:documentation>Eastry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGP">
        <xs:annotation>
          <xs:documentation>Eythorne and Shepherdswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGQ">
        <xs:annotation>
          <xs:documentation>Little Stour and Ashstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGR">
        <xs:annotation>
          <xs:documentation>Lydden and Temple Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGS">
        <xs:annotation>
          <xs:documentation>Maxton, Elms Vale and Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGT">
        <xs:annotation>
          <xs:documentation>Middle Deal and Sholden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGU">
        <xs:annotation>
          <xs:documentation>Mill Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGW">
        <xs:annotation>
          <xs:documentation>North Deal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGX">
        <xs:annotation>
          <xs:documentation>Ringwould</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGY">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEGZ">
        <xs:annotation>
          <xs:documentation>St Margaret's-at-Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHA">
        <xs:annotation>
          <xs:documentation>St Radigunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHB">
        <xs:annotation>
          <xs:documentation>Sandwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHC">
        <xs:annotation>
          <xs:documentation>Tower Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHD">
        <xs:annotation>
          <xs:documentation>Town and Pier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHE">
        <xs:annotation>
          <xs:documentation>Walmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UEHF">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGFW">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGFX">
        <xs:annotation>
          <xs:documentation>Chalk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGFY">
        <xs:annotation>
          <xs:documentation>Coldharbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGFZ">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGA">
        <xs:annotation>
          <xs:documentation>Istead Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGB">
        <xs:annotation>
          <xs:documentation>Meopham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGC">
        <xs:annotation>
          <xs:documentation>Meopham South and Vigo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGD">
        <xs:annotation>
          <xs:documentation>Northfleet North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGE">
        <xs:annotation>
          <xs:documentation>Northfleet South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGF">
        <xs:annotation>
          <xs:documentation>Painters Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGG">
        <xs:annotation>
          <xs:documentation>Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGH">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGJ">
        <xs:annotation>
          <xs:documentation>Riverview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGK">
        <xs:annotation>
          <xs:documentation>Shorne, Cobham and Luddesdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGL">
        <xs:annotation>
          <xs:documentation>Singlewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGM">
        <xs:annotation>
          <xs:documentation>Westcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGN">
        <xs:annotation>
          <xs:documentation>Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UGGP">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGF">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGG">
        <xs:annotation>
          <xs:documentation>Barming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGH">
        <xs:annotation>
          <xs:documentation>Bearsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGJ">
        <xs:annotation>
          <xs:documentation>Boughton Monchelsea and Chart Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGK">
        <xs:annotation>
          <xs:documentation>Boxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGL">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGM">
        <xs:annotation>
          <xs:documentation>Coxheath and Hunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGN">
        <xs:annotation>
          <xs:documentation>Detling and Thurnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGP">
        <xs:annotation>
          <xs:documentation>Downswood and Otham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGQ">
        <xs:annotation>
          <xs:documentation>East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGR">
        <xs:annotation>
          <xs:documentation>Fant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGS">
        <xs:annotation>
          <xs:documentation>Harrietsham and Lenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGT">
        <xs:annotation>
          <xs:documentation>Headcorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGU">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGW">
        <xs:annotation>
          <xs:documentation>High Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGX">
        <xs:annotation>
          <xs:documentation>Leeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGY">
        <xs:annotation>
          <xs:documentation>Loose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHGZ">
        <xs:annotation>
          <xs:documentation>Marden and Yalding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHA">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHB">
        <xs:annotation>
          <xs:documentation>North Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHC">
        <xs:annotation>
          <xs:documentation>Park Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHD">
        <xs:annotation>
          <xs:documentation>Shepway North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHE">
        <xs:annotation>
          <xs:documentation>Shepway South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHF">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHG">
        <xs:annotation>
          <xs:documentation>Staplehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UHHH">
        <xs:annotation>
          <xs:documentation>Sutton Valence and Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGK">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGL">
        <xs:annotation>
          <xs:documentation>Brasted, Chevening and Sundridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGM">
        <xs:annotation>
          <xs:documentation>Cowden and Hever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGN">
        <xs:annotation>
          <xs:documentation>Crockenhill and Well Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGP">
        <xs:annotation>
          <xs:documentation>Dunton Green and Riverhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGQ">
        <xs:annotation>
          <xs:documentation>Edenbridge North and East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGR">
        <xs:annotation>
          <xs:documentation>Edenbridge South and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGS">
        <xs:annotation>
          <xs:documentation>Eynsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGT">
        <xs:annotation>
          <xs:documentation>Farningham, Horton Kirby and South Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGU">
        <xs:annotation>
          <xs:documentation>Fawkham and West Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGW">
        <xs:annotation>
          <xs:documentation>Halstead, Knockholt and Badgers Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGX">
        <xs:annotation>
          <xs:documentation>Hartley and Hodsoll Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGY">
        <xs:annotation>
          <xs:documentation>Hextable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKGZ">
        <xs:annotation>
          <xs:documentation>Kemsing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHA">
        <xs:annotation>
          <xs:documentation>Leigh and Chiddingstone Causeway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHB">
        <xs:annotation>
          <xs:documentation>Otford and Shoreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHC">
        <xs:annotation>
          <xs:documentation>Penshurst, Fordcombe and Chiddingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHD">
        <xs:annotation>
          <xs:documentation>Seal and Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHE">
        <xs:annotation>
          <xs:documentation>Sevenoaks Eastern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHF">
        <xs:annotation>
          <xs:documentation>Sevenoaks Kippington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHG">
        <xs:annotation>
          <xs:documentation>Sevenoaks Northern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHH">
        <xs:annotation>
          <xs:documentation>Sevenoaks Town and St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHJ">
        <xs:annotation>
          <xs:documentation>Swanley Christchurch and Swanley Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHK">
        <xs:annotation>
          <xs:documentation>Swanley St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHL">
        <xs:annotation>
          <xs:documentation>Swanley White Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UKHM">
        <xs:annotation>
          <xs:documentation>Westerham and Crockham Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGC">
        <xs:annotation>
          <xs:documentation>Dymchurch and St Mary's Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGD">
        <xs:annotation>
          <xs:documentation>Elham and Stelling Minnis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGE">
        <xs:annotation>
          <xs:documentation>Folkestone Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGF">
        <xs:annotation>
          <xs:documentation>Folkestone East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGG">
        <xs:annotation>
          <xs:documentation>Folkestone Foord</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGH">
        <xs:annotation>
          <xs:documentation>Folkestone Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGJ">
        <xs:annotation>
          <xs:documentation>Folkestone Harvey Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGK">
        <xs:annotation>
          <xs:documentation>Folkestone Harvey West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGL">
        <xs:annotation>
          <xs:documentation>Folkestone Morehall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGM">
        <xs:annotation>
          <xs:documentation>Folkestone Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGN">
        <xs:annotation>
          <xs:documentation>Folkestone Sandgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGP">
        <xs:annotation>
          <xs:documentation>Hythe Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGQ">
        <xs:annotation>
          <xs:documentation>Hythe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGR">
        <xs:annotation>
          <xs:documentation>Hythe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGS">
        <xs:annotation>
          <xs:documentation>Lydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGT">
        <xs:annotation>
          <xs:documentation>Lympne and Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGU">
        <xs:annotation>
          <xs:documentation>New Romney Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGW">
        <xs:annotation>
          <xs:documentation>New Romney Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGX">
        <xs:annotation>
          <xs:documentation>North Downs East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGY">
        <xs:annotation>
          <xs:documentation>North Downs West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULGZ">
        <xs:annotation>
          <xs:documentation>Romney Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29ULHA">
        <xs:annotation>
          <xs:documentation>Tolsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGC">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGD">
        <xs:annotation>
          <xs:documentation>Borden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGE">
        <xs:annotation>
          <xs:documentation>Boughton and Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGF">
        <xs:annotation>
          <xs:documentation>Chalkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGG">
        <xs:annotation>
          <xs:documentation>Davington Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGH">
        <xs:annotation>
          <xs:documentation>East Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGJ">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGK">
        <xs:annotation>
          <xs:documentation>Hartlip, Newington and Upchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGL">
        <xs:annotation>
          <xs:documentation>Iwade and Lower Halstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGM">
        <xs:annotation>
          <xs:documentation>Kemsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGN">
        <xs:annotation>
          <xs:documentation>Leysdown and Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGP">
        <xs:annotation>
          <xs:documentation>Milton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGQ">
        <xs:annotation>
          <xs:documentation>Minster Cliffs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGR">
        <xs:annotation>
          <xs:documentation>Murston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGS">
        <xs:annotation>
          <xs:documentation>Queenborough and Halfway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGT">
        <xs:annotation>
          <xs:documentation>Roman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGU">
        <xs:annotation>
          <xs:documentation>St Ann's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGW">
        <xs:annotation>
          <xs:documentation>St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGX">
        <xs:annotation>
          <xs:documentation>Sheerness East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGY">
        <xs:annotation>
          <xs:documentation>Sheerness West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMGZ">
        <xs:annotation>
          <xs:documentation>Sheppey Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMHA">
        <xs:annotation>
          <xs:documentation>Teynham and Lynsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMHB">
        <xs:annotation>
          <xs:documentation>Watling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMHC">
        <xs:annotation>
          <xs:documentation>West Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UMHD">
        <xs:annotation>
          <xs:documentation>Woodstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGE">
        <xs:annotation>
          <xs:documentation>Beacon Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGF">
        <xs:annotation>
          <xs:documentation>Birchington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGG">
        <xs:annotation>
          <xs:documentation>Birchington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGH">
        <xs:annotation>
          <xs:documentation>Bradstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGJ">
        <xs:annotation>
          <xs:documentation>Central Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGK">
        <xs:annotation>
          <xs:documentation>Cliffsend and Pegwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGL">
        <xs:annotation>
          <xs:documentation>Cliftonville East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGM">
        <xs:annotation>
          <xs:documentation>Cliftonville West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGN">
        <xs:annotation>
          <xs:documentation>Dane Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGP">
        <xs:annotation>
          <xs:documentation>Eastcliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGQ">
        <xs:annotation>
          <xs:documentation>Garlinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGR">
        <xs:annotation>
          <xs:documentation>Kingsgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGS">
        <xs:annotation>
          <xs:documentation>Margate Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGT">
        <xs:annotation>
          <xs:documentation>Nethercourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGU">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGW">
        <xs:annotation>
          <xs:documentation>Northwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGX">
        <xs:annotation>
          <xs:documentation>St Peters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGY">
        <xs:annotation>
          <xs:documentation>Salmestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNGZ">
        <xs:annotation>
          <xs:documentation>Sir Moses Montefiore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNHA">
        <xs:annotation>
          <xs:documentation>Thanet Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNHB">
        <xs:annotation>
          <xs:documentation>Viking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNHC">
        <xs:annotation>
          <xs:documentation>Westbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UNHD">
        <xs:annotation>
          <xs:documentation>Westgate-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHJ">
        <xs:annotation>
          <xs:documentation>Aylesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHK">
        <xs:annotation>
          <xs:documentation>Blue Bell Hill and Walderslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHL">
        <xs:annotation>
          <xs:documentation>Borough Green and Long Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHM">
        <xs:annotation>
          <xs:documentation>Burham, Eccles and Wouldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHN">
        <xs:annotation>
          <xs:documentation>Cage Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHP">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHQ">
        <xs:annotation>
          <xs:documentation>Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHR">
        <xs:annotation>
          <xs:documentation>Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHS">
        <xs:annotation>
          <xs:documentation>East Malling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHT">
        <xs:annotation>
          <xs:documentation>East Peckham and Golden Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHU">
        <xs:annotation>
          <xs:documentation>Hadlow, Mereworth and West Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHW">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHX">
        <xs:annotation>
          <xs:documentation>Hildenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHY">
        <xs:annotation>
          <xs:documentation>Ightham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPHZ">
        <xs:annotation>
          <xs:documentation>Judd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJA">
        <xs:annotation>
          <xs:documentation>Kings Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJB">
        <xs:annotation>
          <xs:documentation>Larkfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJC">
        <xs:annotation>
          <xs:documentation>Larkfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJD">
        <xs:annotation>
          <xs:documentation>Medway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJE">
        <xs:annotation>
          <xs:documentation>Snodland East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJF">
        <xs:annotation>
          <xs:documentation>Snodland West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJG">
        <xs:annotation>
          <xs:documentation>Trench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJH">
        <xs:annotation>
          <xs:documentation>Vauxhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJJ">
        <xs:annotation>
          <xs:documentation>Wateringbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJK">
        <xs:annotation>
          <xs:documentation>West Malling and Leybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UPJL">
        <xs:annotation>
          <xs:documentation>Wrotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGB">
        <xs:annotation>
          <xs:documentation>Benenden and Cranbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGC">
        <xs:annotation>
          <xs:documentation>Brenchley and Horsmonden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGD">
        <xs:annotation>
          <xs:documentation>Broadwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGE">
        <xs:annotation>
          <xs:documentation>Capel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGF">
        <xs:annotation>
          <xs:documentation>Culverden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGG">
        <xs:annotation>
          <xs:documentation>Frittenden and Sissinghurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGH">
        <xs:annotation>
          <xs:documentation>Goudhurst and Lamberhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGJ">
        <xs:annotation>
          <xs:documentation>Hawkhurst and Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGK">
        <xs:annotation>
          <xs:documentation>Paddock Wood East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGL">
        <xs:annotation>
          <xs:documentation>Paddock Wood West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGM">
        <xs:annotation>
          <xs:documentation>Pantiles and St Mark's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGN">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGP">
        <xs:annotation>
          <xs:documentation>Pembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGQ">
        <xs:annotation>
          <xs:documentation>Rusthall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGR">
        <xs:annotation>
          <xs:documentation>St James'</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGS">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGT">
        <xs:annotation>
          <xs:documentation>Sherwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGU">
        <xs:annotation>
          <xs:documentation>Southborough and High Brooms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGW">
        <xs:annotation>
          <xs:documentation>Southborough North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQGX">
        <xs:annotation>
          <xs:documentation>Speldhurst and Bidborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGQ">
        <xs:annotation>
          <xs:documentation>Bank Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGR">
        <xs:annotation>
          <xs:documentation>Briercliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGS">
        <xs:annotation>
          <xs:documentation>Brunshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGT">
        <xs:annotation>
          <xs:documentation>Cliviger with Worsthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGU">
        <xs:annotation>
          <xs:documentation>Coal Clough with Deerplay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGW">
        <xs:annotation>
          <xs:documentation>Daneshouse with Stoneyholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGX">
        <xs:annotation>
          <xs:documentation>Gannow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGY">
        <xs:annotation>
          <xs:documentation>Gawthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDGZ">
        <xs:annotation>
          <xs:documentation>Hapton with Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHA">
        <xs:annotation>
          <xs:documentation>Lanehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHB">
        <xs:annotation>
          <xs:documentation>Queensgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHC">
        <xs:annotation>
          <xs:documentation>Rosegrove with Lowerhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHD">
        <xs:annotation>
          <xs:documentation>Rosehill with Burnley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHE">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UDHF">
        <xs:annotation>
          <xs:documentation>Whittlefield with Ightenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEFZ">
        <xs:annotation>
          <xs:documentation>Adlington and Anderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGA">
        <xs:annotation>
          <xs:documentation>Astley and Buckshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGB">
        <xs:annotation>
          <xs:documentation>Brindle and Hoghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGC">
        <xs:annotation>
          <xs:documentation>Chisnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGD">
        <xs:annotation>
          <xs:documentation>Chorley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGE">
        <xs:annotation>
          <xs:documentation>Chorley North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGF">
        <xs:annotation>
          <xs:documentation>Chorley North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGG">
        <xs:annotation>
          <xs:documentation>Chorley South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGH">
        <xs:annotation>
          <xs:documentation>Chorley South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGJ">
        <xs:annotation>
          <xs:documentation>Clayton-le-Woods and Whittle-le-Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGK">
        <xs:annotation>
          <xs:documentation>Clayton-le-Woods North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGL">
        <xs:annotation>
          <xs:documentation>Clayton-le-Woods West and Cuerden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGM">
        <xs:annotation>
          <xs:documentation>Coppull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGN">
        <xs:annotation>
          <xs:documentation>Eccleston and Mawdesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGP">
        <xs:annotation>
          <xs:documentation>Euxton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGQ">
        <xs:annotation>
          <xs:documentation>Euxton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGR">
        <xs:annotation>
          <xs:documentation>Heath Charnock and Rivington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGS">
        <xs:annotation>
          <xs:documentation>Lostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGT">
        <xs:annotation>
          <xs:documentation>Pennine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UEGU">
        <xs:annotation>
          <xs:documentation>Wheelton and Withnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFFZ">
        <xs:annotation>
          <xs:documentation>Ansdell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGA">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGB">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGC">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGD">
        <xs:annotation>
          <xs:documentation>Elswick and Little Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGE">
        <xs:annotation>
          <xs:documentation>Fairhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGF">
        <xs:annotation>
          <xs:documentation>Freckleton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGG">
        <xs:annotation>
          <xs:documentation>Freckleton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGH">
        <xs:annotation>
          <xs:documentation>Heyhouses</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGJ">
        <xs:annotation>
          <xs:documentation>Kilnhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGK">
        <xs:annotation>
          <xs:documentation>Kirkham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGL">
        <xs:annotation>
          <xs:documentation>Kirkham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGM">
        <xs:annotation>
          <xs:documentation>Medlar-with-Wesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGN">
        <xs:annotation>
          <xs:documentation>Newton and Treales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGP">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGQ">
        <xs:annotation>
          <xs:documentation>Ribby-with-Wrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGR">
        <xs:annotation>
          <xs:documentation>St Johns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGS">
        <xs:annotation>
          <xs:documentation>St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGT">
        <xs:annotation>
          <xs:documentation>Singleton and Greenhalgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGU">
        <xs:annotation>
          <xs:documentation>Staining and Weeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UFGW">
        <xs:annotation>
          <xs:documentation>Warton and Westby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFT">
        <xs:annotation>
          <xs:documentation>Altham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFU">
        <xs:annotation>
          <xs:documentation>Barnfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFW">
        <xs:annotation>
          <xs:documentation>Baxenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFX">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFY">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGFZ">
        <xs:annotation>
          <xs:documentation>Clayton-le-Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGA">
        <xs:annotation>
          <xs:documentation>Huncoat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGB">
        <xs:annotation>
          <xs:documentation>Immanuel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGC">
        <xs:annotation>
          <xs:documentation>Milnshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGD">
        <xs:annotation>
          <xs:documentation>Netherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGE">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGF">
        <xs:annotation>
          <xs:documentation>Peel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGG">
        <xs:annotation>
          <xs:documentation>Rishton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGH">
        <xs:annotation>
          <xs:documentation>St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGJ">
        <xs:annotation>
          <xs:documentation>St Oswald's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UGGK">
        <xs:annotation>
          <xs:documentation>Spring Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGG">
        <xs:annotation>
          <xs:documentation>Bare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGH">
        <xs:annotation>
          <xs:documentation>Bolton-le-Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGJ">
        <xs:annotation>
          <xs:documentation>Bulk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGK">
        <xs:annotation>
          <xs:documentation>Carnforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGL">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGM">
        <xs:annotation>
          <xs:documentation>Duke's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGN">
        <xs:annotation>
          <xs:documentation>Ellel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGP">
        <xs:annotation>
          <xs:documentation>Halton-with-Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGQ">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGR">
        <xs:annotation>
          <xs:documentation>Heysham Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGS">
        <xs:annotation>
          <xs:documentation>Heysham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGT">
        <xs:annotation>
          <xs:documentation>Heysham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGU">
        <xs:annotation>
          <xs:documentation>John O'Gaunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGW">
        <xs:annotation>
          <xs:documentation>Kellet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGX">
        <xs:annotation>
          <xs:documentation>Lower Lune Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGY">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHGZ">
        <xs:annotation>
          <xs:documentation>Poulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHA">
        <xs:annotation>
          <xs:documentation>Scotforth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHB">
        <xs:annotation>
          <xs:documentation>Scotforth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHC">
        <xs:annotation>
          <xs:documentation>Silverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHD">
        <xs:annotation>
          <xs:documentation>Skerton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHE">
        <xs:annotation>
          <xs:documentation>Skerton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHF">
        <xs:annotation>
          <xs:documentation>Slyne-with-Hest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHG">
        <xs:annotation>
          <xs:documentation>Torrisholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHH">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHJ">
        <xs:annotation>
          <xs:documentation>Upper Lune Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHK">
        <xs:annotation>
          <xs:documentation>Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UHHL">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJFW">
        <xs:annotation>
          <xs:documentation>Barrowford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJFX">
        <xs:annotation>
          <xs:documentation>Blacko and Higherford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJFY">
        <xs:annotation>
          <xs:documentation>Boulsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJFZ">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGA">
        <xs:annotation>
          <xs:documentation>Brierfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGB">
        <xs:annotation>
          <xs:documentation>Clover Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGC">
        <xs:annotation>
          <xs:documentation>Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGD">
        <xs:annotation>
          <xs:documentation>Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGE">
        <xs:annotation>
          <xs:documentation>Earby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGF">
        <xs:annotation>
          <xs:documentation>Foulridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGG">
        <xs:annotation>
          <xs:documentation>Higham and Pendleside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGH">
        <xs:annotation>
          <xs:documentation>Horsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGJ">
        <xs:annotation>
          <xs:documentation>Marsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGK">
        <xs:annotation>
          <xs:documentation>Old Laund Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGL">
        <xs:annotation>
          <xs:documentation>Reedley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGM">
        <xs:annotation>
          <xs:documentation>Southfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGN">
        <xs:annotation>
          <xs:documentation>Vivary Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGP">
        <xs:annotation>
          <xs:documentation>Walverden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGQ">
        <xs:annotation>
          <xs:documentation>Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJGR">
        <xs:annotation>
          <xs:documentation>Whitefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKFW">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKFX">
        <xs:annotation>
          <xs:documentation>Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKFY">
        <xs:annotation>
          <xs:documentation>Cadley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKFZ">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGA">
        <xs:annotation>
          <xs:documentation>Deepdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGB">
        <xs:annotation>
          <xs:documentation>Fishwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGC">
        <xs:annotation>
          <xs:documentation>Garrison</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGD">
        <xs:annotation>
          <xs:documentation>Greyfriars</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGE">
        <xs:annotation>
          <xs:documentation>Ingol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGF">
        <xs:annotation>
          <xs:documentation>Larches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGG">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGH">
        <xs:annotation>
          <xs:documentation>Moor Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGJ">
        <xs:annotation>
          <xs:documentation>Preston Rural East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGK">
        <xs:annotation>
          <xs:documentation>Preston Rural North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGL">
        <xs:annotation>
          <xs:documentation>Ribbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGM">
        <xs:annotation>
          <xs:documentation>Riversway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGN">
        <xs:annotation>
          <xs:documentation>St George's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGP">
        <xs:annotation>
          <xs:documentation>St Matthew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGQ">
        <xs:annotation>
          <xs:documentation>Sharoe Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGR">
        <xs:annotation>
          <xs:documentation>Town Centre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGS">
        <xs:annotation>
          <xs:documentation>Tulketh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UKGT">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGB">
        <xs:annotation>
          <xs:documentation>Aighton, Bailey and Chaigley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGC">
        <xs:annotation>
          <xs:documentation>Alston and Hothersall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGD">
        <xs:annotation>
          <xs:documentation>Billington and Old Langho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGE">
        <xs:annotation>
          <xs:documentation>Bowland, Newton and Slaidburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGF">
        <xs:annotation>
          <xs:documentation>Chatburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGG">
        <xs:annotation>
          <xs:documentation>Chipping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGH">
        <xs:annotation>
          <xs:documentation>Clayton-le-Dale with Ramsgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGJ">
        <xs:annotation>
          <xs:documentation>Derby and Thornley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGK">
        <xs:annotation>
          <xs:documentation>Dilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGL">
        <xs:annotation>
          <xs:documentation>Edisford and Low Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGM">
        <xs:annotation>
          <xs:documentation>Gisburn, Rimington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGN">
        <xs:annotation>
          <xs:documentation>Langho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGP">
        <xs:annotation>
          <xs:documentation>Littlemoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGQ">
        <xs:annotation>
          <xs:documentation>Mellor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGR">
        <xs:annotation>
          <xs:documentation>Primrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGS">
        <xs:annotation>
          <xs:documentation>Read and Simonstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGT">
        <xs:annotation>
          <xs:documentation>Ribchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGU">
        <xs:annotation>
          <xs:documentation>Sabden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGW">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGX">
        <xs:annotation>
          <xs:documentation>Salthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGY">
        <xs:annotation>
          <xs:documentation>Waddington and West Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULGZ">
        <xs:annotation>
          <xs:documentation>Whalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULHA">
        <xs:annotation>
          <xs:documentation>Wilpshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30ULHB">
        <xs:annotation>
          <xs:documentation>Wiswell and Pendleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFP">
        <xs:annotation>
          <xs:documentation>Cribden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFQ">
        <xs:annotation>
          <xs:documentation>Eden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFR">
        <xs:annotation>
          <xs:documentation>Facit and Shawforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFS">
        <xs:annotation>
          <xs:documentation>Goodshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFT">
        <xs:annotation>
          <xs:documentation>Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFU">
        <xs:annotation>
          <xs:documentation>Greensclough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFW">
        <xs:annotation>
          <xs:documentation>Hareholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFX">
        <xs:annotation>
          <xs:documentation>Healey and Whitworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFY">
        <xs:annotation>
          <xs:documentation>Helmshore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMFZ">
        <xs:annotation>
          <xs:documentation>Irwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMGA">
        <xs:annotation>
          <xs:documentation>Longholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMGB">
        <xs:annotation>
          <xs:documentation>Stacksteads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMGC">
        <xs:annotation>
          <xs:documentation>Whitewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UMGD">
        <xs:annotation>
          <xs:documentation>Worsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNFZ">
        <xs:annotation>
          <xs:documentation>Bamber Bridge East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGA">
        <xs:annotation>
          <xs:documentation>Bamber Bridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGB">
        <xs:annotation>
          <xs:documentation>Bamber Bridge West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGC">
        <xs:annotation>
          <xs:documentation>Broad Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGD">
        <xs:annotation>
          <xs:documentation>Charnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGE">
        <xs:annotation>
          <xs:documentation>Coupe Green and Gregson Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGF">
        <xs:annotation>
          <xs:documentation>Earnshaw Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGG">
        <xs:annotation>
          <xs:documentation>Farington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGH">
        <xs:annotation>
          <xs:documentation>Farington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGJ">
        <xs:annotation>
          <xs:documentation>Golden Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGK">
        <xs:annotation>
          <xs:documentation>Howick and Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGL">
        <xs:annotation>
          <xs:documentation>Kingsfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGM">
        <xs:annotation>
          <xs:documentation>Leyland Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGN">
        <xs:annotation>
          <xs:documentation>Leyland St. Ambrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGP">
        <xs:annotation>
          <xs:documentation>Leyland St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGQ">
        <xs:annotation>
          <xs:documentation>Little Hoole and Much Hoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGR">
        <xs:annotation>
          <xs:documentation>Longton and Hutton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGS">
        <xs:annotation>
          <xs:documentation>Lostock Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGT">
        <xs:annotation>
          <xs:documentation>Lowerhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGU">
        <xs:annotation>
          <xs:documentation>Middleforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGW">
        <xs:annotation>
          <xs:documentation>Moss Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGX">
        <xs:annotation>
          <xs:documentation>New Longton and Hutton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGY">
        <xs:annotation>
          <xs:documentation>Samlesbury and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNGZ">
        <xs:annotation>
          <xs:documentation>Seven Stars</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNHA">
        <xs:annotation>
          <xs:documentation>Tardy Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNHB">
        <xs:annotation>
          <xs:documentation>Walton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UNHC">
        <xs:annotation>
          <xs:documentation>Whitefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGD">
        <xs:annotation>
          <xs:documentation>Ashurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGE">
        <xs:annotation>
          <xs:documentation>Aughton and Downholland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGF">
        <xs:annotation>
          <xs:documentation>Aughton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGG">
        <xs:annotation>
          <xs:documentation>Bickerstaffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGH">
        <xs:annotation>
          <xs:documentation>Birch Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGJ">
        <xs:annotation>
          <xs:documentation>Burscough East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGK">
        <xs:annotation>
          <xs:documentation>Burscough West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGL">
        <xs:annotation>
          <xs:documentation>Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGM">
        <xs:annotation>
          <xs:documentation>Digmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGN">
        <xs:annotation>
          <xs:documentation>Halsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGP">
        <xs:annotation>
          <xs:documentation>Hesketh-with-Becconsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGQ">
        <xs:annotation>
          <xs:documentation>Knowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGR">
        <xs:annotation>
          <xs:documentation>Moorside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGS">
        <xs:annotation>
          <xs:documentation>Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGT">
        <xs:annotation>
          <xs:documentation>North Meols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGU">
        <xs:annotation>
          <xs:documentation>Parbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGW">
        <xs:annotation>
          <xs:documentation>Rufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGX">
        <xs:annotation>
          <xs:documentation>Scarisbrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGY">
        <xs:annotation>
          <xs:documentation>Scott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPGZ">
        <xs:annotation>
          <xs:documentation>Skelmersdale North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPHA">
        <xs:annotation>
          <xs:documentation>Skelmersdale South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPHB">
        <xs:annotation>
          <xs:documentation>Tanhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPHC">
        <xs:annotation>
          <xs:documentation>Tarleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPHD">
        <xs:annotation>
          <xs:documentation>Up Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UPHE">
        <xs:annotation>
          <xs:documentation>Wrightington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGE">
        <xs:annotation>
          <xs:documentation>Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGF">
        <xs:annotation>
          <xs:documentation>Breck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGG">
        <xs:annotation>
          <xs:documentation>Brock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGH">
        <xs:annotation>
          <xs:documentation>Cabus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGJ">
        <xs:annotation>
          <xs:documentation>Calder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGK">
        <xs:annotation>
          <xs:documentation>Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGL">
        <xs:annotation>
          <xs:documentation>Catterall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGM">
        <xs:annotation>
          <xs:documentation>Cleveleys Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGN">
        <xs:annotation>
          <xs:documentation>Garstang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGP">
        <xs:annotation>
          <xs:documentation>Great Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGQ">
        <xs:annotation>
          <xs:documentation>Hambleton and Stalmine-with-Staynall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGR">
        <xs:annotation>
          <xs:documentation>Hardhorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGS">
        <xs:annotation>
          <xs:documentation>High Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGT">
        <xs:annotation>
          <xs:documentation>Jubilee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGU">
        <xs:annotation>
          <xs:documentation>Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGW">
        <xs:annotation>
          <xs:documentation>Norcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGX">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGY">
        <xs:annotation>
          <xs:documentation>Pharos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQGZ">
        <xs:annotation>
          <xs:documentation>Pilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHA">
        <xs:annotation>
          <xs:documentation>Preesall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHB">
        <xs:annotation>
          <xs:documentation>Rossall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHC">
        <xs:annotation>
          <xs:documentation>Staina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHD">
        <xs:annotation>
          <xs:documentation>Tithebarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHE">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHF">
        <xs:annotation>
          <xs:documentation>Warren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQHG">
        <xs:annotation>
          <xs:documentation>Wyresdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBFY">
        <xs:annotation>
          <xs:documentation>Blaby South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBFZ">
        <xs:annotation>
          <xs:documentation>Cosby with South Whetstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGA">
        <xs:annotation>
          <xs:documentation>Countesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGB">
        <xs:annotation>
          <xs:documentation>Croft Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGC">
        <xs:annotation>
          <xs:documentation>Ellis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGD">
        <xs:annotation>
          <xs:documentation>Enderby and St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGE">
        <xs:annotation>
          <xs:documentation>Fairestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGF">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGG">
        <xs:annotation>
          <xs:documentation>Millfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGH">
        <xs:annotation>
          <xs:documentation>Muxloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGJ">
        <xs:annotation>
          <xs:documentation>Narborough and Littlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGK">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGL">
        <xs:annotation>
          <xs:documentation>North Whetstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGM">
        <xs:annotation>
          <xs:documentation>Pastures</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGN">
        <xs:annotation>
          <xs:documentation>Ravenhurst and Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGP">
        <xs:annotation>
          <xs:documentation>Saxondale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGQ">
        <xs:annotation>
          <xs:documentation>Stanton and Flamville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UBGR">
        <xs:annotation>
          <xs:documentation>Winstanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGG">
        <xs:annotation>
          <xs:documentation>Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGH">
        <xs:annotation>
          <xs:documentation>Barrow and Sileby West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGJ">
        <xs:annotation>
          <xs:documentation>Birstall Wanlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGK">
        <xs:annotation>
          <xs:documentation>Birstall Watermead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGL">
        <xs:annotation>
          <xs:documentation>East Goscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGM">
        <xs:annotation>
          <xs:documentation>Forest Bradgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGN">
        <xs:annotation>
          <xs:documentation>Loughborough Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGP">
        <xs:annotation>
          <xs:documentation>Loughborough Dishley and Hathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGQ">
        <xs:annotation>
          <xs:documentation>Loughborough Garendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGR">
        <xs:annotation>
          <xs:documentation>Loughborough Hastings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGS">
        <xs:annotation>
          <xs:documentation>Loughborough Lemyngton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGT">
        <xs:annotation>
          <xs:documentation>Loughborough Nanpantan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGU">
        <xs:annotation>
          <xs:documentation>Loughborough Outwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGW">
        <xs:annotation>
          <xs:documentation>Loughborough Shelthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGX">
        <xs:annotation>
          <xs:documentation>Loughborough Southfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGY">
        <xs:annotation>
          <xs:documentation>Loughborough Storer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCGZ">
        <xs:annotation>
          <xs:documentation>Mountsorrel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHA">
        <xs:annotation>
          <xs:documentation>Queniborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHB">
        <xs:annotation>
          <xs:documentation>Quorn and Mountsorrel Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHC">
        <xs:annotation>
          <xs:documentation>Rothley and Thurcaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHD">
        <xs:annotation>
          <xs:documentation>Shepshed East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHE">
        <xs:annotation>
          <xs:documentation>Shepshed West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHF">
        <xs:annotation>
          <xs:documentation>Sileby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHG">
        <xs:annotation>
          <xs:documentation>Syston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHH">
        <xs:annotation>
          <xs:documentation>Syston West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHJ">
        <xs:annotation>
          <xs:documentation>The Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHK">
        <xs:annotation>
          <xs:documentation>Thurmaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UCHL">
        <xs:annotation>
          <xs:documentation>Wreake Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGD">
        <xs:annotation>
          <xs:documentation>Billesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGE">
        <xs:annotation>
          <xs:documentation>Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGF">
        <xs:annotation>
          <xs:documentation>Broughton Astley-Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGG">
        <xs:annotation>
          <xs:documentation>Broughton Astley-Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGH">
        <xs:annotation>
          <xs:documentation>Broughton Astley-Primethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGJ">
        <xs:annotation>
          <xs:documentation>Broughton Astley-Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGK">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGL">
        <xs:annotation>
          <xs:documentation>Fleckney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGM">
        <xs:annotation>
          <xs:documentation>Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGN">
        <xs:annotation>
          <xs:documentation>Kibworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGP">
        <xs:annotation>
          <xs:documentation>Lubenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGQ">
        <xs:annotation>
          <xs:documentation>Lutterworth Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGR">
        <xs:annotation>
          <xs:documentation>Lutterworth Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGS">
        <xs:annotation>
          <xs:documentation>Lutterworth Springs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGT">
        <xs:annotation>
          <xs:documentation>Lutterworth Swift</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGU">
        <xs:annotation>
          <xs:documentation>Market Harborough-Great Bowden and Arden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGW">
        <xs:annotation>
          <xs:documentation>Market Harborough-Little Bowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGX">
        <xs:annotation>
          <xs:documentation>Market Harborough-Logan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGY">
        <xs:annotation>
          <xs:documentation>Market Harborough-Welland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDGZ">
        <xs:annotation>
          <xs:documentation>Misterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDHA">
        <xs:annotation>
          <xs:documentation>Nevill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDHB">
        <xs:annotation>
          <xs:documentation>Peatling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDHC">
        <xs:annotation>
          <xs:documentation>Thurnby and Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDHD">
        <xs:annotation>
          <xs:documentation>Tilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UDHE">
        <xs:annotation>
          <xs:documentation>Ullesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEFU">
        <xs:annotation>
          <xs:documentation>Ambien</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEFW">
        <xs:annotation>
          <xs:documentation>Barlestone, Nailstone and Osbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEFX">
        <xs:annotation>
          <xs:documentation>Barwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEFY">
        <xs:annotation>
          <xs:documentation>Burbage St Catherines and Lash Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEFZ">
        <xs:annotation>
          <xs:documentation>Burbage Sketchley and Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGA">
        <xs:annotation>
          <xs:documentation>Cadeby, Carlton and Market Bosworth with Shackerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGB">
        <xs:annotation>
          <xs:documentation>Earl Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGC">
        <xs:annotation>
          <xs:documentation>Groby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGD">
        <xs:annotation>
          <xs:documentation>Hinckley Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGE">
        <xs:annotation>
          <xs:documentation>Hinckley Clarendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGF">
        <xs:annotation>
          <xs:documentation>Hinckley De Montfort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGG">
        <xs:annotation>
          <xs:documentation>Hinckley Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGH">
        <xs:annotation>
          <xs:documentation>Markfield, Stanton and Fieldhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGJ">
        <xs:annotation>
          <xs:documentation>Newbold Verdon with Desford and Peckleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGK">
        <xs:annotation>
          <xs:documentation>Ratby, Bagworth and Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UEGL">
        <xs:annotation>
          <xs:documentation>Twycross and Witherley with Sheepy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFT">
        <xs:annotation>
          <xs:documentation>Asfordby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFU">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFW">
        <xs:annotation>
          <xs:documentation>Croxton Kerrial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFX">
        <xs:annotation>
          <xs:documentation>Frisby-on-the-Wreake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFY">
        <xs:annotation>
          <xs:documentation>Gaddesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGFZ">
        <xs:annotation>
          <xs:documentation>Long Clawson and Stathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGA">
        <xs:annotation>
          <xs:documentation>Melton Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGB">
        <xs:annotation>
          <xs:documentation>Melton Dorian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGC">
        <xs:annotation>
          <xs:documentation>Melton Egerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGD">
        <xs:annotation>
          <xs:documentation>Melton Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGE">
        <xs:annotation>
          <xs:documentation>Melton Sysonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGF">
        <xs:annotation>
          <xs:documentation>Melton Warwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGG">
        <xs:annotation>
          <xs:documentation>Old Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGH">
        <xs:annotation>
          <xs:documentation>Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGJ">
        <xs:annotation>
          <xs:documentation>Waltham-on-the-Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UGGK">
        <xs:annotation>
          <xs:documentation>Wymondham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHFZ">
        <xs:annotation>
          <xs:documentation>Appleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGA">
        <xs:annotation>
          <xs:documentation>Ashby Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGB">
        <xs:annotation>
          <xs:documentation>Ashby Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGC">
        <xs:annotation>
          <xs:documentation>Ashby Ivanhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGD">
        <xs:annotation>
          <xs:documentation>Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGE">
        <xs:annotation>
          <xs:documentation>Breedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGF">
        <xs:annotation>
          <xs:documentation>Castle Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGG">
        <xs:annotation>
          <xs:documentation>Coalville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGH">
        <xs:annotation>
          <xs:documentation>Greenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGJ">
        <xs:annotation>
          <xs:documentation>Hugglescote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGK">
        <xs:annotation>
          <xs:documentation>Ibstock and Heather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGL">
        <xs:annotation>
          <xs:documentation>Kegworth and Whatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGM">
        <xs:annotation>
          <xs:documentation>Measham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGN">
        <xs:annotation>
          <xs:documentation>Moira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGP">
        <xs:annotation>
          <xs:documentation>Oakthorpe and Donisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGQ">
        <xs:annotation>
          <xs:documentation>Ravenstone and Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGR">
        <xs:annotation>
          <xs:documentation>Snibston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGS">
        <xs:annotation>
          <xs:documentation>Thringstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGT">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UHGU">
        <xs:annotation>
          <xs:documentation>Whitwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFL">
        <xs:annotation>
          <xs:documentation>Oadby Brocks Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFM">
        <xs:annotation>
          <xs:documentation>Oadby Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFN">
        <xs:annotation>
          <xs:documentation>Oadby St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFP">
        <xs:annotation>
          <xs:documentation>Oadby Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFQ">
        <xs:annotation>
          <xs:documentation>Oadby Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFR">
        <xs:annotation>
          <xs:documentation>South Wigston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFS">
        <xs:annotation>
          <xs:documentation>Wigston All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFT">
        <xs:annotation>
          <xs:documentation>Wigston Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFU">
        <xs:annotation>
          <xs:documentation>Wigston Meadowcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UJFW">
        <xs:annotation>
          <xs:documentation>Wigston St Wolstan's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFT">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFU">
        <xs:annotation>
          <xs:documentation>Coastal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFW">
        <xs:annotation>
          <xs:documentation>Fenside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFX">
        <xs:annotation>
          <xs:documentation>Fishtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFY">
        <xs:annotation>
          <xs:documentation>Five Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBFZ">
        <xs:annotation>
          <xs:documentation>Frampton and Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGA">
        <xs:annotation>
          <xs:documentation>Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGB">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGC">
        <xs:annotation>
          <xs:documentation>Old Leake and Wrangle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGD">
        <xs:annotation>
          <xs:documentation>Pilgrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGE">
        <xs:annotation>
          <xs:documentation>Skirbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGF">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGG">
        <xs:annotation>
          <xs:documentation>Staniland South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGH">
        <xs:annotation>
          <xs:documentation>Staniland North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGJ">
        <xs:annotation>
          <xs:documentation>Swineshead and Holland Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGK">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGL">
        <xs:annotation>
          <xs:documentation>Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UBGM">
        <xs:annotation>
          <xs:documentation>Wyberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHC">
        <xs:annotation>
          <xs:documentation>Alford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHD">
        <xs:annotation>
          <xs:documentation>Binbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHE">
        <xs:annotation>
          <xs:documentation>Burgh le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHF">
        <xs:annotation>
          <xs:documentation>Chapel St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHG">
        <xs:annotation>
          <xs:documentation>Coningsby and Tattershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHH">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHJ">
        <xs:annotation>
          <xs:documentation>Frithville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHK">
        <xs:annotation>
          <xs:documentation>Grimoldby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHL">
        <xs:annotation>
          <xs:documentation>Halton Holegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHM">
        <xs:annotation>
          <xs:documentation>Holton le Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHN">
        <xs:annotation>
          <xs:documentation>Horncastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHP">
        <xs:annotation>
          <xs:documentation>Hundleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHQ">
        <xs:annotation>
          <xs:documentation>Ingoldmells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHR">
        <xs:annotation>
          <xs:documentation>Legbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHS">
        <xs:annotation>
          <xs:documentation>Ludford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHT">
        <xs:annotation>
          <xs:documentation>Mablethorpe Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHU">
        <xs:annotation>
          <xs:documentation>Mablethorpe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHW">
        <xs:annotation>
          <xs:documentation>Mablethorpe North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHX">
        <xs:annotation>
          <xs:documentation>Mareham le Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHY">
        <xs:annotation>
          <xs:documentation>Marshchapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCHZ">
        <xs:annotation>
          <xs:documentation>North Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJA">
        <xs:annotation>
          <xs:documentation>North Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJB">
        <xs:annotation>
          <xs:documentation>North Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJC">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJD">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJE">
        <xs:annotation>
          <xs:documentation>St Clement's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJF">
        <xs:annotation>
          <xs:documentation>St James'</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJG">
        <xs:annotation>
          <xs:documentation>St Margaret's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJH">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJJ">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJK">
        <xs:annotation>
          <xs:documentation>Scarbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJL">
        <xs:annotation>
          <xs:documentation>Seacroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJM">
        <xs:annotation>
          <xs:documentation>Sibsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJN">
        <xs:annotation>
          <xs:documentation>Skidbrooke with Saltfleet Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJP">
        <xs:annotation>
          <xs:documentation>Spilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJQ">
        <xs:annotation>
          <xs:documentation>Stickney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJR">
        <xs:annotation>
          <xs:documentation>Sutton on Sea North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJS">
        <xs:annotation>
          <xs:documentation>Sutton on Sea South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJT">
        <xs:annotation>
          <xs:documentation>Tetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJU">
        <xs:annotation>
          <xs:documentation>Tetney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJW">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJX">
        <xs:annotation>
          <xs:documentation>Trusthorpe and Mablethorpe South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJY">
        <xs:annotation>
          <xs:documentation>Wainfleet and Friskney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCJZ">
        <xs:annotation>
          <xs:documentation>Willoughby with Sloothby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCKA">
        <xs:annotation>
          <xs:documentation>Winthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCKB">
        <xs:annotation>
          <xs:documentation>Withern with Stain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCKC">
        <xs:annotation>
          <xs:documentation>Woodhall Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UCKD">
        <xs:annotation>
          <xs:documentation>Wragby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFM">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFN">
        <xs:annotation>
          <xs:documentation>Birchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFP">
        <xs:annotation>
          <xs:documentation>Boultham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFQ">
        <xs:annotation>
          <xs:documentation>Bracebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFR">
        <xs:annotation>
          <xs:documentation>Carholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFS">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFT">
        <xs:annotation>
          <xs:documentation>Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFU">
        <xs:annotation>
          <xs:documentation>Hartsholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFW">
        <xs:annotation>
          <xs:documentation>Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFX">
        <xs:annotation>
          <xs:documentation>Moorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UDFY">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGH">
        <xs:annotation>
          <xs:documentation>Ashby de la Launde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGJ">
        <xs:annotation>
          <xs:documentation>Bassingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGK">
        <xs:annotation>
          <xs:documentation>Billinghay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGL">
        <xs:annotation>
          <xs:documentation>Bracebridge Heath and Waddington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGM">
        <xs:annotation>
          <xs:documentation>Branston and Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGN">
        <xs:annotation>
          <xs:documentation>Brant Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGP">
        <xs:annotation>
          <xs:documentation>Cliff Villages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGQ">
        <xs:annotation>
          <xs:documentation>Cranwell and Byard's Leap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGR">
        <xs:annotation>
          <xs:documentation>Eagle and North Scarle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGS">
        <xs:annotation>
          <xs:documentation>Heckington Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGT">
        <xs:annotation>
          <xs:documentation>Heighington and Washingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGU">
        <xs:annotation>
          <xs:documentation>Kyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGW">
        <xs:annotation>
          <xs:documentation>Leasingham and Roxholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGX">
        <xs:annotation>
          <xs:documentation>Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGY">
        <xs:annotation>
          <xs:documentation>Metheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEGZ">
        <xs:annotation>
          <xs:documentation>North Hykeham Forum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHA">
        <xs:annotation>
          <xs:documentation>North Hykeham Memorial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHB">
        <xs:annotation>
          <xs:documentation>North Hykeham Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHC">
        <xs:annotation>
          <xs:documentation>North Hykeham Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHD">
        <xs:annotation>
          <xs:documentation>North Hykeham Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHE">
        <xs:annotation>
          <xs:documentation>Osbournby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHF">
        <xs:annotation>
          <xs:documentation>Ruskington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHG">
        <xs:annotation>
          <xs:documentation>Skellingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHH">
        <xs:annotation>
          <xs:documentation>Sleaford Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHJ">
        <xs:annotation>
          <xs:documentation>Sleaford Holdingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHK">
        <xs:annotation>
          <xs:documentation>Sleaford Mareham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHL">
        <xs:annotation>
          <xs:documentation>Sleaford Navigation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHM">
        <xs:annotation>
          <xs:documentation>Sleaford Quarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHN">
        <xs:annotation>
          <xs:documentation>Sleaford Westholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UEHP">
        <xs:annotation>
          <xs:documentation>Waddington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGA">
        <xs:annotation>
          <xs:documentation>Crowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGB">
        <xs:annotation>
          <xs:documentation>Deeping St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGC">
        <xs:annotation>
          <xs:documentation>Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGD">
        <xs:annotation>
          <xs:documentation>Fleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGE">
        <xs:annotation>
          <xs:documentation>Gedney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGF">
        <xs:annotation>
          <xs:documentation>Gosberton Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGG">
        <xs:annotation>
          <xs:documentation>Holbeach Hurn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGH">
        <xs:annotation>
          <xs:documentation>Holbeach St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGJ">
        <xs:annotation>
          <xs:documentation>Holbeach Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGK">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGL">
        <xs:annotation>
          <xs:documentation>Pinchbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGM">
        <xs:annotation>
          <xs:documentation>Spalding Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGN">
        <xs:annotation>
          <xs:documentation>Spalding Monks House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGP">
        <xs:annotation>
          <xs:documentation>Spalding St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGQ">
        <xs:annotation>
          <xs:documentation>Spalding St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGR">
        <xs:annotation>
          <xs:documentation>Spalding St Paul's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGS">
        <xs:annotation>
          <xs:documentation>Spalding Wygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGT">
        <xs:annotation>
          <xs:documentation>Surfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGU">
        <xs:annotation>
          <xs:documentation>Sutton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGW">
        <xs:annotation>
          <xs:documentation>The Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGX">
        <xs:annotation>
          <xs:documentation>Weston and Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UFGY">
        <xs:annotation>
          <xs:documentation>Whaplode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGM">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGN">
        <xs:annotation>
          <xs:documentation>Aveland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGP">
        <xs:annotation>
          <xs:documentation>Barrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGQ">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGR">
        <xs:annotation>
          <xs:documentation>Bourne East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGS">
        <xs:annotation>
          <xs:documentation>Bourne West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGT">
        <xs:annotation>
          <xs:documentation>Deeping St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGU">
        <xs:annotation>
          <xs:documentation>Earlesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGW">
        <xs:annotation>
          <xs:documentation>Ermine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGX">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGY">
        <xs:annotation>
          <xs:documentation>Glen Eden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGGZ">
        <xs:annotation>
          <xs:documentation>Grantham St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHA">
        <xs:annotation>
          <xs:documentation>Green Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHB">
        <xs:annotation>
          <xs:documentation>Greyfriars</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHC">
        <xs:annotation>
          <xs:documentation>Harrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHD">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHE">
        <xs:annotation>
          <xs:documentation>Hillsides</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHF">
        <xs:annotation>
          <xs:documentation>Isaac Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHG">
        <xs:annotation>
          <xs:documentation>Lincrest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHH">
        <xs:annotation>
          <xs:documentation>Loveden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHJ">
        <xs:annotation>
          <xs:documentation>Market and West Deeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHK">
        <xs:annotation>
          <xs:documentation>Morkery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHL">
        <xs:annotation>
          <xs:documentation>Peascliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHM">
        <xs:annotation>
          <xs:documentation>Ringstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHN">
        <xs:annotation>
          <xs:documentation>St Anne's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHP">
        <xs:annotation>
          <xs:documentation>St George's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHQ">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHR">
        <xs:annotation>
          <xs:documentation>St Wulfram's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHS">
        <xs:annotation>
          <xs:documentation>Saxonwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHT">
        <xs:annotation>
          <xs:documentation>Stamford St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHU">
        <xs:annotation>
          <xs:documentation>Thurlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHW">
        <xs:annotation>
          <xs:documentation>Toller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHX">
        <xs:annotation>
          <xs:documentation>Truesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UGHY">
        <xs:annotation>
          <xs:documentation>Witham Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGD">
        <xs:annotation>
          <xs:documentation>Bardney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGE">
        <xs:annotation>
          <xs:documentation>Caistor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGF">
        <xs:annotation>
          <xs:documentation>Cherry Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGG">
        <xs:annotation>
          <xs:documentation>Dunholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGH">
        <xs:annotation>
          <xs:documentation>Fiskerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGJ">
        <xs:annotation>
          <xs:documentation>Gainsborough East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGK">
        <xs:annotation>
          <xs:documentation>Gainsborough North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGL">
        <xs:annotation>
          <xs:documentation>Gainsborough South-West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGM">
        <xs:annotation>
          <xs:documentation>Hemswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGN">
        <xs:annotation>
          <xs:documentation>Kelsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGP">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGQ">
        <xs:annotation>
          <xs:documentation>Market Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGR">
        <xs:annotation>
          <xs:documentation>Middle Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGS">
        <xs:annotation>
          <xs:documentation>Nettleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGT">
        <xs:annotation>
          <xs:documentation>Saxilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGU">
        <xs:annotation>
          <xs:documentation>Scampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGW">
        <xs:annotation>
          <xs:documentation>Scotter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGX">
        <xs:annotation>
          <xs:documentation>Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGY">
        <xs:annotation>
          <xs:documentation>Sudbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHGZ">
        <xs:annotation>
          <xs:documentation>Thonock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHHA">
        <xs:annotation>
          <xs:documentation>Torksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHHB">
        <xs:annotation>
          <xs:documentation>Waddingham and Spital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHHC">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHHD">
        <xs:annotation>
          <xs:documentation>Wold View</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UHHE">
        <xs:annotation>
          <xs:documentation>Yarborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBGU">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBGW">
        <xs:annotation>
          <xs:documentation>Buckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBGX">
        <xs:annotation>
          <xs:documentation>Burgh and Haverscroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBGY">
        <xs:annotation>
          <xs:documentation>Conifer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBGZ">
        <xs:annotation>
          <xs:documentation>Dereham-Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHA">
        <xs:annotation>
          <xs:documentation>Dereham-Humbletoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHB">
        <xs:annotation>
          <xs:documentation>Dereham-Neatherd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHC">
        <xs:annotation>
          <xs:documentation>Dereham-Toftwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHD">
        <xs:annotation>
          <xs:documentation>East Guiltcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHE">
        <xs:annotation>
          <xs:documentation>Eynsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHF">
        <xs:annotation>
          <xs:documentation>Haggard de Toni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHG">
        <xs:annotation>
          <xs:documentation>Harling and Heathlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHH">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHJ">
        <xs:annotation>
          <xs:documentation>Launditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHK">
        <xs:annotation>
          <xs:documentation>Mid Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHL">
        <xs:annotation>
          <xs:documentation>Nar Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHM">
        <xs:annotation>
          <xs:documentation>Necton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHN">
        <xs:annotation>
          <xs:documentation>Queen's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHP">
        <xs:annotation>
          <xs:documentation>Shipdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHQ">
        <xs:annotation>
          <xs:documentation>Springvale and Scarning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHR">
        <xs:annotation>
          <xs:documentation>Swaffham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHS">
        <xs:annotation>
          <xs:documentation>Swanton Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHT">
        <xs:annotation>
          <xs:documentation>Taverner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHU">
        <xs:annotation>
          <xs:documentation>Templar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHW">
        <xs:annotation>
          <xs:documentation>Thetford-Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHX">
        <xs:annotation>
          <xs:documentation>Thetford-Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHY">
        <xs:annotation>
          <xs:documentation>Thetford-Guildhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBHZ">
        <xs:annotation>
          <xs:documentation>Thetford-Saxon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJA">
        <xs:annotation>
          <xs:documentation>Two Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJB">
        <xs:annotation>
          <xs:documentation>Upper Wensum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJC">
        <xs:annotation>
          <xs:documentation>Upper Yare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJD">
        <xs:annotation>
          <xs:documentation>Watton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJE">
        <xs:annotation>
          <xs:documentation>Wayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJF">
        <xs:annotation>
          <xs:documentation>Weeting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJG">
        <xs:annotation>
          <xs:documentation>West Guiltcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UBJH">
        <xs:annotation>
          <xs:documentation>Wissey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGN">
        <xs:annotation>
          <xs:documentation>Acle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGP">
        <xs:annotation>
          <xs:documentation>Aylsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGQ">
        <xs:annotation>
          <xs:documentation>Blofield with South Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGR">
        <xs:annotation>
          <xs:documentation>Brundall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGS">
        <xs:annotation>
          <xs:documentation>Burlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGT">
        <xs:annotation>
          <xs:documentation>Buxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGU">
        <xs:annotation>
          <xs:documentation>Coltishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGW">
        <xs:annotation>
          <xs:documentation>Drayton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGX">
        <xs:annotation>
          <xs:documentation>Drayton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGY">
        <xs:annotation>
          <xs:documentation>Eynesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCGZ">
        <xs:annotation>
          <xs:documentation>Great Witchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHA">
        <xs:annotation>
          <xs:documentation>Hellesdon North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHB">
        <xs:annotation>
          <xs:documentation>Hellesdon South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHC">
        <xs:annotation>
          <xs:documentation>Hevingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHD">
        <xs:annotation>
          <xs:documentation>Horsford and Felthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHE">
        <xs:annotation>
          <xs:documentation>Marshes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHF">
        <xs:annotation>
          <xs:documentation>Old Catton and Sprowston West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHG">
        <xs:annotation>
          <xs:documentation>Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHH">
        <xs:annotation>
          <xs:documentation>Reepham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHJ">
        <xs:annotation>
          <xs:documentation>Spixworth with St Faiths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHK">
        <xs:annotation>
          <xs:documentation>Sprowston Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHL">
        <xs:annotation>
          <xs:documentation>Sprowston East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHM">
        <xs:annotation>
          <xs:documentation>Taverham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHN">
        <xs:annotation>
          <xs:documentation>Taverham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHP">
        <xs:annotation>
          <xs:documentation>Thorpe St Andrew North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHQ">
        <xs:annotation>
          <xs:documentation>Thorpe St Andrew South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UCHR">
        <xs:annotation>
          <xs:documentation>Wroxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDFY">
        <xs:annotation>
          <xs:documentation>Bradwell North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDFZ">
        <xs:annotation>
          <xs:documentation>Bradwell South and Hopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGA">
        <xs:annotation>
          <xs:documentation>Caister North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGB">
        <xs:annotation>
          <xs:documentation>Caister South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGC">
        <xs:annotation>
          <xs:documentation>Central and Northgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGD">
        <xs:annotation>
          <xs:documentation>Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGE">
        <xs:annotation>
          <xs:documentation>East Flegg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGF">
        <xs:annotation>
          <xs:documentation>Fleggburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGG">
        <xs:annotation>
          <xs:documentation>Gorleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGH">
        <xs:annotation>
          <xs:documentation>Lothingland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGJ">
        <xs:annotation>
          <xs:documentation>Magdalen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGK">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGL">
        <xs:annotation>
          <xs:documentation>Ormesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGM">
        <xs:annotation>
          <xs:documentation>St Andrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGN">
        <xs:annotation>
          <xs:documentation>Southtown and Cobholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGP">
        <xs:annotation>
          <xs:documentation>West Flegg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UDGQ">
        <xs:annotation>
          <xs:documentation>Yarmouth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGT">
        <xs:annotation>
          <xs:documentation>Airfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGU">
        <xs:annotation>
          <xs:documentation>Brancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGW">
        <xs:annotation>
          <xs:documentation>Burnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGX">
        <xs:annotation>
          <xs:documentation>Clenchwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGY">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEGZ">
        <xs:annotation>
          <xs:documentation>Dersingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHA">
        <xs:annotation>
          <xs:documentation>Docking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHB">
        <xs:annotation>
          <xs:documentation>Downham Old Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHC">
        <xs:annotation>
          <xs:documentation>East Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHD">
        <xs:annotation>
          <xs:documentation>Emneth with Outwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHE">
        <xs:annotation>
          <xs:documentation>Fairstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHF">
        <xs:annotation>
          <xs:documentation>Gayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHG">
        <xs:annotation>
          <xs:documentation>Gaywood Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHH">
        <xs:annotation>
          <xs:documentation>Gaywood North Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHJ">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHK">
        <xs:annotation>
          <xs:documentation>Heacham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHL">
        <xs:annotation>
          <xs:documentation>Hilgay with Denver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHM">
        <xs:annotation>
          <xs:documentation>Hunstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHN">
        <xs:annotation>
          <xs:documentation>Mershe Lande</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHP">
        <xs:annotation>
          <xs:documentation>North Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHQ">
        <xs:annotation>
          <xs:documentation>North Lynn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHR">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHS">
        <xs:annotation>
          <xs:documentation>Old Gaywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHT">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHU">
        <xs:annotation>
          <xs:documentation>Rudham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHW">
        <xs:annotation>
          <xs:documentation>St Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHX">
        <xs:annotation>
          <xs:documentation>St Margarets with St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHY">
        <xs:annotation>
          <xs:documentation>Snettisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEHZ">
        <xs:annotation>
          <xs:documentation>South and West Lynn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJA">
        <xs:annotation>
          <xs:documentation>South Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJB">
        <xs:annotation>
          <xs:documentation>South Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJC">
        <xs:annotation>
          <xs:documentation>Spellowfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJD">
        <xs:annotation>
          <xs:documentation>Springwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJE">
        <xs:annotation>
          <xs:documentation>Upwell and Delph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJF">
        <xs:annotation>
          <xs:documentation>Valley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJG">
        <xs:annotation>
          <xs:documentation>Walpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJH">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJJ">
        <xs:annotation>
          <xs:documentation>Watlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJK">
        <xs:annotation>
          <xs:documentation>West Winch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJL">
        <xs:annotation>
          <xs:documentation>Wiggenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJM">
        <xs:annotation>
          <xs:documentation>Wimbotsham with Fincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UEJN">
        <xs:annotation>
          <xs:documentation>Wissey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGP">
        <xs:annotation>
          <xs:documentation>Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGQ">
        <xs:annotation>
          <xs:documentation>Briston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGR">
        <xs:annotation>
          <xs:documentation>Chaucer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGS">
        <xs:annotation>
          <xs:documentation>Corpusty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGT">
        <xs:annotation>
          <xs:documentation>Cromer Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGU">
        <xs:annotation>
          <xs:documentation>Erpingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGW">
        <xs:annotation>
          <xs:documentation>Gaunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGX">
        <xs:annotation>
          <xs:documentation>Glaven Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGY">
        <xs:annotation>
          <xs:documentation>Happisburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFGZ">
        <xs:annotation>
          <xs:documentation>High Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHA">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHB">
        <xs:annotation>
          <xs:documentation>Hoveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHC">
        <xs:annotation>
          <xs:documentation>Lancaster North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHD">
        <xs:annotation>
          <xs:documentation>Lancaster South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHE">
        <xs:annotation>
          <xs:documentation>Mundesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHF">
        <xs:annotation>
          <xs:documentation>North Walsham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHG">
        <xs:annotation>
          <xs:documentation>North Walsham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHH">
        <xs:annotation>
          <xs:documentation>North Walsham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHJ">
        <xs:annotation>
          <xs:documentation>Poppyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHK">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHL">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHM">
        <xs:annotation>
          <xs:documentation>Scottow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHN">
        <xs:annotation>
          <xs:documentation>St Benet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHP">
        <xs:annotation>
          <xs:documentation>Sheringham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHQ">
        <xs:annotation>
          <xs:documentation>Sheringham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHR">
        <xs:annotation>
          <xs:documentation>Stalham and Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHS">
        <xs:annotation>
          <xs:documentation>Suffield Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHT">
        <xs:annotation>
          <xs:documentation>The Raynhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHU">
        <xs:annotation>
          <xs:documentation>The Runtons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHW">
        <xs:annotation>
          <xs:documentation>Walsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHX">
        <xs:annotation>
          <xs:documentation>Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHY">
        <xs:annotation>
          <xs:documentation>Waxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFHZ">
        <xs:annotation>
          <xs:documentation>Wensum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UFJA">
        <xs:annotation>
          <xs:documentation>Worstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFS">
        <xs:annotation>
          <xs:documentation>Bowthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFT">
        <xs:annotation>
          <xs:documentation>Catton Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFU">
        <xs:annotation>
          <xs:documentation>Crome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFW">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFX">
        <xs:annotation>
          <xs:documentation>Lakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFY">
        <xs:annotation>
          <xs:documentation>Mancroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGFZ">
        <xs:annotation>
          <xs:documentation>Mile Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGA">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGB">
        <xs:annotation>
          <xs:documentation>Sewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGC">
        <xs:annotation>
          <xs:documentation>Thorpe Hamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGD">
        <xs:annotation>
          <xs:documentation>Town Close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGE">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UGGF">
        <xs:annotation>
          <xs:documentation>Wensum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHGU">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHGW">
        <xs:annotation>
          <xs:documentation>Beck Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHGX">
        <xs:annotation>
          <xs:documentation>Bressingham and Burston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHGY">
        <xs:annotation>
          <xs:documentation>Brooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHGZ">
        <xs:annotation>
          <xs:documentation>Bunwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHA">
        <xs:annotation>
          <xs:documentation>Chedgrave and Thurton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHB">
        <xs:annotation>
          <xs:documentation>Cringleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHC">
        <xs:annotation>
          <xs:documentation>Cromwells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHD">
        <xs:annotation>
          <xs:documentation>Dickleburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHE">
        <xs:annotation>
          <xs:documentation>Diss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHF">
        <xs:annotation>
          <xs:documentation>Ditchingham and Broome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHG">
        <xs:annotation>
          <xs:documentation>Earsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHH">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHJ">
        <xs:annotation>
          <xs:documentation>Forncett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHK">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHL">
        <xs:annotation>
          <xs:documentation>Harleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHM">
        <xs:annotation>
          <xs:documentation>Hempnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHN">
        <xs:annotation>
          <xs:documentation>Hethersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHP">
        <xs:annotation>
          <xs:documentation>Hingham and Deopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHQ">
        <xs:annotation>
          <xs:documentation>Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHR">
        <xs:annotation>
          <xs:documentation>Mulbarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHS">
        <xs:annotation>
          <xs:documentation>New Costessey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHT">
        <xs:annotation>
          <xs:documentation>Newton Flotman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHU">
        <xs:annotation>
          <xs:documentation>Northfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHW">
        <xs:annotation>
          <xs:documentation>Old Costessey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHX">
        <xs:annotation>
          <xs:documentation>Poringland with the Framinghams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHY">
        <xs:annotation>
          <xs:documentation>Rockland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHHZ">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJA">
        <xs:annotation>
          <xs:documentation>Rustens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJB">
        <xs:annotation>
          <xs:documentation>Scole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJC">
        <xs:annotation>
          <xs:documentation>Stoke Holy Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJD">
        <xs:annotation>
          <xs:documentation>Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJE">
        <xs:annotation>
          <xs:documentation>Tasburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJF">
        <xs:annotation>
          <xs:documentation>Thurlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJG">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UHJH">
        <xs:annotation>
          <xs:documentation>Wicklewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFN">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFP">
        <xs:annotation>
          <xs:documentation>Danesholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFQ">
        <xs:annotation>
          <xs:documentation>East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFR">
        <xs:annotation>
          <xs:documentation>Hazelwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFS">
        <xs:annotation>
          <xs:documentation>Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFT">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFU">
        <xs:annotation>
          <xs:documentation>Lloyds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFW">
        <xs:annotation>
          <xs:documentation>Lodge Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFX">
        <xs:annotation>
          <xs:documentation>Rural East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFY">
        <xs:annotation>
          <xs:documentation>Rural North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBFZ">
        <xs:annotation>
          <xs:documentation>Rural West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBGA">
        <xs:annotation>
          <xs:documentation>Shire Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UBGB">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGD">
        <xs:annotation>
          <xs:documentation>Abbey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGE">
        <xs:annotation>
          <xs:documentation>Abbey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGF">
        <xs:annotation>
          <xs:documentation>Badby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGG">
        <xs:annotation>
          <xs:documentation>Barby and Kilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGH">
        <xs:annotation>
          <xs:documentation>Boughton and Pitsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGJ">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGK">
        <xs:annotation>
          <xs:documentation>Braunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGL">
        <xs:annotation>
          <xs:documentation>Brixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGM">
        <xs:annotation>
          <xs:documentation>Byfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGN">
        <xs:annotation>
          <xs:documentation>Clipston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGP">
        <xs:annotation>
          <xs:documentation>Crick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGQ">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGR">
        <xs:annotation>
          <xs:documentation>Flore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGS">
        <xs:annotation>
          <xs:documentation>Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGT">
        <xs:annotation>
          <xs:documentation>Long Buckby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGU">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGW">
        <xs:annotation>
          <xs:documentation>Ravensthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGX">
        <xs:annotation>
          <xs:documentation>Spratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGY">
        <xs:annotation>
          <xs:documentation>Walgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCGZ">
        <xs:annotation>
          <xs:documentation>Weedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCHA">
        <xs:annotation>
          <xs:documentation>Welford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCHB">
        <xs:annotation>
          <xs:documentation>West Haddon and Guilsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCHC">
        <xs:annotation>
          <xs:documentation>Woodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UCHD">
        <xs:annotation>
          <xs:documentation>Yelvertoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDFX">
        <xs:annotation>
          <xs:documentation>Barnwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDFY">
        <xs:annotation>
          <xs:documentation>Dryden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDFZ">
        <xs:annotation>
          <xs:documentation>Fineshade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGA">
        <xs:annotation>
          <xs:documentation>Higham Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGB">
        <xs:annotation>
          <xs:documentation>Irthlingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGC">
        <xs:annotation>
          <xs:documentation>King's Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGD">
        <xs:annotation>
          <xs:documentation>Lower Nene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGE">
        <xs:annotation>
          <xs:documentation>Lyveden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGF">
        <xs:annotation>
          <xs:documentation>Oundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGG">
        <xs:annotation>
          <xs:documentation>Prebendal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGH">
        <xs:annotation>
          <xs:documentation>Raunds Saxon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGJ">
        <xs:annotation>
          <xs:documentation>Raunds Windmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGK">
        <xs:annotation>
          <xs:documentation>Ringstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGL">
        <xs:annotation>
          <xs:documentation>Rushden East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGM">
        <xs:annotation>
          <xs:documentation>Rushden North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGN">
        <xs:annotation>
          <xs:documentation>Rushden South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGP">
        <xs:annotation>
          <xs:documentation>Rushden West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGQ">
        <xs:annotation>
          <xs:documentation>Stanwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGR">
        <xs:annotation>
          <xs:documentation>Thrapston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UDGS">
        <xs:annotation>
          <xs:documentation>Woodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEFZ">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGA">
        <xs:annotation>
          <xs:documentation>Avondale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGB">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGC">
        <xs:annotation>
          <xs:documentation>Brambleside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGD">
        <xs:annotation>
          <xs:documentation>Buccleuch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGE">
        <xs:annotation>
          <xs:documentation>Latimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGF">
        <xs:annotation>
          <xs:documentation>Loatland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGG">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGH">
        <xs:annotation>
          <xs:documentation>Pipers Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGJ">
        <xs:annotation>
          <xs:documentation>Plessy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGK">
        <xs:annotation>
          <xs:documentation>Queen Eleanor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGL">
        <xs:annotation>
          <xs:documentation>St Andrew's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGM">
        <xs:annotation>
          <xs:documentation>St Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGN">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGP">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGQ">
        <xs:annotation>
          <xs:documentation>St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGR">
        <xs:annotation>
          <xs:documentation>Slade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGS">
        <xs:annotation>
          <xs:documentation>Spinney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGT">
        <xs:annotation>
          <xs:documentation>Tresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGU">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGW">
        <xs:annotation>
          <xs:documentation>Warkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGX">
        <xs:annotation>
          <xs:documentation>Welland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UEGY">
        <xs:annotation>
          <xs:documentation>Wicksteed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFFY">
        <xs:annotation>
          <xs:documentation>Abington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFFZ">
        <xs:annotation>
          <xs:documentation>Billing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGA">
        <xs:annotation>
          <xs:documentation>Boughton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGB">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGC">
        <xs:annotation>
          <xs:documentation>Delapre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGD">
        <xs:annotation>
          <xs:documentation>East Hunsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGE">
        <xs:annotation>
          <xs:documentation>Eastfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGF">
        <xs:annotation>
          <xs:documentation>Ecton Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGG">
        <xs:annotation>
          <xs:documentation>Headlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGH">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGJ">
        <xs:annotation>
          <xs:documentation>Kingsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGK">
        <xs:annotation>
          <xs:documentation>Lumbertubs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGL">
        <xs:annotation>
          <xs:documentation>Nene Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGM">
        <xs:annotation>
          <xs:documentation>New Duston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGN">
        <xs:annotation>
          <xs:documentation>Old Duston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGP">
        <xs:annotation>
          <xs:documentation>Parklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGQ">
        <xs:annotation>
          <xs:documentation>St Crispin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGR">
        <xs:annotation>
          <xs:documentation>St David</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGS">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGT">
        <xs:annotation>
          <xs:documentation>Spencer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGU">
        <xs:annotation>
          <xs:documentation>Thorplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGW">
        <xs:annotation>
          <xs:documentation>West Hunsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UFGX">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGK">
        <xs:annotation>
          <xs:documentation>Astwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGL">
        <xs:annotation>
          <xs:documentation>Blakesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGM">
        <xs:annotation>
          <xs:documentation>Blisworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGN">
        <xs:annotation>
          <xs:documentation>Brackley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGP">
        <xs:annotation>
          <xs:documentation>Brackley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGQ">
        <xs:annotation>
          <xs:documentation>Brackley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGR">
        <xs:annotation>
          <xs:documentation>Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGS">
        <xs:annotation>
          <xs:documentation>Cogenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGT">
        <xs:annotation>
          <xs:documentation>Cosgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGU">
        <xs:annotation>
          <xs:documentation>Cote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGW">
        <xs:annotation>
          <xs:documentation>Courteenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGX">
        <xs:annotation>
          <xs:documentation>Deanshanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGY">
        <xs:annotation>
          <xs:documentation>Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGGZ">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHA">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHB">
        <xs:annotation>
          <xs:documentation>Harpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHC">
        <xs:annotation>
          <xs:documentation>Heyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHD">
        <xs:annotation>
          <xs:documentation>Kings Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHE">
        <xs:annotation>
          <xs:documentation>Kingthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHF">
        <xs:annotation>
          <xs:documentation>Little Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHG">
        <xs:annotation>
          <xs:documentation>Middleton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHH">
        <xs:annotation>
          <xs:documentation>Salcey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHJ">
        <xs:annotation>
          <xs:documentation>Silverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHK">
        <xs:annotation>
          <xs:documentation>Steane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHL">
        <xs:annotation>
          <xs:documentation>Tove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHM">
        <xs:annotation>
          <xs:documentation>Towcester Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHN">
        <xs:annotation>
          <xs:documentation>Towcester Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHP">
        <xs:annotation>
          <xs:documentation>Wardoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHQ">
        <xs:annotation>
          <xs:documentation>Washington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHR">
        <xs:annotation>
          <xs:documentation>Whittlewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UGHS">
        <xs:annotation>
          <xs:documentation>Yardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFR">
        <xs:annotation>
          <xs:documentation>Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFS">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFT">
        <xs:annotation>
          <xs:documentation>Croyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFU">
        <xs:annotation>
          <xs:documentation>Earls Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFW">
        <xs:annotation>
          <xs:documentation>Finedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFX">
        <xs:annotation>
          <xs:documentation>Great Doddington and Wilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFY">
        <xs:annotation>
          <xs:documentation>Hemmingwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHFZ">
        <xs:annotation>
          <xs:documentation>Irchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGA">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGB">
        <xs:annotation>
          <xs:documentation>Queensway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGC">
        <xs:annotation>
          <xs:documentation>Redwell East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGD">
        <xs:annotation>
          <xs:documentation>Redwell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGE">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGF">
        <xs:annotation>
          <xs:documentation>Swanspool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGG">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UHGH">
        <xs:annotation>
          <xs:documentation>Wollaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFT">
        <xs:annotation>
          <xs:documentation>Alnmouth and Lesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFU">
        <xs:annotation>
          <xs:documentation>Alnwick Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFW">
        <xs:annotation>
          <xs:documentation>Alnwick Clayport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFX">
        <xs:annotation>
          <xs:documentation>Alnwick Hotspur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFY">
        <xs:annotation>
          <xs:documentation>Amble Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBFZ">
        <xs:annotation>
          <xs:documentation>Amble East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGA">
        <xs:annotation>
          <xs:documentation>Amble West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGB">
        <xs:annotation>
          <xs:documentation>Embleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGC">
        <xs:annotation>
          <xs:documentation>Harbottle and Elsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGD">
        <xs:annotation>
          <xs:documentation>Hedgeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGE">
        <xs:annotation>
          <xs:documentation>Longframlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGF">
        <xs:annotation>
          <xs:documentation>Longhoughton with Craster and Rennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGG">
        <xs:annotation>
          <xs:documentation>Rothbury and South Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGH">
        <xs:annotation>
          <xs:documentation>Shilbottle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGJ">
        <xs:annotation>
          <xs:documentation>Warkworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UBGK">
        <xs:annotation>
          <xs:documentation>Whittingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFS">
        <xs:annotation>
          <xs:documentation>Bamburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFT">
        <xs:annotation>
          <xs:documentation>Beadnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFU">
        <xs:annotation>
          <xs:documentation>Belford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFW">
        <xs:annotation>
          <xs:documentation>Cheviot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFX">
        <xs:annotation>
          <xs:documentation>Edward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFY">
        <xs:annotation>
          <xs:documentation>Elizabeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCFZ">
        <xs:annotation>
          <xs:documentation>Flodden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGA">
        <xs:annotation>
          <xs:documentation>Ford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGB">
        <xs:annotation>
          <xs:documentation>Islandshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGC">
        <xs:annotation>
          <xs:documentation>Lowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGD">
        <xs:annotation>
          <xs:documentation>Norhamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGE">
        <xs:annotation>
          <xs:documentation>North Sunderland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGF">
        <xs:annotation>
          <xs:documentation>Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGG">
        <xs:annotation>
          <xs:documentation>Seton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGH">
        <xs:annotation>
          <xs:documentation>Shielfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGJ">
        <xs:annotation>
          <xs:documentation>Spittal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UCGK">
        <xs:annotation>
          <xs:documentation>Wooler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGN">
        <xs:annotation>
          <xs:documentation>Cowpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGP">
        <xs:annotation>
          <xs:documentation>Cramlington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGQ">
        <xs:annotation>
          <xs:documentation>Cramlington Eastfield with East Hartford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGR">
        <xs:annotation>
          <xs:documentation>Cramlington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGS">
        <xs:annotation>
          <xs:documentation>Cramlington Parkside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGT">
        <xs:annotation>
          <xs:documentation>Cramlington South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGU">
        <xs:annotation>
          <xs:documentation>Cramlington Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGW">
        <xs:annotation>
          <xs:documentation>Cramlington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGX">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGY">
        <xs:annotation>
          <xs:documentation>Hartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDGZ">
        <xs:annotation>
          <xs:documentation>Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHA">
        <xs:annotation>
          <xs:documentation>Isabella</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHB">
        <xs:annotation>
          <xs:documentation>Kitty Brewster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHC">
        <xs:annotation>
          <xs:documentation>Newsham and New Delaval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHD">
        <xs:annotation>
          <xs:documentation>Plessey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHE">
        <xs:annotation>
          <xs:documentation>Seaton Delaval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHF">
        <xs:annotation>
          <xs:documentation>Seghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHG">
        <xs:annotation>
          <xs:documentation>South Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHH">
        <xs:annotation>
          <xs:documentation>South Newsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UDHJ">
        <xs:annotation>
          <xs:documentation>Wensleydale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEFY">
        <xs:annotation>
          <xs:documentation>Chevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEFZ">
        <xs:annotation>
          <xs:documentation>Ellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGA">
        <xs:annotation>
          <xs:documentation>Hartburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGB">
        <xs:annotation>
          <xs:documentation>Hebron, Hepscott and Mitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGC">
        <xs:annotation>
          <xs:documentation>Heddon-on-the-Wall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGD">
        <xs:annotation>
          <xs:documentation>Longhorsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGE">
        <xs:annotation>
          <xs:documentation>Lynemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGF">
        <xs:annotation>
          <xs:documentation>Morpeth Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGG">
        <xs:annotation>
          <xs:documentation>Morpeth Kirkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGH">
        <xs:annotation>
          <xs:documentation>Morpeth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGJ">
        <xs:annotation>
          <xs:documentation>Morpeth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGK">
        <xs:annotation>
          <xs:documentation>Morpeth Stobhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGL">
        <xs:annotation>
          <xs:documentation>Pegswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGM">
        <xs:annotation>
          <xs:documentation>Ponteland East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGN">
        <xs:annotation>
          <xs:documentation>Ponteland North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGP">
        <xs:annotation>
          <xs:documentation>Ponteland South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGQ">
        <xs:annotation>
          <xs:documentation>Ponteland West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGR">
        <xs:annotation>
          <xs:documentation>Stamfordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGS">
        <xs:annotation>
          <xs:documentation>Stannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UEGT">
        <xs:annotation>
          <xs:documentation>Ulgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGK">
        <xs:annotation>
          <xs:documentation>Acomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGL">
        <xs:annotation>
          <xs:documentation>Allendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGM">
        <xs:annotation>
          <xs:documentation>Bellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGN">
        <xs:annotation>
          <xs:documentation>Broomhaugh and Riding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGP">
        <xs:annotation>
          <xs:documentation>Chollerton with Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGQ">
        <xs:annotation>
          <xs:documentation>Corbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGR">
        <xs:annotation>
          <xs:documentation>East Tynedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGS">
        <xs:annotation>
          <xs:documentation>Hadrian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGT">
        <xs:annotation>
          <xs:documentation>Haltwhistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGU">
        <xs:annotation>
          <xs:documentation>Haydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGW">
        <xs:annotation>
          <xs:documentation>Hexham Gilesgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGX">
        <xs:annotation>
          <xs:documentation>Hexham Hencotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGY">
        <xs:annotation>
          <xs:documentation>Hexham Leazes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFGZ">
        <xs:annotation>
          <xs:documentation>Hexham Priestpopple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHA">
        <xs:annotation>
          <xs:documentation>Humshaugh and Wall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHB">
        <xs:annotation>
          <xs:documentation>Ovingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHC">
        <xs:annotation>
          <xs:documentation>Prudhoe Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHD">
        <xs:annotation>
          <xs:documentation>Prudhoe North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHE">
        <xs:annotation>
          <xs:documentation>Prudhoe South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHF">
        <xs:annotation>
          <xs:documentation>Prudhoe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHG">
        <xs:annotation>
          <xs:documentation>Redesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHH">
        <xs:annotation>
          <xs:documentation>Sandhoe with Dilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHJ">
        <xs:annotation>
          <xs:documentation>Slaley and Hexhamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHK">
        <xs:annotation>
          <xs:documentation>South Tynedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHL">
        <xs:annotation>
          <xs:documentation>Stocksfield with Mickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHM">
        <xs:annotation>
          <xs:documentation>Upper North Tyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHN">
        <xs:annotation>
          <xs:documentation>Wanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHP">
        <xs:annotation>
          <xs:documentation>Warden and Newbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHQ">
        <xs:annotation>
          <xs:documentation>Wark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHR">
        <xs:annotation>
          <xs:documentation>West Tynedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UFHS">
        <xs:annotation>
          <xs:documentation>Wylam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFS">
        <xs:annotation>
          <xs:documentation>Bedlington Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFT">
        <xs:annotation>
          <xs:documentation>Bedlington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFU">
        <xs:annotation>
          <xs:documentation>Bedlington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFW">
        <xs:annotation>
          <xs:documentation>Bothal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFX">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFY">
        <xs:annotation>
          <xs:documentation>Choppington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGFZ">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGA">
        <xs:annotation>
          <xs:documentation>Guide Post</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGB">
        <xs:annotation>
          <xs:documentation>Haydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGC">
        <xs:annotation>
          <xs:documentation>Hirst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGD">
        <xs:annotation>
          <xs:documentation>Newbiggin East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGE">
        <xs:annotation>
          <xs:documentation>Newbiggin West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGF">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGG">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGH">
        <xs:annotation>
          <xs:documentation>Sleekburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="35UGGJ">
        <xs:annotation>
          <xs:documentation>Stakeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGB">
        <xs:annotation>
          <xs:documentation>Aire Valley with Lothersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGC">
        <xs:annotation>
          <xs:documentation>Barden Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGD">
        <xs:annotation>
          <xs:documentation>Bentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGE">
        <xs:annotation>
          <xs:documentation>Cowling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGF">
        <xs:annotation>
          <xs:documentation>Embsay-with-Eastby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGG">
        <xs:annotation>
          <xs:documentation>Gargrave and Malhamdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGH">
        <xs:annotation>
          <xs:documentation>Glusburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGJ">
        <xs:annotation>
          <xs:documentation>Grassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGK">
        <xs:annotation>
          <xs:documentation>Hellifield and Long Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGL">
        <xs:annotation>
          <xs:documentation>Ingleton and Clapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGM">
        <xs:annotation>
          <xs:documentation>Penyghent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGN">
        <xs:annotation>
          <xs:documentation>Settle and Ribblebanks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGP">
        <xs:annotation>
          <xs:documentation>Skipton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGQ">
        <xs:annotation>
          <xs:documentation>Skipton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGR">
        <xs:annotation>
          <xs:documentation>Skipton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGS">
        <xs:annotation>
          <xs:documentation>Skipton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGT">
        <xs:annotation>
          <xs:documentation>Sutton-in-Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGU">
        <xs:annotation>
          <xs:documentation>Upper Wharfedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UBGW">
        <xs:annotation>
          <xs:documentation>West Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGM">
        <xs:annotation>
          <xs:documentation>Bedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGN">
        <xs:annotation>
          <xs:documentation>Brompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGP">
        <xs:annotation>
          <xs:documentation>Broughton and Greenhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGQ">
        <xs:annotation>
          <xs:documentation>Cowtons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGR">
        <xs:annotation>
          <xs:documentation>Crakehall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGS">
        <xs:annotation>
          <xs:documentation>Easingwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGT">
        <xs:annotation>
          <xs:documentation>Great Ayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGU">
        <xs:annotation>
          <xs:documentation>Helperby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGW">
        <xs:annotation>
          <xs:documentation>Huby and Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGX">
        <xs:annotation>
          <xs:documentation>Leeming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGY">
        <xs:annotation>
          <xs:documentation>Leeming Bar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCGZ">
        <xs:annotation>
          <xs:documentation>Morton-on-Swale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHA">
        <xs:annotation>
          <xs:documentation>Northallerton Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHB">
        <xs:annotation>
          <xs:documentation>Northallerton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHC">
        <xs:annotation>
          <xs:documentation>Northallerton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHD">
        <xs:annotation>
          <xs:documentation>Osmotherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHE">
        <xs:annotation>
          <xs:documentation>Romanby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHF">
        <xs:annotation>
          <xs:documentation>Rudby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHG">
        <xs:annotation>
          <xs:documentation>Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHH">
        <xs:annotation>
          <xs:documentation>Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHJ">
        <xs:annotation>
          <xs:documentation>Stillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHK">
        <xs:annotation>
          <xs:documentation>Stokesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHL">
        <xs:annotation>
          <xs:documentation>Swainby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHM">
        <xs:annotation>
          <xs:documentation>Tanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHN">
        <xs:annotation>
          <xs:documentation>Thirsk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHP">
        <xs:annotation>
          <xs:documentation>Thorntons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHQ">
        <xs:annotation>
          <xs:documentation>Tollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHR">
        <xs:annotation>
          <xs:documentation>Topcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHS">
        <xs:annotation>
          <xs:documentation>White Horse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UCHT">
        <xs:annotation>
          <xs:documentation>Whitestonecliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGL">
        <xs:annotation>
          <xs:documentation>Bilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGM">
        <xs:annotation>
          <xs:documentation>Bishop Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGN">
        <xs:annotation>
          <xs:documentation>Boroughbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGP">
        <xs:annotation>
          <xs:documentation>Claro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGQ">
        <xs:annotation>
          <xs:documentation>Granby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGR">
        <xs:annotation>
          <xs:documentation>Harlow Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGS">
        <xs:annotation>
          <xs:documentation>High Harrogate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGT">
        <xs:annotation>
          <xs:documentation>Hookstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGU">
        <xs:annotation>
          <xs:documentation>Killinghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGW">
        <xs:annotation>
          <xs:documentation>Kirkby Malzeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGX">
        <xs:annotation>
          <xs:documentation>Knaresborough East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGY">
        <xs:annotation>
          <xs:documentation>Knaresborough King James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDGZ">
        <xs:annotation>
          <xs:documentation>Knaresborough Scriven Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHA">
        <xs:annotation>
          <xs:documentation>Low Harrogate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHB">
        <xs:annotation>
          <xs:documentation>Lower Nidderdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHC">
        <xs:annotation>
          <xs:documentation>Marston Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHD">
        <xs:annotation>
          <xs:documentation>Mashamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHE">
        <xs:annotation>
          <xs:documentation>Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHF">
        <xs:annotation>
          <xs:documentation>New Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHG">
        <xs:annotation>
          <xs:documentation>Nidd Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHH">
        <xs:annotation>
          <xs:documentation>Ouseburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHJ">
        <xs:annotation>
          <xs:documentation>Pannal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHK">
        <xs:annotation>
          <xs:documentation>Pateley Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHL">
        <xs:annotation>
          <xs:documentation>Ribston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHM">
        <xs:annotation>
          <xs:documentation>Ripon Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHN">
        <xs:annotation>
          <xs:documentation>Ripon Moorside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHP">
        <xs:annotation>
          <xs:documentation>Ripon Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHQ">
        <xs:annotation>
          <xs:documentation>Rossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHR">
        <xs:annotation>
          <xs:documentation>Saltergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHS">
        <xs:annotation>
          <xs:documentation>Spofforth with Lower Wharfedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHT">
        <xs:annotation>
          <xs:documentation>Starbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHU">
        <xs:annotation>
          <xs:documentation>Stray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHW">
        <xs:annotation>
          <xs:documentation>Washburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHX">
        <xs:annotation>
          <xs:documentation>Wathvale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UDHY">
        <xs:annotation>
          <xs:documentation>Woodfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGD">
        <xs:annotation>
          <xs:documentation>Addlebrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGE">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGF">
        <xs:annotation>
          <xs:documentation>Bolton Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGG">
        <xs:annotation>
          <xs:documentation>Brompton-on-Swale and Scorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGH">
        <xs:annotation>
          <xs:documentation>Catterick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGJ">
        <xs:annotation>
          <xs:documentation>Colburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGK">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGL">
        <xs:annotation>
          <xs:documentation>Gilling West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGM">
        <xs:annotation>
          <xs:documentation>Hawes and High Abbotside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGN">
        <xs:annotation>
          <xs:documentation>Hipswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGP">
        <xs:annotation>
          <xs:documentation>Hornby Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGQ">
        <xs:annotation>
          <xs:documentation>Leyburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGR">
        <xs:annotation>
          <xs:documentation>Lower Wensleydale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGS">
        <xs:annotation>
          <xs:documentation>Melsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGT">
        <xs:annotation>
          <xs:documentation>Middleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGU">
        <xs:annotation>
          <xs:documentation>Middleton Tyas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGW">
        <xs:annotation>
          <xs:documentation>Newsham with Eppleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGX">
        <xs:annotation>
          <xs:documentation>Penhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGY">
        <xs:annotation>
          <xs:documentation>Reeth and Arkengarthdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEGZ">
        <xs:annotation>
          <xs:documentation>Richmond Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEHA">
        <xs:annotation>
          <xs:documentation>Richmond East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEHB">
        <xs:annotation>
          <xs:documentation>Richmond West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEHC">
        <xs:annotation>
          <xs:documentation>Scotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UEHD">
        <xs:annotation>
          <xs:documentation>Swaledale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGF">
        <xs:annotation>
          <xs:documentation>Amotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGG">
        <xs:annotation>
          <xs:documentation>Ampleforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGH">
        <xs:annotation>
          <xs:documentation>Cropton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGJ">
        <xs:annotation>
          <xs:documentation>Dales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGK">
        <xs:annotation>
          <xs:documentation>Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGL">
        <xs:annotation>
          <xs:documentation>Helmsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGM">
        <xs:annotation>
          <xs:documentation>Hovingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGN">
        <xs:annotation>
          <xs:documentation>Kirkbymoorside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGP">
        <xs:annotation>
          <xs:documentation>Malton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGQ">
        <xs:annotation>
          <xs:documentation>Norton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGR">
        <xs:annotation>
          <xs:documentation>Norton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGS">
        <xs:annotation>
          <xs:documentation>Pickering East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGT">
        <xs:annotation>
          <xs:documentation>Pickering West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGU">
        <xs:annotation>
          <xs:documentation>Rillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGW">
        <xs:annotation>
          <xs:documentation>Ryedale South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGX">
        <xs:annotation>
          <xs:documentation>Sherburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGY">
        <xs:annotation>
          <xs:documentation>Sheriff Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFGZ">
        <xs:annotation>
          <xs:documentation>Sinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFHA">
        <xs:annotation>
          <xs:documentation>Thornton Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UFHB">
        <xs:annotation>
          <xs:documentation>Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGFZ">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGA">
        <xs:annotation>
          <xs:documentation>Cayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGB">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGC">
        <xs:annotation>
          <xs:documentation>Danby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGD">
        <xs:annotation>
          <xs:documentation>Derwent Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGE">
        <xs:annotation>
          <xs:documentation>Eastfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGF">
        <xs:annotation>
          <xs:documentation>Esk Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGG">
        <xs:annotation>
          <xs:documentation>Falsgrave Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGH">
        <xs:annotation>
          <xs:documentation>Filey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGJ">
        <xs:annotation>
          <xs:documentation>Fylingdales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGK">
        <xs:annotation>
          <xs:documentation>Hertford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGL">
        <xs:annotation>
          <xs:documentation>Lindhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGM">
        <xs:annotation>
          <xs:documentation>Mayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGN">
        <xs:annotation>
          <xs:documentation>Mulgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGP">
        <xs:annotation>
          <xs:documentation>Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGQ">
        <xs:annotation>
          <xs:documentation>North Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGR">
        <xs:annotation>
          <xs:documentation>Northstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGS">
        <xs:annotation>
          <xs:documentation>Ramshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGT">
        <xs:annotation>
          <xs:documentation>Scalby, Hackness and Staintondale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGU">
        <xs:annotation>
          <xs:documentation>Seamer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGW">
        <xs:annotation>
          <xs:documentation>Stepney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGX">
        <xs:annotation>
          <xs:documentation>Streonshalh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGY">
        <xs:annotation>
          <xs:documentation>Weaponness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGGZ">
        <xs:annotation>
          <xs:documentation>Whitby West Cliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UGHA">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGN">
        <xs:annotation>
          <xs:documentation>Appleton Roebuck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGP">
        <xs:annotation>
          <xs:documentation>Barlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGQ">
        <xs:annotation>
          <xs:documentation>Brayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGR">
        <xs:annotation>
          <xs:documentation>Camblesforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGS">
        <xs:annotation>
          <xs:documentation>Cawood with Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGT">
        <xs:annotation>
          <xs:documentation>Eggborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGU">
        <xs:annotation>
          <xs:documentation>Fairburn with Brotherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGW">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGX">
        <xs:annotation>
          <xs:documentation>Hemingbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGY">
        <xs:annotation>
          <xs:documentation>Monk Fryston and South Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHGZ">
        <xs:annotation>
          <xs:documentation>North Duffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHA">
        <xs:annotation>
          <xs:documentation>Riccall with Escrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHB">
        <xs:annotation>
          <xs:documentation>Saxton and Ulleskelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHC">
        <xs:annotation>
          <xs:documentation>Selby North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHD">
        <xs:annotation>
          <xs:documentation>Selby South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHE">
        <xs:annotation>
          <xs:documentation>Selby West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHF">
        <xs:annotation>
          <xs:documentation>Sherburn in Elmet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHG">
        <xs:annotation>
          <xs:documentation>Tadcaster East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHH">
        <xs:annotation>
          <xs:documentation>Tadcaster West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36UHHJ">
        <xs:annotation>
          <xs:documentation>Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFR">
        <xs:annotation>
          <xs:documentation>Hucknall Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFS">
        <xs:annotation>
          <xs:documentation>Hucknall East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFT">
        <xs:annotation>
          <xs:documentation>Hucknall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFU">
        <xs:annotation>
          <xs:documentation>Hucknall West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFW">
        <xs:annotation>
          <xs:documentation>Jacksdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFX">
        <xs:annotation>
          <xs:documentation>Kirkby in Ashfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFY">
        <xs:annotation>
          <xs:documentation>Kirkby in Ashfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBFZ">
        <xs:annotation>
          <xs:documentation>Kirkby in Ashfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGA">
        <xs:annotation>
          <xs:documentation>Selston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGB">
        <xs:annotation>
          <xs:documentation>Sutton in Ashfield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGC">
        <xs:annotation>
          <xs:documentation>Sutton in Ashfield East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGD">
        <xs:annotation>
          <xs:documentation>Sutton in Ashfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGE">
        <xs:annotation>
          <xs:documentation>Sutton in Ashfield West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGF">
        <xs:annotation>
          <xs:documentation>Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UBGG">
        <xs:annotation>
          <xs:documentation>Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGE">
        <xs:annotation>
          <xs:documentation>Beckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGF">
        <xs:annotation>
          <xs:documentation>Blyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGG">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGH">
        <xs:annotation>
          <xs:documentation>Clayworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGJ">
        <xs:annotation>
          <xs:documentation>East Markham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGK">
        <xs:annotation>
          <xs:documentation>East Retford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGL">
        <xs:annotation>
          <xs:documentation>East Retford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGM">
        <xs:annotation>
          <xs:documentation>East Retford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGN">
        <xs:annotation>
          <xs:documentation>East Retford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGP">
        <xs:annotation>
          <xs:documentation>Everton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGQ">
        <xs:annotation>
          <xs:documentation>Harworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGR">
        <xs:annotation>
          <xs:documentation>Langold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGS">
        <xs:annotation>
          <xs:documentation>Misterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGT">
        <xs:annotation>
          <xs:documentation>Rampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGU">
        <xs:annotation>
          <xs:documentation>Ranskill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGW">
        <xs:annotation>
          <xs:documentation>Sturton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGX">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGY">
        <xs:annotation>
          <xs:documentation>Tuxford and Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCGZ">
        <xs:annotation>
          <xs:documentation>Welbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHA">
        <xs:annotation>
          <xs:documentation>Worksop East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHB">
        <xs:annotation>
          <xs:documentation>Worksop North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHC">
        <xs:annotation>
          <xs:documentation>Worksop North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHD">
        <xs:annotation>
          <xs:documentation>Worksop North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHE">
        <xs:annotation>
          <xs:documentation>Worksop South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UCHF">
        <xs:annotation>
          <xs:documentation>Worksop South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDFY">
        <xs:annotation>
          <xs:documentation>Attenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDFZ">
        <xs:annotation>
          <xs:documentation>Awsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGA">
        <xs:annotation>
          <xs:documentation>Beeston Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGB">
        <xs:annotation>
          <xs:documentation>Beeston North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGC">
        <xs:annotation>
          <xs:documentation>Beeston Rylands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGD">
        <xs:annotation>
          <xs:documentation>Beeston West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGE">
        <xs:annotation>
          <xs:documentation>Bramcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGF">
        <xs:annotation>
          <xs:documentation>Brinsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGG">
        <xs:annotation>
          <xs:documentation>Chilwell East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGH">
        <xs:annotation>
          <xs:documentation>Chilwell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGJ">
        <xs:annotation>
          <xs:documentation>Cossall and Kimberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGK">
        <xs:annotation>
          <xs:documentation>Eastwood North and Greasley (Beauvale)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGL">
        <xs:annotation>
          <xs:documentation>Eastwood South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGM">
        <xs:annotation>
          <xs:documentation>Greasley (Giltbrook and Newthorpe)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGN">
        <xs:annotation>
          <xs:documentation>Nuthall East and Strelley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGP">
        <xs:annotation>
          <xs:documentation>Nuthall West and Greasley (Watnall)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGQ">
        <xs:annotation>
          <xs:documentation>Stapleford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGR">
        <xs:annotation>
          <xs:documentation>Stapleford South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGS">
        <xs:annotation>
          <xs:documentation>Stapleford South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGT">
        <xs:annotation>
          <xs:documentation>Toton and Chilwell Meadows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UDGU">
        <xs:annotation>
          <xs:documentation>Trowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGB">
        <xs:annotation>
          <xs:documentation>Bestwood Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGC">
        <xs:annotation>
          <xs:documentation>Bonington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGD">
        <xs:annotation>
          <xs:documentation>Burton Joyce and Stoke Bardolph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGE">
        <xs:annotation>
          <xs:documentation>Calverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGF">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGG">
        <xs:annotation>
          <xs:documentation>Carlton Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGH">
        <xs:annotation>
          <xs:documentation>Daybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGJ">
        <xs:annotation>
          <xs:documentation>Gedling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGK">
        <xs:annotation>
          <xs:documentation>Killisick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGL">
        <xs:annotation>
          <xs:documentation>Kingswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGM">
        <xs:annotation>
          <xs:documentation>Lambley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGN">
        <xs:annotation>
          <xs:documentation>Mapperley Plains</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGP">
        <xs:annotation>
          <xs:documentation>Netherfield and Colwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGQ">
        <xs:annotation>
          <xs:documentation>Newstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGR">
        <xs:annotation>
          <xs:documentation>Phoenix</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGS">
        <xs:annotation>
          <xs:documentation>Porchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGT">
        <xs:annotation>
          <xs:documentation>Ravenshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGU">
        <xs:annotation>
          <xs:documentation>St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGW">
        <xs:annotation>
          <xs:documentation>St Marys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGX">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGY">
        <xs:annotation>
          <xs:documentation>Woodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UEGZ">
        <xs:annotation>
          <xs:documentation>Woodthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFFU">
        <xs:annotation>
          <xs:documentation>Berry Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFFW">
        <xs:annotation>
          <xs:documentation>Birklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFFX">
        <xs:annotation>
          <xs:documentation>Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFFY">
        <xs:annotation>
          <xs:documentation>Cumberlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFFZ">
        <xs:annotation>
          <xs:documentation>Eakring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGA">
        <xs:annotation>
          <xs:documentation>Forest Town East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGB">
        <xs:annotation>
          <xs:documentation>Forest Town West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGC">
        <xs:annotation>
          <xs:documentation>Grange Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGD">
        <xs:annotation>
          <xs:documentation>Ladybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGE">
        <xs:annotation>
          <xs:documentation>Leeming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGF">
        <xs:annotation>
          <xs:documentation>Lindhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGG">
        <xs:annotation>
          <xs:documentation>Meden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGH">
        <xs:annotation>
          <xs:documentation>Oak Tree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGJ">
        <xs:annotation>
          <xs:documentation>Pleasley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGK">
        <xs:annotation>
          <xs:documentation>Portland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGL">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGM">
        <xs:annotation>
          <xs:documentation>Ravensdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGN">
        <xs:annotation>
          <xs:documentation>Robin Hood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UFGP">
        <xs:annotation>
          <xs:documentation>Sherwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGH">
        <xs:annotation>
          <xs:documentation>Balderton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGJ">
        <xs:annotation>
          <xs:documentation>Balderton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGK">
        <xs:annotation>
          <xs:documentation>Beacon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGL">
        <xs:annotation>
          <xs:documentation>Bilsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGM">
        <xs:annotation>
          <xs:documentation>Blidworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGN">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGP">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGQ">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGR">
        <xs:annotation>
          <xs:documentation>Caunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGS">
        <xs:annotation>
          <xs:documentation>Clipstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGT">
        <xs:annotation>
          <xs:documentation>Collingham and Meering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGU">
        <xs:annotation>
          <xs:documentation>Devon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGW">
        <xs:annotation>
          <xs:documentation>Edwinstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGX">
        <xs:annotation>
          <xs:documentation>Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGY">
        <xs:annotation>
          <xs:documentation>Farnsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGGZ">
        <xs:annotation>
          <xs:documentation>Lowdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHA">
        <xs:annotation>
          <xs:documentation>Magnus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHB">
        <xs:annotation>
          <xs:documentation>Muskham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHC">
        <xs:annotation>
          <xs:documentation>Ollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHD">
        <xs:annotation>
          <xs:documentation>Rainworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHE">
        <xs:annotation>
          <xs:documentation>Southwell East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHF">
        <xs:annotation>
          <xs:documentation>Southwell North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHG">
        <xs:annotation>
          <xs:documentation>Southwell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHH">
        <xs:annotation>
          <xs:documentation>Sutton-on-Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHJ">
        <xs:annotation>
          <xs:documentation>Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UGHK">
        <xs:annotation>
          <xs:documentation>Winthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGG">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGH">
        <xs:annotation>
          <xs:documentation>Bingham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGJ">
        <xs:annotation>
          <xs:documentation>Bingham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGK">
        <xs:annotation>
          <xs:documentation>Compton Acres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGL">
        <xs:annotation>
          <xs:documentation>Cotgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGM">
        <xs:annotation>
          <xs:documentation>Cranmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGN">
        <xs:annotation>
          <xs:documentation>Edwalton Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGP">
        <xs:annotation>
          <xs:documentation>Gamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGQ">
        <xs:annotation>
          <xs:documentation>Gotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGR">
        <xs:annotation>
          <xs:documentation>Keyworth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGS">
        <xs:annotation>
          <xs:documentation>Keyworth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGT">
        <xs:annotation>
          <xs:documentation>Lady Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGU">
        <xs:annotation>
          <xs:documentation>Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGW">
        <xs:annotation>
          <xs:documentation>Lutterell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGX">
        <xs:annotation>
          <xs:documentation>Manvers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGY">
        <xs:annotation>
          <xs:documentation>Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJGZ">
        <xs:annotation>
          <xs:documentation>Musters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHA">
        <xs:annotation>
          <xs:documentation>Nevile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHB">
        <xs:annotation>
          <xs:documentation>Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHC">
        <xs:annotation>
          <xs:documentation>Ruddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHD">
        <xs:annotation>
          <xs:documentation>Soar Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHE">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHF">
        <xs:annotation>
          <xs:documentation>Thoroton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHG">
        <xs:annotation>
          <xs:documentation>Tollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHH">
        <xs:annotation>
          <xs:documentation>Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHJ">
        <xs:annotation>
          <xs:documentation>Trent Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHK">
        <xs:annotation>
          <xs:documentation>Wiverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37UJHL">
        <xs:annotation>
          <xs:documentation>Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGJ">
        <xs:annotation>
          <xs:documentation>Adderbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGK">
        <xs:annotation>
          <xs:documentation>Ambrosden and Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGL">
        <xs:annotation>
          <xs:documentation>Banbury Calthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGM">
        <xs:annotation>
          <xs:documentation>Banbury Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGN">
        <xs:annotation>
          <xs:documentation>Banbury Grimsbury and Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGP">
        <xs:annotation>
          <xs:documentation>Banbury Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGQ">
        <xs:annotation>
          <xs:documentation>Banbury Neithrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGR">
        <xs:annotation>
          <xs:documentation>Banbury Ruscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGS">
        <xs:annotation>
          <xs:documentation>Bicester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGT">
        <xs:annotation>
          <xs:documentation>Bicester North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGU">
        <xs:annotation>
          <xs:documentation>Bicester South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGW">
        <xs:annotation>
          <xs:documentation>Bicester Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGX">
        <xs:annotation>
          <xs:documentation>Bicester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGY">
        <xs:annotation>
          <xs:documentation>Bloxham and Bodicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBGZ">
        <xs:annotation>
          <xs:documentation>Caversfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHA">
        <xs:annotation>
          <xs:documentation>Cropredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHB">
        <xs:annotation>
          <xs:documentation>Deddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHC">
        <xs:annotation>
          <xs:documentation>Fringford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHD">
        <xs:annotation>
          <xs:documentation>Hook Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHE">
        <xs:annotation>
          <xs:documentation>Kidlington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHF">
        <xs:annotation>
          <xs:documentation>Kidlington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHG">
        <xs:annotation>
          <xs:documentation>Kirtlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHH">
        <xs:annotation>
          <xs:documentation>Launton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHJ">
        <xs:annotation>
          <xs:documentation>Otmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHK">
        <xs:annotation>
          <xs:documentation>Sibford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHL">
        <xs:annotation>
          <xs:documentation>The Astons and Heyfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHM">
        <xs:annotation>
          <xs:documentation>Wroxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UBHN">
        <xs:annotation>
          <xs:documentation>Yarnton, Gosford and Water Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFT">
        <xs:annotation>
          <xs:documentation>Barton and Sandhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFU">
        <xs:annotation>
          <xs:documentation>Blackbird Leys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFW">
        <xs:annotation>
          <xs:documentation>Carfax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFX">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFY">
        <xs:annotation>
          <xs:documentation>Cowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCFZ">
        <xs:annotation>
          <xs:documentation>Cowley Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGA">
        <xs:annotation>
          <xs:documentation>Headington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGB">
        <xs:annotation>
          <xs:documentation>Headington Hill and Northway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGC">
        <xs:annotation>
          <xs:documentation>Hinksey Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGD">
        <xs:annotation>
          <xs:documentation>Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGE">
        <xs:annotation>
          <xs:documentation>Iffley Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGF">
        <xs:annotation>
          <xs:documentation>Jericho and Osney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGG">
        <xs:annotation>
          <xs:documentation>Littlemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGH">
        <xs:annotation>
          <xs:documentation>Lye Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGJ">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGK">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGL">
        <xs:annotation>
          <xs:documentation>Northfield Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGM">
        <xs:annotation>
          <xs:documentation>Quarry and Risinghurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGN">
        <xs:annotation>
          <xs:documentation>Rose Hill and Iffley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGP">
        <xs:annotation>
          <xs:documentation>St Clement's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGQ">
        <xs:annotation>
          <xs:documentation>St Margaret's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGR">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGS">
        <xs:annotation>
          <xs:documentation>Summertown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UCGT">
        <xs:annotation>
          <xs:documentation>Wolvercote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGK">
        <xs:annotation>
          <xs:documentation>Aston Rowant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGL">
        <xs:annotation>
          <xs:documentation>Benson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGM">
        <xs:annotation>
          <xs:documentation>Berinsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGN">
        <xs:annotation>
          <xs:documentation>Brightwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGP">
        <xs:annotation>
          <xs:documentation>Chalgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGQ">
        <xs:annotation>
          <xs:documentation>Chiltern Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGR">
        <xs:annotation>
          <xs:documentation>Chinnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGS">
        <xs:annotation>
          <xs:documentation>Cholsey and Wallingford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGT">
        <xs:annotation>
          <xs:documentation>Crowmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGU">
        <xs:annotation>
          <xs:documentation>Didcot All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGW">
        <xs:annotation>
          <xs:documentation>Didcot Ladygrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGX">
        <xs:annotation>
          <xs:documentation>Didcot Northbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGY">
        <xs:annotation>
          <xs:documentation>Didcot Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDGZ">
        <xs:annotation>
          <xs:documentation>Forest Hill and Holton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHA">
        <xs:annotation>
          <xs:documentation>Garsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHB">
        <xs:annotation>
          <xs:documentation>Goring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHC">
        <xs:annotation>
          <xs:documentation>Great Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHD">
        <xs:annotation>
          <xs:documentation>Hagbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHE">
        <xs:annotation>
          <xs:documentation>Henley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHF">
        <xs:annotation>
          <xs:documentation>Henley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHG">
        <xs:annotation>
          <xs:documentation>Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHH">
        <xs:annotation>
          <xs:documentation>Shiplake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHJ">
        <xs:annotation>
          <xs:documentation>Sonning Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHK">
        <xs:annotation>
          <xs:documentation>Thame North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHL">
        <xs:annotation>
          <xs:documentation>Thame South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHM">
        <xs:annotation>
          <xs:documentation>Wallingford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHN">
        <xs:annotation>
          <xs:documentation>Watlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHP">
        <xs:annotation>
          <xs:documentation>Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UDHQ">
        <xs:annotation>
          <xs:documentation>Woodcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGJ">
        <xs:annotation>
          <xs:documentation>Abingdon Abbey and Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGK">
        <xs:annotation>
          <xs:documentation>Abingdon Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGL">
        <xs:annotation>
          <xs:documentation>Abingdon Dunmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGM">
        <xs:annotation>
          <xs:documentation>Abingdon Fitzharris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGN">
        <xs:annotation>
          <xs:documentation>Abingdon Northcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGP">
        <xs:annotation>
          <xs:documentation>Abingdon Ock Meadow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGQ">
        <xs:annotation>
          <xs:documentation>Abingdon Peachcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGR">
        <xs:annotation>
          <xs:documentation>Appleton and Cumnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGS">
        <xs:annotation>
          <xs:documentation>Blewbury and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGT">
        <xs:annotation>
          <xs:documentation>Craven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGU">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGW">
        <xs:annotation>
          <xs:documentation>Faringdon and The Coxwells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGX">
        <xs:annotation>
          <xs:documentation>Greendown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGY">
        <xs:annotation>
          <xs:documentation>Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEGZ">
        <xs:annotation>
          <xs:documentation>Hanneys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHA">
        <xs:annotation>
          <xs:documentation>Harwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHB">
        <xs:annotation>
          <xs:documentation>Hendreds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHC">
        <xs:annotation>
          <xs:documentation>Kennington and South Hinksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHD">
        <xs:annotation>
          <xs:documentation>Kingston Bagpuize with Southmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHE">
        <xs:annotation>
          <xs:documentation>Longworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHF">
        <xs:annotation>
          <xs:documentation>Marcham and Shippon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHG">
        <xs:annotation>
          <xs:documentation>North Hinksey and Wytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHH">
        <xs:annotation>
          <xs:documentation>Radley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHJ">
        <xs:annotation>
          <xs:documentation>Shrivenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHK">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHL">
        <xs:annotation>
          <xs:documentation>Sunningwell and Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHM">
        <xs:annotation>
          <xs:documentation>Sutton Courtenay and Appleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHN">
        <xs:annotation>
          <xs:documentation>Wantage Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UEHP">
        <xs:annotation>
          <xs:documentation>Wantage Segsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGL">
        <xs:annotation>
          <xs:documentation>Alvescot and Filkins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGM">
        <xs:annotation>
          <xs:documentation>Ascott and Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGN">
        <xs:annotation>
          <xs:documentation>Bampton and Clanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGP">
        <xs:annotation>
          <xs:documentation>Brize Norton and Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGQ">
        <xs:annotation>
          <xs:documentation>Burford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGR">
        <xs:annotation>
          <xs:documentation>Carterton North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGS">
        <xs:annotation>
          <xs:documentation>Carterton North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGT">
        <xs:annotation>
          <xs:documentation>Carterton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGU">
        <xs:annotation>
          <xs:documentation>Chadlington and Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGW">
        <xs:annotation>
          <xs:documentation>Charlbury and Finstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGX">
        <xs:annotation>
          <xs:documentation>Chipping Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGY">
        <xs:annotation>
          <xs:documentation>Ducklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFGZ">
        <xs:annotation>
          <xs:documentation>Eynsham and Cassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHA">
        <xs:annotation>
          <xs:documentation>Freeland and Hanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHB">
        <xs:annotation>
          <xs:documentation>Hailey, Minster Lovell and Leafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHC">
        <xs:annotation>
          <xs:documentation>Kingham, Rollright and Enstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHD">
        <xs:annotation>
          <xs:documentation>Milton-under-Wychwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHE">
        <xs:annotation>
          <xs:documentation>North Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHF">
        <xs:annotation>
          <xs:documentation>Standlake, Aston and Stanton Harcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHG">
        <xs:annotation>
          <xs:documentation>Stonesfield and Tackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHH">
        <xs:annotation>
          <xs:documentation>The Bartons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHJ">
        <xs:annotation>
          <xs:documentation>Witney Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHK">
        <xs:annotation>
          <xs:documentation>Witney East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHL">
        <xs:annotation>
          <xs:documentation>Witney North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHM">
        <xs:annotation>
          <xs:documentation>Witney South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHN">
        <xs:annotation>
          <xs:documentation>Witney West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38UFHP">
        <xs:annotation>
          <xs:documentation>Woodstock and Bladon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBFX">
        <xs:annotation>
          <xs:documentation>Albrighton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBFY">
        <xs:annotation>
          <xs:documentation>Alveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBFZ">
        <xs:annotation>
          <xs:documentation>Bridgnorth Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGA">
        <xs:annotation>
          <xs:documentation>Bridgnorth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGB">
        <xs:annotation>
          <xs:documentation>Bridgnorth Morfe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGC">
        <xs:annotation>
          <xs:documentation>Bridgnorth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGD">
        <xs:annotation>
          <xs:documentation>Broseley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGE">
        <xs:annotation>
          <xs:documentation>Broseley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGF">
        <xs:annotation>
          <xs:documentation>Claverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGG">
        <xs:annotation>
          <xs:documentation>Ditton Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGH">
        <xs:annotation>
          <xs:documentation>Donington and Albrighton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGJ">
        <xs:annotation>
          <xs:documentation>Glazeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGK">
        <xs:annotation>
          <xs:documentation>Harrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGL">
        <xs:annotation>
          <xs:documentation>Highley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGM">
        <xs:annotation>
          <xs:documentation>Morville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGN">
        <xs:annotation>
          <xs:documentation>Much Wenlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGP">
        <xs:annotation>
          <xs:documentation>Shifnal Idsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGQ">
        <xs:annotation>
          <xs:documentation>Shifnal Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGR">
        <xs:annotation>
          <xs:documentation>Shifnal Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGS">
        <xs:annotation>
          <xs:documentation>Stottesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UBGT">
        <xs:annotation>
          <xs:documentation>Worfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGD">
        <xs:annotation>
          <xs:documentation>Baschurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGE">
        <xs:annotation>
          <xs:documentation>Clive and Myddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGF">
        <xs:annotation>
          <xs:documentation>Cockshutt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGG">
        <xs:annotation>
          <xs:documentation>Dudleston Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGH">
        <xs:annotation>
          <xs:documentation>Ellesmere and Welshampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGJ">
        <xs:annotation>
          <xs:documentation>Hinstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGK">
        <xs:annotation>
          <xs:documentation>Hodnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGL">
        <xs:annotation>
          <xs:documentation>Hordley, Tetchill and Lyneal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGM">
        <xs:annotation>
          <xs:documentation>Market Drayton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGN">
        <xs:annotation>
          <xs:documentation>Market Drayton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGP">
        <xs:annotation>
          <xs:documentation>Market Drayton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGQ">
        <xs:annotation>
          <xs:documentation>Prees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGR">
        <xs:annotation>
          <xs:documentation>Shavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGS">
        <xs:annotation>
          <xs:documentation>Shawbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGT">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGU">
        <xs:annotation>
          <xs:documentation>Wem East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGW">
        <xs:annotation>
          <xs:documentation>Wem Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGX">
        <xs:annotation>
          <xs:documentation>Wem West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGY">
        <xs:annotation>
          <xs:documentation>Whitchurch North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCGZ">
        <xs:annotation>
          <xs:documentation>Whitchurch Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCHA">
        <xs:annotation>
          <xs:documentation>Whitchurch South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCHB">
        <xs:annotation>
          <xs:documentation>Whitchurch West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCHC">
        <xs:annotation>
          <xs:documentation>Whixhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UCHD">
        <xs:annotation>
          <xs:documentation>Woore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFR">
        <xs:annotation>
          <xs:documentation>Cabin Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFS">
        <xs:annotation>
          <xs:documentation>Cambrian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFT">
        <xs:annotation>
          <xs:documentation>Carreg Llwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFU">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFW">
        <xs:annotation>
          <xs:documentation>Gatacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFX">
        <xs:annotation>
          <xs:documentation>Gobowen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFY">
        <xs:annotation>
          <xs:documentation>Kinnerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDFZ">
        <xs:annotation>
          <xs:documentation>Llanyblodwel and Pant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGA">
        <xs:annotation>
          <xs:documentation>Maserfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGB">
        <xs:annotation>
          <xs:documentation>Ruyton and West Felton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGC">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGD">
        <xs:annotation>
          <xs:documentation>Sweeney and Trefonen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGE">
        <xs:annotation>
          <xs:documentation>Weston Rhyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UDGF">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEFZ">
        <xs:annotation>
          <xs:documentation>Bagley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGA">
        <xs:annotation>
          <xs:documentation>Battlefield and Heathgates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGB">
        <xs:annotation>
          <xs:documentation>Bayston Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGC">
        <xs:annotation>
          <xs:documentation>Belle Vue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGD">
        <xs:annotation>
          <xs:documentation>Bowbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGE">
        <xs:annotation>
          <xs:documentation>Castlefields and Quarry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGF">
        <xs:annotation>
          <xs:documentation>Column</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGG">
        <xs:annotation>
          <xs:documentation>Condover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGH">
        <xs:annotation>
          <xs:documentation>Copthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGJ">
        <xs:annotation>
          <xs:documentation>Hanwood and Longden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGK">
        <xs:annotation>
          <xs:documentation>Harlescott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGL">
        <xs:annotation>
          <xs:documentation>Haughmond and Attingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGM">
        <xs:annotation>
          <xs:documentation>Lawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGN">
        <xs:annotation>
          <xs:documentation>Meole Brace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGP">
        <xs:annotation>
          <xs:documentation>Monkmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGQ">
        <xs:annotation>
          <xs:documentation>Montford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGR">
        <xs:annotation>
          <xs:documentation>Pimhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGS">
        <xs:annotation>
          <xs:documentation>Porthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGT">
        <xs:annotation>
          <xs:documentation>Rea Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGU">
        <xs:annotation>
          <xs:documentation>Rowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGW">
        <xs:annotation>
          <xs:documentation>Severn Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGX">
        <xs:annotation>
          <xs:documentation>Sundorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGY">
        <xs:annotation>
          <xs:documentation>Sutton and Reabrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UEGZ">
        <xs:annotation>
          <xs:documentation>Underdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGF">
        <xs:annotation>
          <xs:documentation>Apedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGG">
        <xs:annotation>
          <xs:documentation>Bishop's Castle with Onny Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGH">
        <xs:annotation>
          <xs:documentation>Bitterley with Stoke St Milborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGJ">
        <xs:annotation>
          <xs:documentation>Bucknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGK">
        <xs:annotation>
          <xs:documentation>Burford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGL">
        <xs:annotation>
          <xs:documentation>Caynham with Ashford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGM">
        <xs:annotation>
          <xs:documentation>Chirbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGN">
        <xs:annotation>
          <xs:documentation>Church Stretton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGP">
        <xs:annotation>
          <xs:documentation>Church Stretton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGQ">
        <xs:annotation>
          <xs:documentation>Clee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGR">
        <xs:annotation>
          <xs:documentation>Cleobury Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGS">
        <xs:annotation>
          <xs:documentation>Clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGT">
        <xs:annotation>
          <xs:documentation>Clun Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGU">
        <xs:annotation>
          <xs:documentation>Corve Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGW">
        <xs:annotation>
          <xs:documentation>Kemp Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGX">
        <xs:annotation>
          <xs:documentation>Ludlow Henley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGY">
        <xs:annotation>
          <xs:documentation>Ludlow St Laurence's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFGZ">
        <xs:annotation>
          <xs:documentation>Ludlow St Peter's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFHA">
        <xs:annotation>
          <xs:documentation>Ludlow Sheet with Ludford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFHB">
        <xs:annotation>
          <xs:documentation>Stokesay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFHC">
        <xs:annotation>
          <xs:documentation>Upper Corvedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFHD">
        <xs:annotation>
          <xs:documentation>Wistanstow with Hopesay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39UFHE">
        <xs:annotation>
          <xs:documentation>Worthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGK">
        <xs:annotation>
          <xs:documentation>Ashwick and Ston Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGL">
        <xs:annotation>
          <xs:documentation>Avalon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGM">
        <xs:annotation>
          <xs:documentation>Beacon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGN">
        <xs:annotation>
          <xs:documentation>Beckington and Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGP">
        <xs:annotation>
          <xs:documentation>Chilcompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGQ">
        <xs:annotation>
          <xs:documentation>Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGR">
        <xs:annotation>
          <xs:documentation>Creech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGS">
        <xs:annotation>
          <xs:documentation>Frome Berkley Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGT">
        <xs:annotation>
          <xs:documentation>Frome Fromefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGU">
        <xs:annotation>
          <xs:documentation>Frome Keyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGW">
        <xs:annotation>
          <xs:documentation>Frome Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGX">
        <xs:annotation>
          <xs:documentation>Frome Welshmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGY">
        <xs:annotation>
          <xs:documentation>Glastonbury St Benedict's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBGZ">
        <xs:annotation>
          <xs:documentation>Glastonbury St Edmund's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHA">
        <xs:annotation>
          <xs:documentation>Glastonbury St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHB">
        <xs:annotation>
          <xs:documentation>Glastonbury St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHC">
        <xs:annotation>
          <xs:documentation>Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHD">
        <xs:annotation>
          <xs:documentation>Mells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHE">
        <xs:annotation>
          <xs:documentation>Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHF">
        <xs:annotation>
          <xs:documentation>Nedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHG">
        <xs:annotation>
          <xs:documentation>Nordinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHH">
        <xs:annotation>
          <xs:documentation>Postlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHJ">
        <xs:annotation>
          <xs:documentation>Pylcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHK">
        <xs:annotation>
          <xs:documentation>Rodney and Priddy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHL">
        <xs:annotation>
          <xs:documentation>St Cuthbert (Out) North and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHM">
        <xs:annotation>
          <xs:documentation>Shepton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHN">
        <xs:annotation>
          <xs:documentation>Shepton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHP">
        <xs:annotation>
          <xs:documentation>Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHQ">
        <xs:annotation>
          <xs:documentation>Street North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHR">
        <xs:annotation>
          <xs:documentation>Street South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHS">
        <xs:annotation>
          <xs:documentation>Street West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHT">
        <xs:annotation>
          <xs:documentation>Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHU">
        <xs:annotation>
          <xs:documentation>Wells Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHW">
        <xs:annotation>
          <xs:documentation>Wells St Cuthbert's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UBHX">
        <xs:annotation>
          <xs:documentation>Wells St Thomas'</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGJ">
        <xs:annotation>
          <xs:documentation>Axbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGK">
        <xs:annotation>
          <xs:documentation>Axe Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGL">
        <xs:annotation>
          <xs:documentation>Berrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGM">
        <xs:annotation>
          <xs:documentation>Brent North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGN">
        <xs:annotation>
          <xs:documentation>Bridgwater Bower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGP">
        <xs:annotation>
          <xs:documentation>Bridgwater Eastover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGQ">
        <xs:annotation>
          <xs:documentation>Bridgwater Hamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGR">
        <xs:annotation>
          <xs:documentation>Bridgwater Quantock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGS">
        <xs:annotation>
          <xs:documentation>Bridgwater Sydenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGT">
        <xs:annotation>
          <xs:documentation>Bridgwater Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGU">
        <xs:annotation>
          <xs:documentation>Burnham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGW">
        <xs:annotation>
          <xs:documentation>Burnham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGX">
        <xs:annotation>
          <xs:documentation>Cannington and Quantocks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGY">
        <xs:annotation>
          <xs:documentation>Cheddar and Shipham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCGZ">
        <xs:annotation>
          <xs:documentation>East Poldens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHA">
        <xs:annotation>
          <xs:documentation>Highbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHB">
        <xs:annotation>
          <xs:documentation>Huntspill and Pawlett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHC">
        <xs:annotation>
          <xs:documentation>King's Isle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHD">
        <xs:annotation>
          <xs:documentation>Knoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHE">
        <xs:annotation>
          <xs:documentation>North Petherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHF">
        <xs:annotation>
          <xs:documentation>Puriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHG">
        <xs:annotation>
          <xs:documentation>Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHH">
        <xs:annotation>
          <xs:documentation>Wedmore and Mark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHJ">
        <xs:annotation>
          <xs:documentation>West Poldens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UCHK">
        <xs:annotation>
          <xs:documentation>Woolavington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJP">
        <xs:annotation>
          <xs:documentation>Blackdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJQ">
        <xs:annotation>
          <xs:documentation>Blackmoor Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJR">
        <xs:annotation>
          <xs:documentation>Bruton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJS">
        <xs:annotation>
          <xs:documentation>Brympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJT">
        <xs:annotation>
          <xs:documentation>Burrow Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJU">
        <xs:annotation>
          <xs:documentation>Camelot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJW">
        <xs:annotation>
          <xs:documentation>Cary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJX">
        <xs:annotation>
          <xs:documentation>Chard Avishayes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJY">
        <xs:annotation>
          <xs:documentation>Chard Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDJZ">
        <xs:annotation>
          <xs:documentation>Chard Crimchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKA">
        <xs:annotation>
          <xs:documentation>Chard Holyrood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKB">
        <xs:annotation>
          <xs:documentation>Chard Jocelyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKC">
        <xs:annotation>
          <xs:documentation>Coker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKD">
        <xs:annotation>
          <xs:documentation>Crewkerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKE">
        <xs:annotation>
          <xs:documentation>Curry Rivel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKF">
        <xs:annotation>
          <xs:documentation>Eggwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKG">
        <xs:annotation>
          <xs:documentation>Hamdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKH">
        <xs:annotation>
          <xs:documentation>Ilminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKJ">
        <xs:annotation>
          <xs:documentation>Islemoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKK">
        <xs:annotation>
          <xs:documentation>Ivelchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKL">
        <xs:annotation>
          <xs:documentation>Langport and Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKM">
        <xs:annotation>
          <xs:documentation>Martock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKN">
        <xs:annotation>
          <xs:documentation>Milborne Port</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKP">
        <xs:annotation>
          <xs:documentation>Neroche</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKQ">
        <xs:annotation>
          <xs:documentation>Northstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKR">
        <xs:annotation>
          <xs:documentation>Parrett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKS">
        <xs:annotation>
          <xs:documentation>St Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKT">
        <xs:annotation>
          <xs:documentation>South Petherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKU">
        <xs:annotation>
          <xs:documentation>Tatworth and Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKW">
        <xs:annotation>
          <xs:documentation>Tower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKX">
        <xs:annotation>
          <xs:documentation>Turn Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKY">
        <xs:annotation>
          <xs:documentation>Wessex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDKZ">
        <xs:annotation>
          <xs:documentation>Wincanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLA">
        <xs:annotation>
          <xs:documentation>Windwhistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLB">
        <xs:annotation>
          <xs:documentation>Yeovil Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLC">
        <xs:annotation>
          <xs:documentation>Yeovil East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLD">
        <xs:annotation>
          <xs:documentation>Yeovil South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLE">
        <xs:annotation>
          <xs:documentation>Yeovil West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UDLF">
        <xs:annotation>
          <xs:documentation>Yeovil Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGH">
        <xs:annotation>
          <xs:documentation>Bishop's Hull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGJ">
        <xs:annotation>
          <xs:documentation>Bishop's Lydeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGK">
        <xs:annotation>
          <xs:documentation>Blackdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGL">
        <xs:annotation>
          <xs:documentation>Bradford-on-Tone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGM">
        <xs:annotation>
          <xs:documentation>Comeytrowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGN">
        <xs:annotation>
          <xs:documentation>Milverton and North Deane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGP">
        <xs:annotation>
          <xs:documentation>Monument</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGQ">
        <xs:annotation>
          <xs:documentation>Neroche</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGR">
        <xs:annotation>
          <xs:documentation>North Curry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGS">
        <xs:annotation>
          <xs:documentation>Norton Fitzwarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGT">
        <xs:annotation>
          <xs:documentation>Ruishton and Creech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGU">
        <xs:annotation>
          <xs:documentation>Staplegrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGW">
        <xs:annotation>
          <xs:documentation>Stoke St. Gregory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGX">
        <xs:annotation>
          <xs:documentation>Taunton Blackbrook and Holway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGY">
        <xs:annotation>
          <xs:documentation>Taunton Eastgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEGZ">
        <xs:annotation>
          <xs:documentation>Taunton Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHA">
        <xs:annotation>
          <xs:documentation>Taunton Halcon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHB">
        <xs:annotation>
          <xs:documentation>Taunton Killams and Mountfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHC">
        <xs:annotation>
          <xs:documentation>Taunton Lyngford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHD">
        <xs:annotation>
          <xs:documentation>Taunton Manor and Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHE">
        <xs:annotation>
          <xs:documentation>Taunton Pyrland and Rowbarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHF">
        <xs:annotation>
          <xs:documentation>Trull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHG">
        <xs:annotation>
          <xs:documentation>Wellington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHH">
        <xs:annotation>
          <xs:documentation>Wellington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHJ">
        <xs:annotation>
          <xs:documentation>Wellington Rockwell Green and West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHK">
        <xs:annotation>
          <xs:documentation>West Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UEHL">
        <xs:annotation>
          <xs:documentation>Wiveliscombe and West Deane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFFW">
        <xs:annotation>
          <xs:documentation>Alcombe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFFX">
        <xs:annotation>
          <xs:documentation>Alcombe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFFY">
        <xs:annotation>
          <xs:documentation>Aville Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFFZ">
        <xs:annotation>
          <xs:documentation>Brompton Ralph and Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGA">
        <xs:annotation>
          <xs:documentation>Carhampton and Withycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGB">
        <xs:annotation>
          <xs:documentation>Crowcombe and Stogumber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGC">
        <xs:annotation>
          <xs:documentation>Dulverton and Brushford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGD">
        <xs:annotation>
          <xs:documentation>Dunster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGE">
        <xs:annotation>
          <xs:documentation>Exmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGF">
        <xs:annotation>
          <xs:documentation>Minehead North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGG">
        <xs:annotation>
          <xs:documentation>Minehead South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGH">
        <xs:annotation>
          <xs:documentation>Old Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGJ">
        <xs:annotation>
          <xs:documentation>Porlock and District</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGK">
        <xs:annotation>
          <xs:documentation>Quantock Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGL">
        <xs:annotation>
          <xs:documentation>Quarme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGM">
        <xs:annotation>
          <xs:documentation>Watchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGN">
        <xs:annotation>
          <xs:documentation>West Quantock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="40UFGP">
        <xs:annotation>
          <xs:documentation>Williton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFR">
        <xs:annotation>
          <xs:documentation>Brereton and Ravenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFS">
        <xs:annotation>
          <xs:documentation>Cannock East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFT">
        <xs:annotation>
          <xs:documentation>Cannock North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFU">
        <xs:annotation>
          <xs:documentation>Cannock South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFW">
        <xs:annotation>
          <xs:documentation>Cannock West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFX">
        <xs:annotation>
          <xs:documentation>Etching Hill and The Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFY">
        <xs:annotation>
          <xs:documentation>Hagley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBFZ">
        <xs:annotation>
          <xs:documentation>Hawks Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGA">
        <xs:annotation>
          <xs:documentation>Heath Hayes East and Wimblebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGB">
        <xs:annotation>
          <xs:documentation>Hednesford Green Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGC">
        <xs:annotation>
          <xs:documentation>Hednesford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGD">
        <xs:annotation>
          <xs:documentation>Hednesford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGE">
        <xs:annotation>
          <xs:documentation>Norton Canes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGF">
        <xs:annotation>
          <xs:documentation>Rawnsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UBGG">
        <xs:annotation>
          <xs:documentation>Western Springs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGC">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGD">
        <xs:annotation>
          <xs:documentation>Anglesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGE">
        <xs:annotation>
          <xs:documentation>Bagots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGF">
        <xs:annotation>
          <xs:documentation>Branston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGG">
        <xs:annotation>
          <xs:documentation>Brizlincote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGH">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGJ">
        <xs:annotation>
          <xs:documentation>Churnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGK">
        <xs:annotation>
          <xs:documentation>Crown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGL">
        <xs:annotation>
          <xs:documentation>Eton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGM">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGN">
        <xs:annotation>
          <xs:documentation>Horninglow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGP">
        <xs:annotation>
          <xs:documentation>Needwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGQ">
        <xs:annotation>
          <xs:documentation>Rolleston on Dove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGR">
        <xs:annotation>
          <xs:documentation>Shobnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGS">
        <xs:annotation>
          <xs:documentation>Stapenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGT">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGU">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGW">
        <xs:annotation>
          <xs:documentation>Tutbury and Outwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGX">
        <xs:annotation>
          <xs:documentation>Weaver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGY">
        <xs:annotation>
          <xs:documentation>Winshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UCGZ">
        <xs:annotation>
          <xs:documentation>Yoxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGE">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGF">
        <xs:annotation>
          <xs:documentation>Alrewas and Fradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGG">
        <xs:annotation>
          <xs:documentation>Armitage with Handsacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGH">
        <xs:annotation>
          <xs:documentation>Boley Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGJ">
        <xs:annotation>
          <xs:documentation>Boney Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGK">
        <xs:annotation>
          <xs:documentation>Bourne Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGL">
        <xs:annotation>
          <xs:documentation>Burntwood Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGM">
        <xs:annotation>
          <xs:documentation>Chadsmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGN">
        <xs:annotation>
          <xs:documentation>Chase Terrace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGP">
        <xs:annotation>
          <xs:documentation>Chasetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGQ">
        <xs:annotation>
          <xs:documentation>Colton and Mavesyn Ridware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGR">
        <xs:annotation>
          <xs:documentation>Curborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGS">
        <xs:annotation>
          <xs:documentation>Fazeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGT">
        <xs:annotation>
          <xs:documentation>Hammerwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGU">
        <xs:annotation>
          <xs:documentation>Highfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGW">
        <xs:annotation>
          <xs:documentation>King's Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGX">
        <xs:annotation>
          <xs:documentation>Leomansley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGY">
        <xs:annotation>
          <xs:documentation>Little Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDGZ">
        <xs:annotation>
          <xs:documentation>Longdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHA">
        <xs:annotation>
          <xs:documentation>Mease and Tame</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHB">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHC">
        <xs:annotation>
          <xs:documentation>Shenstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHD">
        <xs:annotation>
          <xs:documentation>Stonnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHE">
        <xs:annotation>
          <xs:documentation>Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHF">
        <xs:annotation>
          <xs:documentation>Summerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UDHG">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGA">
        <xs:annotation>
          <xs:documentation>Audley and Bignall End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGB">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGC">
        <xs:annotation>
          <xs:documentation>Butt Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGD">
        <xs:annotation>
          <xs:documentation>Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGE">
        <xs:annotation>
          <xs:documentation>Clayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGF">
        <xs:annotation>
          <xs:documentation>Cross Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGG">
        <xs:annotation>
          <xs:documentation>Halmerend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGH">
        <xs:annotation>
          <xs:documentation>Holditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGJ">
        <xs:annotation>
          <xs:documentation>Keele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGK">
        <xs:annotation>
          <xs:documentation>Kidsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGL">
        <xs:annotation>
          <xs:documentation>Knutton and Silverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGM">
        <xs:annotation>
          <xs:documentation>Loggerheads and Whitmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGN">
        <xs:annotation>
          <xs:documentation>Madeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGP">
        <xs:annotation>
          <xs:documentation>May Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGQ">
        <xs:annotation>
          <xs:documentation>Newchapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGR">
        <xs:annotation>
          <xs:documentation>Porthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGS">
        <xs:annotation>
          <xs:documentation>Ravenscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGT">
        <xs:annotation>
          <xs:documentation>Seabridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGU">
        <xs:annotation>
          <xs:documentation>Silverdale and Parksite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGW">
        <xs:annotation>
          <xs:documentation>Talke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGX">
        <xs:annotation>
          <xs:documentation>Thistleberry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGY">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEGZ">
        <xs:annotation>
          <xs:documentation>Westlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UEHA">
        <xs:annotation>
          <xs:documentation>Wolstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHM">
        <xs:annotation>
          <xs:documentation>Bilbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHN">
        <xs:annotation>
          <xs:documentation>Brewood and Coven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHP">
        <xs:annotation>
          <xs:documentation>Cheslyn Hay North and Saredon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHQ">
        <xs:annotation>
          <xs:documentation>Cheslyn Hay South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHR">
        <xs:annotation>
          <xs:documentation>Codsall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHS">
        <xs:annotation>
          <xs:documentation>Codsall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHT">
        <xs:annotation>
          <xs:documentation>Essington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHU">
        <xs:annotation>
          <xs:documentation>Featherstone and Shareshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHW">
        <xs:annotation>
          <xs:documentation>Great Wyrley Landywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHX">
        <xs:annotation>
          <xs:documentation>Great Wyrley Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHY">
        <xs:annotation>
          <xs:documentation>Himley and Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFHZ">
        <xs:annotation>
          <xs:documentation>Huntington and Hatherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJA">
        <xs:annotation>
          <xs:documentation>Kinver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJB">
        <xs:annotation>
          <xs:documentation>Pattingham and Patshull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJC">
        <xs:annotation>
          <xs:documentation>Penkridge North East and Acton Trussell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJD">
        <xs:annotation>
          <xs:documentation>Penkridge South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJE">
        <xs:annotation>
          <xs:documentation>Penkridge West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJF">
        <xs:annotation>
          <xs:documentation>Perton Dippons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJG">
        <xs:annotation>
          <xs:documentation>Perton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJH">
        <xs:annotation>
          <xs:documentation>Perton Lakeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJJ">
        <xs:annotation>
          <xs:documentation>Trysull and Seisdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJK">
        <xs:annotation>
          <xs:documentation>Wheaton Aston, Bishopswood and Lapley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJL">
        <xs:annotation>
          <xs:documentation>Wombourne North and Lower Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJM">
        <xs:annotation>
          <xs:documentation>Wombourne South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UFJN">
        <xs:annotation>
          <xs:documentation>Wombourne South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGH">
        <xs:annotation>
          <xs:documentation>Barlaston and Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGJ">
        <xs:annotation>
          <xs:documentation>Baswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGK">
        <xs:annotation>
          <xs:documentation>Chartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGL">
        <xs:annotation>
          <xs:documentation>Church Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGM">
        <xs:annotation>
          <xs:documentation>Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGN">
        <xs:annotation>
          <xs:documentation>Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGP">
        <xs:annotation>
          <xs:documentation>Eccleshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGQ">
        <xs:annotation>
          <xs:documentation>Forebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGR">
        <xs:annotation>
          <xs:documentation>Fulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGS">
        <xs:annotation>
          <xs:documentation>Gnosall and Woodseaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGT">
        <xs:annotation>
          <xs:documentation>Haywood and Hixon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGU">
        <xs:annotation>
          <xs:documentation>Highfields and Western Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGW">
        <xs:annotation>
          <xs:documentation>Holmcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGX">
        <xs:annotation>
          <xs:documentation>Littleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGY">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGGZ">
        <xs:annotation>
          <xs:documentation>Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHA">
        <xs:annotation>
          <xs:documentation>Milwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHB">
        <xs:annotation>
          <xs:documentation>Penkside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHC">
        <xs:annotation>
          <xs:documentation>Rowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHD">
        <xs:annotation>
          <xs:documentation>St. Michael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHE">
        <xs:annotation>
          <xs:documentation>Seighford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHF">
        <xs:annotation>
          <xs:documentation>Stonefield and Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHG">
        <xs:annotation>
          <xs:documentation>Swynnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHH">
        <xs:annotation>
          <xs:documentation>Tillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHJ">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UGHK">
        <xs:annotation>
          <xs:documentation>Weeping Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGF">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGG">
        <xs:annotation>
          <xs:documentation>Bagnall and Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGH">
        <xs:annotation>
          <xs:documentation>Biddulph East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGJ">
        <xs:annotation>
          <xs:documentation>Biddulph Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGK">
        <xs:annotation>
          <xs:documentation>Biddulph North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGL">
        <xs:annotation>
          <xs:documentation>Biddulph South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGM">
        <xs:annotation>
          <xs:documentation>Biddulph West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGN">
        <xs:annotation>
          <xs:documentation>Brown Edge and Endon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGP">
        <xs:annotation>
          <xs:documentation>Caverswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGQ">
        <xs:annotation>
          <xs:documentation>Cellarhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGR">
        <xs:annotation>
          <xs:documentation>Cheadle North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGS">
        <xs:annotation>
          <xs:documentation>Cheadle South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGT">
        <xs:annotation>
          <xs:documentation>Cheadle West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGU">
        <xs:annotation>
          <xs:documentation>Checkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGW">
        <xs:annotation>
          <xs:documentation>Cheddleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGX">
        <xs:annotation>
          <xs:documentation>Churnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGY">
        <xs:annotation>
          <xs:documentation>Dane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHGZ">
        <xs:annotation>
          <xs:documentation>Forsbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHA">
        <xs:annotation>
          <xs:documentation>Hamps Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHB">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHC">
        <xs:annotation>
          <xs:documentation>Ipstones</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHD">
        <xs:annotation>
          <xs:documentation>Leek East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHE">
        <xs:annotation>
          <xs:documentation>Leek North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHF">
        <xs:annotation>
          <xs:documentation>Leek South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHG">
        <xs:annotation>
          <xs:documentation>Leek West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHH">
        <xs:annotation>
          <xs:documentation>Manifold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UHHJ">
        <xs:annotation>
          <xs:documentation>Werrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFL">
        <xs:annotation>
          <xs:documentation>Amington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFM">
        <xs:annotation>
          <xs:documentation>Belgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFN">
        <xs:annotation>
          <xs:documentation>Bolehall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFP">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFQ">
        <xs:annotation>
          <xs:documentation>Glascote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFR">
        <xs:annotation>
          <xs:documentation>Mercian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFS">
        <xs:annotation>
          <xs:documentation>Spital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFT">
        <xs:annotation>
          <xs:documentation>Stonydelph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFU">
        <xs:annotation>
          <xs:documentation>Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41UKFW">
        <xs:annotation>
          <xs:documentation>Wilnecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGH">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGJ">
        <xs:annotation>
          <xs:documentation>Berners</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGK">
        <xs:annotation>
          <xs:documentation>Boxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGL">
        <xs:annotation>
          <xs:documentation>Brett Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGM">
        <xs:annotation>
          <xs:documentation>Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGN">
        <xs:annotation>
          <xs:documentation>Bures St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGP">
        <xs:annotation>
          <xs:documentation>Chadacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGQ">
        <xs:annotation>
          <xs:documentation>Dodnash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGR">
        <xs:annotation>
          <xs:documentation>Glemsford and Stanstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGS">
        <xs:annotation>
          <xs:documentation>Great Cornard North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGT">
        <xs:annotation>
          <xs:documentation>Great Cornard South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGU">
        <xs:annotation>
          <xs:documentation>Hadleigh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGW">
        <xs:annotation>
          <xs:documentation>Hadleigh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGX">
        <xs:annotation>
          <xs:documentation>Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGY">
        <xs:annotation>
          <xs:documentation>Lavenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBGZ">
        <xs:annotation>
          <xs:documentation>Leavenheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHA">
        <xs:annotation>
          <xs:documentation>Long Melford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHB">
        <xs:annotation>
          <xs:documentation>Lower Brett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHC">
        <xs:annotation>
          <xs:documentation>Mid Samford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHD">
        <xs:annotation>
          <xs:documentation>Nayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHE">
        <xs:annotation>
          <xs:documentation>North Cosford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHF">
        <xs:annotation>
          <xs:documentation>Pinewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHG">
        <xs:annotation>
          <xs:documentation>South Cosford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHH">
        <xs:annotation>
          <xs:documentation>Sudbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHJ">
        <xs:annotation>
          <xs:documentation>Sudbury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHK">
        <xs:annotation>
          <xs:documentation>Sudbury South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UBHL">
        <xs:annotation>
          <xs:documentation>Waldingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFR">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFS">
        <xs:annotation>
          <xs:documentation>Brandon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFT">
        <xs:annotation>
          <xs:documentation>Brandon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFU">
        <xs:annotation>
          <xs:documentation>Eriswell and The Rows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFW">
        <xs:annotation>
          <xs:documentation>Exning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFX">
        <xs:annotation>
          <xs:documentation>Great Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFY">
        <xs:annotation>
          <xs:documentation>Iceni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCFZ">
        <xs:annotation>
          <xs:documentation>Lakenheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGA">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGB">
        <xs:annotation>
          <xs:documentation>Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGC">
        <xs:annotation>
          <xs:documentation>Red Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGD">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGE">
        <xs:annotation>
          <xs:documentation>Severals</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UCGF">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFS">
        <xs:annotation>
          <xs:documentation>Alexandra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFT">
        <xs:annotation>
          <xs:documentation>Bixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFU">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFW">
        <xs:annotation>
          <xs:documentation>Castle Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFX">
        <xs:annotation>
          <xs:documentation>Gainsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFY">
        <xs:annotation>
          <xs:documentation>Gipping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDFZ">
        <xs:annotation>
          <xs:documentation>Holywells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGA">
        <xs:annotation>
          <xs:documentation>Priory Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGB">
        <xs:annotation>
          <xs:documentation>Rushmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGC">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGD">
        <xs:annotation>
          <xs:documentation>St Margaret's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGE">
        <xs:annotation>
          <xs:documentation>Sprites</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGF">
        <xs:annotation>
          <xs:documentation>Stoke Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGG">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGH">
        <xs:annotation>
          <xs:documentation>Whitehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UDGJ">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGM">
        <xs:annotation>
          <xs:documentation>Bacton and Old Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGN">
        <xs:annotation>
          <xs:documentation>Badwell Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGP">
        <xs:annotation>
          <xs:documentation>Barking and Somersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGQ">
        <xs:annotation>
          <xs:documentation>Bramford and Blakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGR">
        <xs:annotation>
          <xs:documentation>Claydon and Barham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGS">
        <xs:annotation>
          <xs:documentation>Debenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGT">
        <xs:annotation>
          <xs:documentation>Elmswell and Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGU">
        <xs:annotation>
          <xs:documentation>Eye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGW">
        <xs:annotation>
          <xs:documentation>Fressingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGX">
        <xs:annotation>
          <xs:documentation>Gislingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGY">
        <xs:annotation>
          <xs:documentation>Haughley and Wetherden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEGZ">
        <xs:annotation>
          <xs:documentation>Helmingham and Coddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHA">
        <xs:annotation>
          <xs:documentation>Hoxne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHB">
        <xs:annotation>
          <xs:documentation>Mendlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHC">
        <xs:annotation>
          <xs:documentation>Needham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHD">
        <xs:annotation>
          <xs:documentation>Onehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHE">
        <xs:annotation>
          <xs:documentation>Palgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHF">
        <xs:annotation>
          <xs:documentation>Rattlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHG">
        <xs:annotation>
          <xs:documentation>Rickinghall and Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHH">
        <xs:annotation>
          <xs:documentation>Ringshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHJ">
        <xs:annotation>
          <xs:documentation>Stowmarket Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHK">
        <xs:annotation>
          <xs:documentation>Stowmarket North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHL">
        <xs:annotation>
          <xs:documentation>Stowmarket South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHM">
        <xs:annotation>
          <xs:documentation>Stowupland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHN">
        <xs:annotation>
          <xs:documentation>Stradbroke and Laxfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHP">
        <xs:annotation>
          <xs:documentation>The Stonhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHQ">
        <xs:annotation>
          <xs:documentation>Thurston and Hessett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHR">
        <xs:annotation>
          <xs:documentation>Wetheringsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHS">
        <xs:annotation>
          <xs:documentation>Woolpit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UEHT">
        <xs:annotation>
          <xs:documentation>Worlingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGL">
        <xs:annotation>
          <xs:documentation>Abbeygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGM">
        <xs:annotation>
          <xs:documentation>Bardwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGN">
        <xs:annotation>
          <xs:documentation>Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGP">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGQ">
        <xs:annotation>
          <xs:documentation>Cavendish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGR">
        <xs:annotation>
          <xs:documentation>Chedburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGS">
        <xs:annotation>
          <xs:documentation>Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGT">
        <xs:annotation>
          <xs:documentation>Eastgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGU">
        <xs:annotation>
          <xs:documentation>Fornham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGW">
        <xs:annotation>
          <xs:documentation>Great Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGX">
        <xs:annotation>
          <xs:documentation>Haverhill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGY">
        <xs:annotation>
          <xs:documentation>Haverhill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFGZ">
        <xs:annotation>
          <xs:documentation>Haverhill South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHA">
        <xs:annotation>
          <xs:documentation>Haverhill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHB">
        <xs:annotation>
          <xs:documentation>Horringer and Whelnetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHC">
        <xs:annotation>
          <xs:documentation>Hundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHD">
        <xs:annotation>
          <xs:documentation>Ixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHE">
        <xs:annotation>
          <xs:documentation>Kedington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHF">
        <xs:annotation>
          <xs:documentation>Minden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHG">
        <xs:annotation>
          <xs:documentation>Moreton Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHH">
        <xs:annotation>
          <xs:documentation>Northgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHJ">
        <xs:annotation>
          <xs:documentation>Pakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHK">
        <xs:annotation>
          <xs:documentation>Risby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHL">
        <xs:annotation>
          <xs:documentation>Risbygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHM">
        <xs:annotation>
          <xs:documentation>Rougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHN">
        <xs:annotation>
          <xs:documentation>St Olaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHP">
        <xs:annotation>
          <xs:documentation>Southgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHQ">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHR">
        <xs:annotation>
          <xs:documentation>Westgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHS">
        <xs:annotation>
          <xs:documentation>Wickhambrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UFHT">
        <xs:annotation>
          <xs:documentation>Withersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGGW">
        <xs:annotation>
          <xs:documentation>Aldeburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGGX">
        <xs:annotation>
          <xs:documentation>Earl Soham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGGY">
        <xs:annotation>
          <xs:documentation>Farlingaye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGGZ">
        <xs:annotation>
          <xs:documentation>Felixstowe East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHA">
        <xs:annotation>
          <xs:documentation>Felixstowe North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHB">
        <xs:annotation>
          <xs:documentation>Felixstowe South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHC">
        <xs:annotation>
          <xs:documentation>Felixstowe South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHD">
        <xs:annotation>
          <xs:documentation>Felixstowe West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHE">
        <xs:annotation>
          <xs:documentation>Framlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHF">
        <xs:annotation>
          <xs:documentation>Grundisburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHG">
        <xs:annotation>
          <xs:documentation>Hacheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHH">
        <xs:annotation>
          <xs:documentation>Hollesley with Eyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHJ">
        <xs:annotation>
          <xs:documentation>Kesgrave East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHK">
        <xs:annotation>
          <xs:documentation>Kesgrave West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHL">
        <xs:annotation>
          <xs:documentation>Kyson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHM">
        <xs:annotation>
          <xs:documentation>Leiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHN">
        <xs:annotation>
          <xs:documentation>Martlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHP">
        <xs:annotation>
          <xs:documentation>Melton and Ufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHQ">
        <xs:annotation>
          <xs:documentation>Nacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHR">
        <xs:annotation>
          <xs:documentation>Orford and Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHS">
        <xs:annotation>
          <xs:documentation>Otley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHT">
        <xs:annotation>
          <xs:documentation>Peasenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHU">
        <xs:annotation>
          <xs:documentation>Rendlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHW">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHX">
        <xs:annotation>
          <xs:documentation>Rushmere St Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHY">
        <xs:annotation>
          <xs:documentation>Saxmundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGHZ">
        <xs:annotation>
          <xs:documentation>Seckford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJA">
        <xs:annotation>
          <xs:documentation>Snape</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJB">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJC">
        <xs:annotation>
          <xs:documentation>Trimleys with Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJD">
        <xs:annotation>
          <xs:documentation>Walberswick and Wenhaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJE">
        <xs:annotation>
          <xs:documentation>Wickham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJF">
        <xs:annotation>
          <xs:documentation>Witnesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UGJG">
        <xs:annotation>
          <xs:documentation>Yoxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHFY">
        <xs:annotation>
          <xs:documentation>Beccles North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHFZ">
        <xs:annotation>
          <xs:documentation>Beccles South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGA">
        <xs:annotation>
          <xs:documentation>Blything</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGB">
        <xs:annotation>
          <xs:documentation>Bungay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGC">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGD">
        <xs:annotation>
          <xs:documentation>Carlton Colville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGE">
        <xs:annotation>
          <xs:documentation>Gunton and Corton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGF">
        <xs:annotation>
          <xs:documentation>Halesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGG">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGH">
        <xs:annotation>
          <xs:documentation>Kessingland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGJ">
        <xs:annotation>
          <xs:documentation>Kirkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGK">
        <xs:annotation>
          <xs:documentation>Lothingland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGL">
        <xs:annotation>
          <xs:documentation>Normanston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGM">
        <xs:annotation>
          <xs:documentation>Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGN">
        <xs:annotation>
          <xs:documentation>Oulton Broad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGP">
        <xs:annotation>
          <xs:documentation>Pakefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGQ">
        <xs:annotation>
          <xs:documentation>St Margaret's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGR">
        <xs:annotation>
          <xs:documentation>Southwold and Reydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGS">
        <xs:annotation>
          <xs:documentation>The Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGT">
        <xs:annotation>
          <xs:documentation>Wainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGU">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGW">
        <xs:annotation>
          <xs:documentation>Worlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42UHGX">
        <xs:annotation>
          <xs:documentation>Wrentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBFZ">
        <xs:annotation>
          <xs:documentation>Claygate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGA">
        <xs:annotation>
          <xs:documentation>Cobham and Downside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGB">
        <xs:annotation>
          <xs:documentation>Cobham Fairmile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGC">
        <xs:annotation>
          <xs:documentation>Esher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGD">
        <xs:annotation>
          <xs:documentation>Hersham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGE">
        <xs:annotation>
          <xs:documentation>Hersham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGF">
        <xs:annotation>
          <xs:documentation>Hinchley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGG">
        <xs:annotation>
          <xs:documentation>Long Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGH">
        <xs:annotation>
          <xs:documentation>Molesey East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGJ">
        <xs:annotation>
          <xs:documentation>Molesey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGK">
        <xs:annotation>
          <xs:documentation>Molesey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGL">
        <xs:annotation>
          <xs:documentation>Oatlands Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGM">
        <xs:annotation>
          <xs:documentation>Oxshott and Stoke D'Abernon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGN">
        <xs:annotation>
          <xs:documentation>St George's Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGP">
        <xs:annotation>
          <xs:documentation>Thames Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGQ">
        <xs:annotation>
          <xs:documentation>Walton Ambleside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGR">
        <xs:annotation>
          <xs:documentation>Walton Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGS">
        <xs:annotation>
          <xs:documentation>Walton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGT">
        <xs:annotation>
          <xs:documentation>Walton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGU">
        <xs:annotation>
          <xs:documentation>Weston Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGW">
        <xs:annotation>
          <xs:documentation>Weybridge North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UBGX">
        <xs:annotation>
          <xs:documentation>Weybridge South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFP">
        <xs:annotation>
          <xs:documentation>Auriol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFQ">
        <xs:annotation>
          <xs:documentation>College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFR">
        <xs:annotation>
          <xs:documentation>Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFS">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFT">
        <xs:annotation>
          <xs:documentation>Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFU">
        <xs:annotation>
          <xs:documentation>Ewell Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFW">
        <xs:annotation>
          <xs:documentation>Nonsuch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFX">
        <xs:annotation>
          <xs:documentation>Ruxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFY">
        <xs:annotation>
          <xs:documentation>Stamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCFZ">
        <xs:annotation>
          <xs:documentation>Stoneleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCGA">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCGB">
        <xs:annotation>
          <xs:documentation>West Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UCGC">
        <xs:annotation>
          <xs:documentation>Woodcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDFY">
        <xs:annotation>
          <xs:documentation>Ash South and Tongham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDFZ">
        <xs:annotation>
          <xs:documentation>Ash Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGA">
        <xs:annotation>
          <xs:documentation>Ash Wharf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGB">
        <xs:annotation>
          <xs:documentation>Burpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGC">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGD">
        <xs:annotation>
          <xs:documentation>Clandon and Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGE">
        <xs:annotation>
          <xs:documentation>Effingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGF">
        <xs:annotation>
          <xs:documentation>Friary and St Nicolas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGG">
        <xs:annotation>
          <xs:documentation>Holy Trinity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGH">
        <xs:annotation>
          <xs:documentation>Lovelace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGJ">
        <xs:annotation>
          <xs:documentation>Merrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGK">
        <xs:annotation>
          <xs:documentation>Normandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGL">
        <xs:annotation>
          <xs:documentation>Onslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGM">
        <xs:annotation>
          <xs:documentation>Pilgrims</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGN">
        <xs:annotation>
          <xs:documentation>Pirbright</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGP">
        <xs:annotation>
          <xs:documentation>Send</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGQ">
        <xs:annotation>
          <xs:documentation>Shalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGR">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGS">
        <xs:annotation>
          <xs:documentation>Stoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGT">
        <xs:annotation>
          <xs:documentation>Tillingbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGU">
        <xs:annotation>
          <xs:documentation>Westborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UDGW">
        <xs:annotation>
          <xs:documentation>Worplesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGA">
        <xs:annotation>
          <xs:documentation>Ashtead Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGB">
        <xs:annotation>
          <xs:documentation>Ashtead Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGC">
        <xs:annotation>
          <xs:documentation>Ashtead Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGD">
        <xs:annotation>
          <xs:documentation>Beare Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGE">
        <xs:annotation>
          <xs:documentation>Bookham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGF">
        <xs:annotation>
          <xs:documentation>Bookham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGG">
        <xs:annotation>
          <xs:documentation>Box Hill and Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGH">
        <xs:annotation>
          <xs:documentation>Brockham, Betchworth and Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGJ">
        <xs:annotation>
          <xs:documentation>Capel, Leigh and Newdigate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGK">
        <xs:annotation>
          <xs:documentation>Charlwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGL">
        <xs:annotation>
          <xs:documentation>Dorking North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGM">
        <xs:annotation>
          <xs:documentation>Dorking South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGN">
        <xs:annotation>
          <xs:documentation>Fetcham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGP">
        <xs:annotation>
          <xs:documentation>Fetcham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGQ">
        <xs:annotation>
          <xs:documentation>Holmwoods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGR">
        <xs:annotation>
          <xs:documentation>Leatherhead North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGS">
        <xs:annotation>
          <xs:documentation>Leatherhead South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGT">
        <xs:annotation>
          <xs:documentation>Leith Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGU">
        <xs:annotation>
          <xs:documentation>Mickleham, Westhumble and Pixham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGW">
        <xs:annotation>
          <xs:documentation>Okewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UEGX">
        <xs:annotation>
          <xs:documentation>Westcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFFU">
        <xs:annotation>
          <xs:documentation>Banstead Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFFW">
        <xs:annotation>
          <xs:documentation>Chipstead, Hooley and Woodmansterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFFX">
        <xs:annotation>
          <xs:documentation>Earlswood and Whitebushes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFFY">
        <xs:annotation>
          <xs:documentation>Horley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFFZ">
        <xs:annotation>
          <xs:documentation>Horley East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGA">
        <xs:annotation>
          <xs:documentation>Horley West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGB">
        <xs:annotation>
          <xs:documentation>Kingswood with Burgh Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGC">
        <xs:annotation>
          <xs:documentation>Meadvale and St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGD">
        <xs:annotation>
          <xs:documentation>Merstham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGE">
        <xs:annotation>
          <xs:documentation>Nork</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGF">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGG">
        <xs:annotation>
          <xs:documentation>Redhill East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGH">
        <xs:annotation>
          <xs:documentation>Redhill West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGJ">
        <xs:annotation>
          <xs:documentation>Reigate Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGK">
        <xs:annotation>
          <xs:documentation>Reigate Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGL">
        <xs:annotation>
          <xs:documentation>Salfords and Sidlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGM">
        <xs:annotation>
          <xs:documentation>South Park and Woodhatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGN">
        <xs:annotation>
          <xs:documentation>Tadworth and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UFGP">
        <xs:annotation>
          <xs:documentation>Tattenhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFQ">
        <xs:annotation>
          <xs:documentation>Addlestone Bourneside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFR">
        <xs:annotation>
          <xs:documentation>Addlestone North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFS">
        <xs:annotation>
          <xs:documentation>Chertsey Meads</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFT">
        <xs:annotation>
          <xs:documentation>Chertsey St Ann's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFU">
        <xs:annotation>
          <xs:documentation>Chertsey South and Row Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFW">
        <xs:annotation>
          <xs:documentation>Egham Hythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFX">
        <xs:annotation>
          <xs:documentation>Egham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFY">
        <xs:annotation>
          <xs:documentation>Englefield Green East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGFZ">
        <xs:annotation>
          <xs:documentation>Englefield Green West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGGA">
        <xs:annotation>
          <xs:documentation>Foxhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGGB">
        <xs:annotation>
          <xs:documentation>New Haw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGGC">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGGD">
        <xs:annotation>
          <xs:documentation>Virginia Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UGGE">
        <xs:annotation>
          <xs:documentation>Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFS">
        <xs:annotation>
          <xs:documentation>Ashford Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFT">
        <xs:annotation>
          <xs:documentation>Ashford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFU">
        <xs:annotation>
          <xs:documentation>Ashford North and Stanwell South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFW">
        <xs:annotation>
          <xs:documentation>Ashford Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFX">
        <xs:annotation>
          <xs:documentation>Halliford and Sunbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFY">
        <xs:annotation>
          <xs:documentation>Laleham and Shepperton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHFZ">
        <xs:annotation>
          <xs:documentation>Riverside and Laleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGA">
        <xs:annotation>
          <xs:documentation>Shepperton Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGB">
        <xs:annotation>
          <xs:documentation>Staines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGC">
        <xs:annotation>
          <xs:documentation>Staines South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGD">
        <xs:annotation>
          <xs:documentation>Stanwell North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGE">
        <xs:annotation>
          <xs:documentation>Sunbury Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UHGF">
        <xs:annotation>
          <xs:documentation>Sunbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFS">
        <xs:annotation>
          <xs:documentation>Bagshot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFT">
        <xs:annotation>
          <xs:documentation>Bisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFU">
        <xs:annotation>
          <xs:documentation>Chobham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFW">
        <xs:annotation>
          <xs:documentation>Frimley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFX">
        <xs:annotation>
          <xs:documentation>Frimley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFY">
        <xs:annotation>
          <xs:documentation>Heatherside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJFZ">
        <xs:annotation>
          <xs:documentation>Lightwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGA">
        <xs:annotation>
          <xs:documentation>Mytchett and Deepcut</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGB">
        <xs:annotation>
          <xs:documentation>Old Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGC">
        <xs:annotation>
          <xs:documentation>Parkside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGD">
        <xs:annotation>
          <xs:documentation>St Michaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGE">
        <xs:annotation>
          <xs:documentation>St Pauls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGF">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGG">
        <xs:annotation>
          <xs:documentation>Watchetts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGH">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UJGJ">
        <xs:annotation>
          <xs:documentation>Windlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKFY">
        <xs:annotation>
          <xs:documentation>Bletchingley and Nutfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKFZ">
        <xs:annotation>
          <xs:documentation>Burstow, Horne and Outwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGA">
        <xs:annotation>
          <xs:documentation>Chaldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGB">
        <xs:annotation>
          <xs:documentation>Dormansland and Felcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGC">
        <xs:annotation>
          <xs:documentation>Felbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGD">
        <xs:annotation>
          <xs:documentation>Godstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGE">
        <xs:annotation>
          <xs:documentation>Harestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGF">
        <xs:annotation>
          <xs:documentation>Limpsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGG">
        <xs:annotation>
          <xs:documentation>Lingfield and Crowhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGH">
        <xs:annotation>
          <xs:documentation>Oxted North and Tandridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGJ">
        <xs:annotation>
          <xs:documentation>Oxted South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGK">
        <xs:annotation>
          <xs:documentation>Portley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGL">
        <xs:annotation>
          <xs:documentation>Queens Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGM">
        <xs:annotation>
          <xs:documentation>Tatsfield and Titsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGN">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGP">
        <xs:annotation>
          <xs:documentation>Warlingham East and Chelsham and Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGQ">
        <xs:annotation>
          <xs:documentation>Warlingham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGR">
        <xs:annotation>
          <xs:documentation>Westway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGS">
        <xs:annotation>
          <xs:documentation>Whyteleafe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UKGT">
        <xs:annotation>
          <xs:documentation>Woldingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGF">
        <xs:annotation>
          <xs:documentation>Alfold, Cranleigh Rural and Ellens Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGG">
        <xs:annotation>
          <xs:documentation>Blackheath and Wonersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGH">
        <xs:annotation>
          <xs:documentation>Bramley, Busbridge and Hascombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGJ">
        <xs:annotation>
          <xs:documentation>Chiddingfold and Dunsfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGK">
        <xs:annotation>
          <xs:documentation>Cranleigh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGL">
        <xs:annotation>
          <xs:documentation>Cranleigh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGM">
        <xs:annotation>
          <xs:documentation>Elstead and Thursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGN">
        <xs:annotation>
          <xs:documentation>Ewhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGP">
        <xs:annotation>
          <xs:documentation>Farnham Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGQ">
        <xs:annotation>
          <xs:documentation>Farnham Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGR">
        <xs:annotation>
          <xs:documentation>Farnham Firgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGS">
        <xs:annotation>
          <xs:documentation>Farnham Hale and Heath End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGT">
        <xs:annotation>
          <xs:documentation>Farnham Moor Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGU">
        <xs:annotation>
          <xs:documentation>Farnham Shortheath and Boundstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGW">
        <xs:annotation>
          <xs:documentation>Farnham Upper Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGX">
        <xs:annotation>
          <xs:documentation>Farnham Weybourne and Badshot Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGY">
        <xs:annotation>
          <xs:documentation>Farnham Wrecclesham and Rowledge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULGZ">
        <xs:annotation>
          <xs:documentation>Frensham, Dockenfield and Tilford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHA">
        <xs:annotation>
          <xs:documentation>Godalming Binscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHB">
        <xs:annotation>
          <xs:documentation>Godalming Central and Ockford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHC">
        <xs:annotation>
          <xs:documentation>Godalming Charterhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHD">
        <xs:annotation>
          <xs:documentation>Godalming Farncombe and Catteshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHE">
        <xs:annotation>
          <xs:documentation>Godalming Holloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHF">
        <xs:annotation>
          <xs:documentation>Haslemere Critchmere and Shottermill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHG">
        <xs:annotation>
          <xs:documentation>Haslemere East and Grayswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHH">
        <xs:annotation>
          <xs:documentation>Hindhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHJ">
        <xs:annotation>
          <xs:documentation>Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHK">
        <xs:annotation>
          <xs:documentation>Shamley Green and Cranleigh North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43ULHL">
        <xs:annotation>
          <xs:documentation>Witley and Hambledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFS">
        <xs:annotation>
          <xs:documentation>Brookwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFT">
        <xs:annotation>
          <xs:documentation>Byfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFU">
        <xs:annotation>
          <xs:documentation>Goldsworth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFW">
        <xs:annotation>
          <xs:documentation>Goldsworth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFX">
        <xs:annotation>
          <xs:documentation>Hermitage and Knaphill South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFY">
        <xs:annotation>
          <xs:documentation>Horsell East and Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMFZ">
        <xs:annotation>
          <xs:documentation>Horsell West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGA">
        <xs:annotation>
          <xs:documentation>Kingfield and Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGB">
        <xs:annotation>
          <xs:documentation>Knaphill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGC">
        <xs:annotation>
          <xs:documentation>Maybury and Sheerwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGD">
        <xs:annotation>
          <xs:documentation>Mayford and Sutton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGE">
        <xs:annotation>
          <xs:documentation>Mount Hermon East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGF">
        <xs:annotation>
          <xs:documentation>Mount Hermon West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGG">
        <xs:annotation>
          <xs:documentation>Old Woking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGH">
        <xs:annotation>
          <xs:documentation>Pyrford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGJ">
        <xs:annotation>
          <xs:documentation>St John's and Hook Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43UMGK">
        <xs:annotation>
          <xs:documentation>West Byfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBFW">
        <xs:annotation>
          <xs:documentation>Arley and Whitacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBFX">
        <xs:annotation>
          <xs:documentation>Atherstone Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBFY">
        <xs:annotation>
          <xs:documentation>Atherstone North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBFZ">
        <xs:annotation>
          <xs:documentation>Atherstone South and Mancetter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGA">
        <xs:annotation>
          <xs:documentation>Baddesley and Grendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGB">
        <xs:annotation>
          <xs:documentation>Coleshill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGC">
        <xs:annotation>
          <xs:documentation>Coleshill South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGD">
        <xs:annotation>
          <xs:documentation>Curdworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGE">
        <xs:annotation>
          <xs:documentation>Dordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGF">
        <xs:annotation>
          <xs:documentation>Fillongley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGG">
        <xs:annotation>
          <xs:documentation>Hartshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGH">
        <xs:annotation>
          <xs:documentation>Hurley and Wood End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGJ">
        <xs:annotation>
          <xs:documentation>Kingsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGK">
        <xs:annotation>
          <xs:documentation>Newton Regis and Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGL">
        <xs:annotation>
          <xs:documentation>Polesworth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGM">
        <xs:annotation>
          <xs:documentation>Polesworth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UBGN">
        <xs:annotation>
          <xs:documentation>Water Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFR">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFS">
        <xs:annotation>
          <xs:documentation>Arbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFT">
        <xs:annotation>
          <xs:documentation>Attleborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFU">
        <xs:annotation>
          <xs:documentation>Bar Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFW">
        <xs:annotation>
          <xs:documentation>Bede</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFX">
        <xs:annotation>
          <xs:documentation>Bulkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFY">
        <xs:annotation>
          <xs:documentation>Camp Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCFZ">
        <xs:annotation>
          <xs:documentation>Exhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGA">
        <xs:annotation>
          <xs:documentation>Galley Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGB">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGC">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGD">
        <xs:annotation>
          <xs:documentation>Poplar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGE">
        <xs:annotation>
          <xs:documentation>St Nicolas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGF">
        <xs:annotation>
          <xs:documentation>Slough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGG">
        <xs:annotation>
          <xs:documentation>Weddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGH">
        <xs:annotation>
          <xs:documentation>Wem Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UCGJ">
        <xs:annotation>
          <xs:documentation>Whitestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDFZ">
        <xs:annotation>
          <xs:documentation>Admirals</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGA">
        <xs:annotation>
          <xs:documentation>Avon and Swift</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGB">
        <xs:annotation>
          <xs:documentation>Benn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGC">
        <xs:annotation>
          <xs:documentation>Bilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGD">
        <xs:annotation>
          <xs:documentation>Brownsover North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGE">
        <xs:annotation>
          <xs:documentation>Brownsover South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGF">
        <xs:annotation>
          <xs:documentation>Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGG">
        <xs:annotation>
          <xs:documentation>Dunchurch and Knightlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGH">
        <xs:annotation>
          <xs:documentation>Earl Craven and Wolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGJ">
        <xs:annotation>
          <xs:documentation>Eastlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGK">
        <xs:annotation>
          <xs:documentation>Fosse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGL">
        <xs:annotation>
          <xs:documentation>Hillmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGM">
        <xs:annotation>
          <xs:documentation>Lawford and King's Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGN">
        <xs:annotation>
          <xs:documentation>Leam Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGP">
        <xs:annotation>
          <xs:documentation>New Bilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGQ">
        <xs:annotation>
          <xs:documentation>Newbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGR">
        <xs:annotation>
          <xs:documentation>Overslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGS">
        <xs:annotation>
          <xs:documentation>Paddox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGT">
        <xs:annotation>
          <xs:documentation>Ryton-on-Dunsmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UDGU">
        <xs:annotation>
          <xs:documentation>Wolvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGN">
        <xs:annotation>
          <xs:documentation>Alcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGP">
        <xs:annotation>
          <xs:documentation>Aston Cantlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGQ">
        <xs:annotation>
          <xs:documentation>Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGR">
        <xs:annotation>
          <xs:documentation>Bidford and Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGS">
        <xs:annotation>
          <xs:documentation>Brailes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGT">
        <xs:annotation>
          <xs:documentation>Burton Dassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGU">
        <xs:annotation>
          <xs:documentation>Claverdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGW">
        <xs:annotation>
          <xs:documentation>Ettington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGX">
        <xs:annotation>
          <xs:documentation>Fenny Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGY">
        <xs:annotation>
          <xs:documentation>Harbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEGZ">
        <xs:annotation>
          <xs:documentation>Henley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHA">
        <xs:annotation>
          <xs:documentation>Kineton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHB">
        <xs:annotation>
          <xs:documentation>Kinwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHC">
        <xs:annotation>
          <xs:documentation>Long Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHD">
        <xs:annotation>
          <xs:documentation>Long Itchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHE">
        <xs:annotation>
          <xs:documentation>Quinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHF">
        <xs:annotation>
          <xs:documentation>Sambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHG">
        <xs:annotation>
          <xs:documentation>Shipston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHH">
        <xs:annotation>
          <xs:documentation>Snitterfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHJ">
        <xs:annotation>
          <xs:documentation>Southam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHK">
        <xs:annotation>
          <xs:documentation>Stockton and Napton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHL">
        <xs:annotation>
          <xs:documentation>Stratford Alveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHM">
        <xs:annotation>
          <xs:documentation>Stratford Avenue and New Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHN">
        <xs:annotation>
          <xs:documentation>Stratford Guild and Hathaway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHP">
        <xs:annotation>
          <xs:documentation>Stratford Mount Pleasant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHQ">
        <xs:annotation>
          <xs:documentation>Studley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHR">
        <xs:annotation>
          <xs:documentation>Tanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHS">
        <xs:annotation>
          <xs:documentation>Tredington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHT">
        <xs:annotation>
          <xs:documentation>Vale of the Red Horse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHU">
        <xs:annotation>
          <xs:documentation>Welford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UEHW">
        <xs:annotation>
          <xs:documentation>Wellesbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFFX">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFFY">
        <xs:annotation>
          <xs:documentation>Bishop's Tachbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFFZ">
        <xs:annotation>
          <xs:documentation>Brunswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGA">
        <xs:annotation>
          <xs:documentation>Budbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGB">
        <xs:annotation>
          <xs:documentation>Clarendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGC">
        <xs:annotation>
          <xs:documentation>Crown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGD">
        <xs:annotation>
          <xs:documentation>Cubbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGE">
        <xs:annotation>
          <xs:documentation>Lapworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGF">
        <xs:annotation>
          <xs:documentation>Leek Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGG">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGH">
        <xs:annotation>
          <xs:documentation>Milverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGJ">
        <xs:annotation>
          <xs:documentation>Park Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGK">
        <xs:annotation>
          <xs:documentation>Radford Semele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGL">
        <xs:annotation>
          <xs:documentation>St John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGM">
        <xs:annotation>
          <xs:documentation>Stoneleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGN">
        <xs:annotation>
          <xs:documentation>Warwick North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGP">
        <xs:annotation>
          <xs:documentation>Warwick South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGQ">
        <xs:annotation>
          <xs:documentation>Warwick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGR">
        <xs:annotation>
          <xs:documentation>Whitnash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44UFGS">
        <xs:annotation>
          <xs:documentation>Willes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFQ">
        <xs:annotation>
          <xs:documentation>Buckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFR">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFS">
        <xs:annotation>
          <xs:documentation>Cokeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFT">
        <xs:annotation>
          <xs:documentation>Eastbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFU">
        <xs:annotation>
          <xs:documentation>Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFW">
        <xs:annotation>
          <xs:documentation>Manor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFX">
        <xs:annotation>
          <xs:documentation>Marine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFY">
        <xs:annotation>
          <xs:documentation>Mash Barn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBFZ">
        <xs:annotation>
          <xs:documentation>Peverel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBGA">
        <xs:annotation>
          <xs:documentation>St Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBGB">
        <xs:annotation>
          <xs:documentation>St Nicolas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBGC">
        <xs:annotation>
          <xs:documentation>Southlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBGD">
        <xs:annotation>
          <xs:documentation>Southwick Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UBGE">
        <xs:annotation>
          <xs:documentation>Widewater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGE">
        <xs:annotation>
          <xs:documentation>Aldwick East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGF">
        <xs:annotation>
          <xs:documentation>Aldwick West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGG">
        <xs:annotation>
          <xs:documentation>Angmering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGH">
        <xs:annotation>
          <xs:documentation>Arundel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGJ">
        <xs:annotation>
          <xs:documentation>Barnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGK">
        <xs:annotation>
          <xs:documentation>Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGL">
        <xs:annotation>
          <xs:documentation>Bersted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGM">
        <xs:annotation>
          <xs:documentation>Brookfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGN">
        <xs:annotation>
          <xs:documentation>East Preston with Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGP">
        <xs:annotation>
          <xs:documentation>Felpham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGQ">
        <xs:annotation>
          <xs:documentation>Felpham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGR">
        <xs:annotation>
          <xs:documentation>Ferring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGS">
        <xs:annotation>
          <xs:documentation>Findon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGT">
        <xs:annotation>
          <xs:documentation>Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGU">
        <xs:annotation>
          <xs:documentation>Hotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGW">
        <xs:annotation>
          <xs:documentation>Marine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGX">
        <xs:annotation>
          <xs:documentation>Middleton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGY">
        <xs:annotation>
          <xs:documentation>Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCGZ">
        <xs:annotation>
          <xs:documentation>Pagham and Rose Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHA">
        <xs:annotation>
          <xs:documentation>Pevensey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHB">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHC">
        <xs:annotation>
          <xs:documentation>Rustington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHD">
        <xs:annotation>
          <xs:documentation>Rustington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHE">
        <xs:annotation>
          <xs:documentation>Walberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHF">
        <xs:annotation>
          <xs:documentation>Wick with Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UCHG">
        <xs:annotation>
          <xs:documentation>Yapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGM">
        <xs:annotation>
          <xs:documentation>Bosham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGN">
        <xs:annotation>
          <xs:documentation>Boxgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGP">
        <xs:annotation>
          <xs:documentation>Bury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGQ">
        <xs:annotation>
          <xs:documentation>Chichester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGR">
        <xs:annotation>
          <xs:documentation>Chichester North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGS">
        <xs:annotation>
          <xs:documentation>Chichester South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGT">
        <xs:annotation>
          <xs:documentation>Chichester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGU">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGW">
        <xs:annotation>
          <xs:documentation>Easebourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGX">
        <xs:annotation>
          <xs:documentation>East Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGY">
        <xs:annotation>
          <xs:documentation>Fernhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDGZ">
        <xs:annotation>
          <xs:documentation>Fishbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHA">
        <xs:annotation>
          <xs:documentation>Funtington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHB">
        <xs:annotation>
          <xs:documentation>Harting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHC">
        <xs:annotation>
          <xs:documentation>Lavant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHD">
        <xs:annotation>
          <xs:documentation>Midhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHE">
        <xs:annotation>
          <xs:documentation>North Mundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHF">
        <xs:annotation>
          <xs:documentation>Petworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHG">
        <xs:annotation>
          <xs:documentation>Plaistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHH">
        <xs:annotation>
          <xs:documentation>Rogate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHJ">
        <xs:annotation>
          <xs:documentation>Selsey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHK">
        <xs:annotation>
          <xs:documentation>Selsey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHL">
        <xs:annotation>
          <xs:documentation>Sidlesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHM">
        <xs:annotation>
          <xs:documentation>Southbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHN">
        <xs:annotation>
          <xs:documentation>Stedham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHP">
        <xs:annotation>
          <xs:documentation>Tangmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHQ">
        <xs:annotation>
          <xs:documentation>West Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHR">
        <xs:annotation>
          <xs:documentation>Westbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UDHS">
        <xs:annotation>
          <xs:documentation>Wisborough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFP">
        <xs:annotation>
          <xs:documentation>Bewbush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFQ">
        <xs:annotation>
          <xs:documentation>Broadfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFR">
        <xs:annotation>
          <xs:documentation>Broadfield South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFS">
        <xs:annotation>
          <xs:documentation>Furnace Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFT">
        <xs:annotation>
          <xs:documentation>Gossops Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFU">
        <xs:annotation>
          <xs:documentation>Ifield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFW">
        <xs:annotation>
          <xs:documentation>Langley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFX">
        <xs:annotation>
          <xs:documentation>Maidenbower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFY">
        <xs:annotation>
          <xs:documentation>Northgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEFZ">
        <xs:annotation>
          <xs:documentation>Pound Hill North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEGA">
        <xs:annotation>
          <xs:documentation>Pound Hill South and Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEGB">
        <xs:annotation>
          <xs:documentation>Southgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEGC">
        <xs:annotation>
          <xs:documentation>Three Bridges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEGD">
        <xs:annotation>
          <xs:documentation>Tilgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UEGE">
        <xs:annotation>
          <xs:documentation>West Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGC">
        <xs:annotation>
          <xs:documentation>Billingshurst and Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGD">
        <xs:annotation>
          <xs:documentation>Bramber, Upper Beeding and Woodmancote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGE">
        <xs:annotation>
          <xs:documentation>Broadbridge Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGF">
        <xs:annotation>
          <xs:documentation>Chanctonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGG">
        <xs:annotation>
          <xs:documentation>Chantry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGH">
        <xs:annotation>
          <xs:documentation>Cowfold, Shermanbury and West Grinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGJ">
        <xs:annotation>
          <xs:documentation>Denne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGK">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGL">
        <xs:annotation>
          <xs:documentation>Henfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGM">
        <xs:annotation>
          <xs:documentation>Holbrook East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGN">
        <xs:annotation>
          <xs:documentation>Holbrook West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGP">
        <xs:annotation>
          <xs:documentation>Horsham Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGQ">
        <xs:annotation>
          <xs:documentation>Itchingfield, Slinfold and Warnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGR">
        <xs:annotation>
          <xs:documentation>Nuthurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGS">
        <xs:annotation>
          <xs:documentation>Pulborough and Coldwatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGT">
        <xs:annotation>
          <xs:documentation>Roffey North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGU">
        <xs:annotation>
          <xs:documentation>Roffey South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGW">
        <xs:annotation>
          <xs:documentation>Rudgwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGX">
        <xs:annotation>
          <xs:documentation>Rusper and Colgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGY">
        <xs:annotation>
          <xs:documentation>Southwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFGZ">
        <xs:annotation>
          <xs:documentation>Steyning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UFHA">
        <xs:annotation>
          <xs:documentation>Trafalgar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGH">
        <xs:annotation>
          <xs:documentation>Ardingly and Balcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGJ">
        <xs:annotation>
          <xs:documentation>Ashurst Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGK">
        <xs:annotation>
          <xs:documentation>Bolney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGL">
        <xs:annotation>
          <xs:documentation>Burgess Hill Dunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGM">
        <xs:annotation>
          <xs:documentation>Burgess Hill Franklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGN">
        <xs:annotation>
          <xs:documentation>Burgess Hill Leylands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGP">
        <xs:annotation>
          <xs:documentation>Burgess Hill Meeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGQ">
        <xs:annotation>
          <xs:documentation>Burgess Hill St Andrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGR">
        <xs:annotation>
          <xs:documentation>Burgess Hill Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGS">
        <xs:annotation>
          <xs:documentation>Copthorne and Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGT">
        <xs:annotation>
          <xs:documentation>Crawley Down and Turners Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGU">
        <xs:annotation>
          <xs:documentation>Cuckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGW">
        <xs:annotation>
          <xs:documentation>East Grinstead Ashplats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGX">
        <xs:annotation>
          <xs:documentation>East Grinstead Baldwins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGY">
        <xs:annotation>
          <xs:documentation>East Grinstead Herontye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGGZ">
        <xs:annotation>
          <xs:documentation>East Grinstead Imberhorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHA">
        <xs:annotation>
          <xs:documentation>East Grinstead Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHB">
        <xs:annotation>
          <xs:documentation>Hassocks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHC">
        <xs:annotation>
          <xs:documentation>Haywards Heath Ashenground</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHD">
        <xs:annotation>
          <xs:documentation>Haywards Heath Bentswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHE">
        <xs:annotation>
          <xs:documentation>Haywards Heath Franklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHF">
        <xs:annotation>
          <xs:documentation>Haywards Heath Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHG">
        <xs:annotation>
          <xs:documentation>Haywards Heath Lucastes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHH">
        <xs:annotation>
          <xs:documentation>High Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHJ">
        <xs:annotation>
          <xs:documentation>Hurstpierpoint and Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UGHK">
        <xs:annotation>
          <xs:documentation>Lindfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFN">
        <xs:annotation>
          <xs:documentation>Broadwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFP">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFQ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFR">
        <xs:annotation>
          <xs:documentation>Durrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFS">
        <xs:annotation>
          <xs:documentation>Gaisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFT">
        <xs:annotation>
          <xs:documentation>Goring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFU">
        <xs:annotation>
          <xs:documentation>Heene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFW">
        <xs:annotation>
          <xs:documentation>Marine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFX">
        <xs:annotation>
          <xs:documentation>Northbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFY">
        <xs:annotation>
          <xs:documentation>Offington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHFZ">
        <xs:annotation>
          <xs:documentation>Salvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHGA">
        <xs:annotation>
          <xs:documentation>Selden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45UHGB">
        <xs:annotation>
          <xs:documentation>Tarring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGJ">
        <xs:annotation>
          <xs:documentation>Aldbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGK">
        <xs:annotation>
          <xs:documentation>All Cannings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGL">
        <xs:annotation>
          <xs:documentation>Bedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGM">
        <xs:annotation>
          <xs:documentation>Bishops Cannings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGN">
        <xs:annotation>
          <xs:documentation>Bromham and Rowde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGP">
        <xs:annotation>
          <xs:documentation>Burbage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGQ">
        <xs:annotation>
          <xs:documentation>Cheverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGR">
        <xs:annotation>
          <xs:documentation>Collingbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGS">
        <xs:annotation>
          <xs:documentation>Devizes East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGT">
        <xs:annotation>
          <xs:documentation>Devizes North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGU">
        <xs:annotation>
          <xs:documentation>Devizes South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGW">
        <xs:annotation>
          <xs:documentation>Lavingtons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGX">
        <xs:annotation>
          <xs:documentation>Ludgershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGY">
        <xs:annotation>
          <xs:documentation>Marlborough East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBGZ">
        <xs:annotation>
          <xs:documentation>Marlborough West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHA">
        <xs:annotation>
          <xs:documentation>Milton Lilbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHB">
        <xs:annotation>
          <xs:documentation>Netheravon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHC">
        <xs:annotation>
          <xs:documentation>Ogbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHD">
        <xs:annotation>
          <xs:documentation>Pewsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHE">
        <xs:annotation>
          <xs:documentation>Pewsey Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHF">
        <xs:annotation>
          <xs:documentation>Potterne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHG">
        <xs:annotation>
          <xs:documentation>Ramsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHH">
        <xs:annotation>
          <xs:documentation>Roundway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHJ">
        <xs:annotation>
          <xs:documentation>Seend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHK">
        <xs:annotation>
          <xs:documentation>Shalbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHL">
        <xs:annotation>
          <xs:documentation>Tidworth, Perham Down and Ludgershall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHM">
        <xs:annotation>
          <xs:documentation>Upavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHN">
        <xs:annotation>
          <xs:documentation>Urchfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UBHP">
        <xs:annotation>
          <xs:documentation>West Selkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCGW">
        <xs:annotation>
          <xs:documentation>Ashton Keynes and Minety</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCGX">
        <xs:annotation>
          <xs:documentation>Box</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCGY">
        <xs:annotation>
          <xs:documentation>Bremhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCGZ">
        <xs:annotation>
          <xs:documentation>Brinkworth and The Somerfords</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHA">
        <xs:annotation>
          <xs:documentation>Calne Abberd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHB">
        <xs:annotation>
          <xs:documentation>Calne Chilvester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHC">
        <xs:annotation>
          <xs:documentation>Calne Lickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHD">
        <xs:annotation>
          <xs:documentation>Calne Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHE">
        <xs:annotation>
          <xs:documentation>Calne Priestley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHF">
        <xs:annotation>
          <xs:documentation>Calne Quemerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHG">
        <xs:annotation>
          <xs:documentation>Calne Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHH">
        <xs:annotation>
          <xs:documentation>Cepen Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHJ">
        <xs:annotation>
          <xs:documentation>Chippenham Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHK">
        <xs:annotation>
          <xs:documentation>Chippenham Audley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHL">
        <xs:annotation>
          <xs:documentation>Chippenham Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHM">
        <xs:annotation>
          <xs:documentation>Chippenham Hill Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHN">
        <xs:annotation>
          <xs:documentation>Chippenham London Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHP">
        <xs:annotation>
          <xs:documentation>Chippenham Monkton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHQ">
        <xs:annotation>
          <xs:documentation>Chippenham Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHR">
        <xs:annotation>
          <xs:documentation>Chippenham Pewsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHS">
        <xs:annotation>
          <xs:documentation>Chippenham Redland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHT">
        <xs:annotation>
          <xs:documentation>Chippenham Westcroft/Queens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHU">
        <xs:annotation>
          <xs:documentation>Colerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHW">
        <xs:annotation>
          <xs:documentation>Corsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHX">
        <xs:annotation>
          <xs:documentation>Cricklade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHY">
        <xs:annotation>
          <xs:documentation>Hilmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCHZ">
        <xs:annotation>
          <xs:documentation>Kington Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJA">
        <xs:annotation>
          <xs:documentation>Kington St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJB">
        <xs:annotation>
          <xs:documentation>Lacock with Neston and Gastard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJC">
        <xs:annotation>
          <xs:documentation>Lyneham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJD">
        <xs:annotation>
          <xs:documentation>Malmesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJE">
        <xs:annotation>
          <xs:documentation>Nettleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJF">
        <xs:annotation>
          <xs:documentation>Pickwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJG">
        <xs:annotation>
          <xs:documentation>Purton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJH">
        <xs:annotation>
          <xs:documentation>St. Paul Malmesbury Without and Sherston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJJ">
        <xs:annotation>
          <xs:documentation>The Lydiards and Broad Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJK">
        <xs:annotation>
          <xs:documentation>Wootton Bassett North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UCJL">
        <xs:annotation>
          <xs:documentation>Wootton Bassett South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGP">
        <xs:annotation>
          <xs:documentation>Alderbury and Whiteparish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGQ">
        <xs:annotation>
          <xs:documentation>Amesbury East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGR">
        <xs:annotation>
          <xs:documentation>Amesbury West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGS">
        <xs:annotation>
          <xs:documentation>Bemerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGT">
        <xs:annotation>
          <xs:documentation>Bishopdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGU">
        <xs:annotation>
          <xs:documentation>Bulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGW">
        <xs:annotation>
          <xs:documentation>Chalke Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGX">
        <xs:annotation>
          <xs:documentation>Donhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGY">
        <xs:annotation>
          <xs:documentation>Downton and Redlynch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDGZ">
        <xs:annotation>
          <xs:documentation>Durrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHA">
        <xs:annotation>
          <xs:documentation>Ebble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHB">
        <xs:annotation>
          <xs:documentation>Fisherton and Bemerton Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHC">
        <xs:annotation>
          <xs:documentation>Fonthill and Nadder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHD">
        <xs:annotation>
          <xs:documentation>Harnham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHE">
        <xs:annotation>
          <xs:documentation>Harnham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHF">
        <xs:annotation>
          <xs:documentation>Knoyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHG">
        <xs:annotation>
          <xs:documentation>Laverstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHH">
        <xs:annotation>
          <xs:documentation>Lower Wylye and Woodford Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHJ">
        <xs:annotation>
          <xs:documentation>St Edmund and Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHK">
        <xs:annotation>
          <xs:documentation>St Mark and Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHL">
        <xs:annotation>
          <xs:documentation>St Martin and Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHM">
        <xs:annotation>
          <xs:documentation>St Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHN">
        <xs:annotation>
          <xs:documentation>Till Valley and Wylye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHP">
        <xs:annotation>
          <xs:documentation>Tisbury and Fovant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHQ">
        <xs:annotation>
          <xs:documentation>Upper Bourne, Idmiston and Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHR">
        <xs:annotation>
          <xs:documentation>Western and Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHS">
        <xs:annotation>
          <xs:documentation>Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UDHT">
        <xs:annotation>
          <xs:documentation>Winterslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGF">
        <xs:annotation>
          <xs:documentation>Atworth and Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGG">
        <xs:annotation>
          <xs:documentation>Bradford-on-Avon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGH">
        <xs:annotation>
          <xs:documentation>Bradford-on-Avon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGJ">
        <xs:annotation>
          <xs:documentation>Dilton Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGK">
        <xs:annotation>
          <xs:documentation>Ethandune</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGL">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGM">
        <xs:annotation>
          <xs:documentation>Manor Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGN">
        <xs:annotation>
          <xs:documentation>Melksham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGP">
        <xs:annotation>
          <xs:documentation>Melksham Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGQ">
        <xs:annotation>
          <xs:documentation>Melksham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGR">
        <xs:annotation>
          <xs:documentation>Melksham Woodrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGS">
        <xs:annotation>
          <xs:documentation>Mid Wylye Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGT">
        <xs:annotation>
          <xs:documentation>Paxcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGU">
        <xs:annotation>
          <xs:documentation>Shearwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGW">
        <xs:annotation>
          <xs:documentation>Southwick and Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGX">
        <xs:annotation>
          <xs:documentation>Summerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGY">
        <xs:annotation>
          <xs:documentation>Trowbridge Adcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFGZ">
        <xs:annotation>
          <xs:documentation>Trowbridge College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHA">
        <xs:annotation>
          <xs:documentation>Trowbridge Drynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHB">
        <xs:annotation>
          <xs:documentation>Trowbridge John of Gaunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHC">
        <xs:annotation>
          <xs:documentation>Trowbridge Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHD">
        <xs:annotation>
          <xs:documentation>Warminster East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHE">
        <xs:annotation>
          <xs:documentation>Warminster West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHF">
        <xs:annotation>
          <xs:documentation>Westbury Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46UFHG">
        <xs:annotation>
          <xs:documentation>Westbury Laverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBFY">
        <xs:annotation>
          <xs:documentation>Alvechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBFZ">
        <xs:annotation>
          <xs:documentation>Beacon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGA">
        <xs:annotation>
          <xs:documentation>Catshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGB">
        <xs:annotation>
          <xs:documentation>Charford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGC">
        <xs:annotation>
          <xs:documentation>Drakes Cross and Walkers Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGD">
        <xs:annotation>
          <xs:documentation>Furlongs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGE">
        <xs:annotation>
          <xs:documentation>Hagley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGF">
        <xs:annotation>
          <xs:documentation>Hillside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGG">
        <xs:annotation>
          <xs:documentation>Hollywood and Majors Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGH">
        <xs:annotation>
          <xs:documentation>Linthurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGJ">
        <xs:annotation>
          <xs:documentation>Marlbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGK">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGL">
        <xs:annotation>
          <xs:documentation>St Johns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGM">
        <xs:annotation>
          <xs:documentation>Sidemoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGN">
        <xs:annotation>
          <xs:documentation>Slideslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGP">
        <xs:annotation>
          <xs:documentation>Stoke Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGQ">
        <xs:annotation>
          <xs:documentation>Stoke Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGR">
        <xs:annotation>
          <xs:documentation>Tardebigge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGS">
        <xs:annotation>
          <xs:documentation>Uffdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGT">
        <xs:annotation>
          <xs:documentation>Waseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGU">
        <xs:annotation>
          <xs:documentation>Whitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGW">
        <xs:annotation>
          <xs:documentation>Woodvale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UBGX">
        <xs:annotation>
          <xs:documentation>Wythall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHQ">
        <xs:annotation>
          <xs:documentation>Alfrick and Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHR">
        <xs:annotation>
          <xs:documentation>Baldwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHS">
        <xs:annotation>
          <xs:documentation>Broadheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHT">
        <xs:annotation>
          <xs:documentation>Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHU">
        <xs:annotation>
          <xs:documentation>Dyson Perrins</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHW">
        <xs:annotation>
          <xs:documentation>Hallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHX">
        <xs:annotation>
          <xs:documentation>Kempsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHY">
        <xs:annotation>
          <xs:documentation>Lindridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCHZ">
        <xs:annotation>
          <xs:documentation>Link</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJA">
        <xs:annotation>
          <xs:documentation>Longdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJB">
        <xs:annotation>
          <xs:documentation>Martley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJC">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJD">
        <xs:annotation>
          <xs:documentation>Pickersleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJE">
        <xs:annotation>
          <xs:documentation>Powick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJF">
        <xs:annotation>
          <xs:documentation>Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJG">
        <xs:annotation>
          <xs:documentation>Ripple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJH">
        <xs:annotation>
          <xs:documentation>Teme Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJJ">
        <xs:annotation>
          <xs:documentation>Tenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJK">
        <xs:annotation>
          <xs:documentation>Upton and Hanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJL">
        <xs:annotation>
          <xs:documentation>Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJM">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UCJN">
        <xs:annotation>
          <xs:documentation>Woodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFM">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFN">
        <xs:annotation>
          <xs:documentation>Astwood Bank and Feckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFP">
        <xs:annotation>
          <xs:documentation>Batchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFQ">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFR">
        <xs:annotation>
          <xs:documentation>Church Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFS">
        <xs:annotation>
          <xs:documentation>Crabbs Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFT">
        <xs:annotation>
          <xs:documentation>Greenlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFU">
        <xs:annotation>
          <xs:documentation>Headless Cross and Oakenshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFW">
        <xs:annotation>
          <xs:documentation>Lodge Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFX">
        <xs:annotation>
          <xs:documentation>Matchborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFY">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UDFZ">
        <xs:annotation>
          <xs:documentation>Winyates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFN">
        <xs:annotation>
          <xs:documentation>Arboretum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFP">
        <xs:annotation>
          <xs:documentation>Battenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFQ">
        <xs:annotation>
          <xs:documentation>Bedwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFR">
        <xs:annotation>
          <xs:documentation>Cathedral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFS">
        <xs:annotation>
          <xs:documentation>Claines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFT">
        <xs:annotation>
          <xs:documentation>Gorse Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFU">
        <xs:annotation>
          <xs:documentation>Nunnery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFW">
        <xs:annotation>
          <xs:documentation>Rainbow Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFX">
        <xs:annotation>
          <xs:documentation>St Clement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFY">
        <xs:annotation>
          <xs:documentation>St John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEFZ">
        <xs:annotation>
          <xs:documentation>St Peter's Parish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEGA">
        <xs:annotation>
          <xs:documentation>St Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEGB">
        <xs:annotation>
          <xs:documentation>Warndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEGC">
        <xs:annotation>
          <xs:documentation>Warndon Parish North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UEGD">
        <xs:annotation>
          <xs:documentation>Warndon Parish South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGP">
        <xs:annotation>
          <xs:documentation>Badsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGQ">
        <xs:annotation>
          <xs:documentation>Bengeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGR">
        <xs:annotation>
          <xs:documentation>Bowbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGS">
        <xs:annotation>
          <xs:documentation>Bredon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGT">
        <xs:annotation>
          <xs:documentation>Bretforton and Offenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGU">
        <xs:annotation>
          <xs:documentation>Broadway and Wickhamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGW">
        <xs:annotation>
          <xs:documentation>Dodderhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGX">
        <xs:annotation>
          <xs:documentation>Drakes Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGY">
        <xs:annotation>
          <xs:documentation>Droitwich Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFGZ">
        <xs:annotation>
          <xs:documentation>Droitwich East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHA">
        <xs:annotation>
          <xs:documentation>Droitwich South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHB">
        <xs:annotation>
          <xs:documentation>Droitwich South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHC">
        <xs:annotation>
          <xs:documentation>Droitwich West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHD">
        <xs:annotation>
          <xs:documentation>Eckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHE">
        <xs:annotation>
          <xs:documentation>Elmley Castle and Somerville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHF">
        <xs:annotation>
          <xs:documentation>Evesham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHG">
        <xs:annotation>
          <xs:documentation>Evesham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHH">
        <xs:annotation>
          <xs:documentation>Fladbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHJ">
        <xs:annotation>
          <xs:documentation>Great Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHK">
        <xs:annotation>
          <xs:documentation>Hartlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHL">
        <xs:annotation>
          <xs:documentation>Harvington and Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHM">
        <xs:annotation>
          <xs:documentation>Honeybourne and Pebworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHN">
        <xs:annotation>
          <xs:documentation>Inkberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHP">
        <xs:annotation>
          <xs:documentation>Little Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHQ">
        <xs:annotation>
          <xs:documentation>Lovett and North Claines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHR">
        <xs:annotation>
          <xs:documentation>Norton and Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHS">
        <xs:annotation>
          <xs:documentation>Ombersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHT">
        <xs:annotation>
          <xs:documentation>Pershore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHU">
        <xs:annotation>
          <xs:documentation>Pinvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHW">
        <xs:annotation>
          <xs:documentation>South Bredon Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHX">
        <xs:annotation>
          <xs:documentation>The Littletons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UFHY">
        <xs:annotation>
          <xs:documentation>Upton Snodsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGFU">
        <xs:annotation>
          <xs:documentation>Aggborough and Spennells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGFW">
        <xs:annotation>
          <xs:documentation>Areley Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGFX">
        <xs:annotation>
          <xs:documentation>Bewdley and Arley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGFY">
        <xs:annotation>
          <xs:documentation>Blakedown and Chaddesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGFZ">
        <xs:annotation>
          <xs:documentation>Broadwaters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGA">
        <xs:annotation>
          <xs:documentation>Cookley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGB">
        <xs:annotation>
          <xs:documentation>Franche</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGC">
        <xs:annotation>
          <xs:documentation>Greenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGD">
        <xs:annotation>
          <xs:documentation>Habberley and Blakebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGE">
        <xs:annotation>
          <xs:documentation>Lickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGF">
        <xs:annotation>
          <xs:documentation>Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGG">
        <xs:annotation>
          <xs:documentation>Offmore and Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGH">
        <xs:annotation>
          <xs:documentation>Oldington and Foley Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGJ">
        <xs:annotation>
          <xs:documentation>Rock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGK">
        <xs:annotation>
          <xs:documentation>Sutton Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGL">
        <xs:annotation>
          <xs:documentation>Wolverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47UGGM">
        <xs:annotation>
          <xs:documentation>Wribbenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 01">
        <xs:annotation>
          <xs:documentation>Banagher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 02">
        <xs:annotation>
          <xs:documentation>Claudy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 03">
        <xs:annotation>
          <xs:documentation>Eglinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 04">
        <xs:annotation>
          <xs:documentation>Holly Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 05">
        <xs:annotation>
          <xs:documentation>New Buildings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 06">
        <xs:annotation>
          <xs:documentation>Enagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 07">
        <xs:annotation>
          <xs:documentation>Caw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 08">
        <xs:annotation>
          <xs:documentation>Kilfennan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 09">
        <xs:annotation>
          <xs:documentation>Altnagelvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 10">
        <xs:annotation>
          <xs:documentation>Lisnagelvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 11">
        <xs:annotation>
          <xs:documentation>Clondermot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 12">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 13">
        <xs:annotation>
          <xs:documentation>Ebrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 14">
        <xs:annotation>
          <xs:documentation>Crevagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 15">
        <xs:annotation>
          <xs:documentation>Springtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 16">
        <xs:annotation>
          <xs:documentation>Creggan South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 17">
        <xs:annotation>
          <xs:documentation>Brandywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 18">
        <xs:annotation>
          <xs:documentation>The Diamond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 19">
        <xs:annotation>
          <xs:documentation>Westland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 20">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 21">
        <xs:annotation>
          <xs:documentation>Creggan Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 22">
        <xs:annotation>
          <xs:documentation>Rosemount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 23">
        <xs:annotation>
          <xs:documentation>Foyle Springs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 24">
        <xs:annotation>
          <xs:documentation>Strand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 25">
        <xs:annotation>
          <xs:documentation>Pennyburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 26">
        <xs:annotation>
          <xs:documentation>Carn Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 27">
        <xs:annotation>
          <xs:documentation>Shantallow West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 28">
        <xs:annotation>
          <xs:documentation>Shantallow East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 29">
        <xs:annotation>
          <xs:documentation>Ballynashallog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95A 30">
        <xs:annotation>
          <xs:documentation>Culmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 01">
        <xs:annotation>
          <xs:documentation>Magilligan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 02">
        <xs:annotation>
          <xs:documentation>Aghanloo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 03">
        <xs:annotation>
          <xs:documentation>Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 04">
        <xs:annotation>
          <xs:documentation>Upper Glenshane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 05">
        <xs:annotation>
          <xs:documentation>Feeny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 06">
        <xs:annotation>
          <xs:documentation>Dungiven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 07">
        <xs:annotation>
          <xs:documentation>The Highlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 08">
        <xs:annotation>
          <xs:documentation>Glack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 09">
        <xs:annotation>
          <xs:documentation>Gresteel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 10">
        <xs:annotation>
          <xs:documentation>Ballykelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 11">
        <xs:annotation>
          <xs:documentation>Roeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 12">
        <xs:annotation>
          <xs:documentation>Rathbrady</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 13">
        <xs:annotation>
          <xs:documentation>Enagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 14">
        <xs:annotation>
          <xs:documentation>Coolessan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95B 15">
        <xs:annotation>
          <xs:documentation>Greystone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 01">
        <xs:annotation>
          <xs:documentation>Kilrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 02">
        <xs:annotation>
          <xs:documentation>Agivey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 03">
        <xs:annotation>
          <xs:documentation>Dundooan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 04">
        <xs:annotation>
          <xs:documentation>Knocklynn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 05">
        <xs:annotation>
          <xs:documentation>Dunluce</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 06">
        <xs:annotation>
          <xs:documentation>Royal Portrush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 07">
        <xs:annotation>
          <xs:documentation>Hopefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 08">
        <xs:annotation>
          <xs:documentation>Atlantic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 09">
        <xs:annotation>
          <xs:documentation>Portstewart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 10">
        <xs:annotation>
          <xs:documentation>Strand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 11">
        <xs:annotation>
          <xs:documentation>University</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 12">
        <xs:annotation>
          <xs:documentation>Ballysally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 13">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 14">
        <xs:annotation>
          <xs:documentation>Cross Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 15">
        <xs:annotation>
          <xs:documentation>Mount Sandel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 16">
        <xs:annotation>
          <xs:documentation>The Cuts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 17">
        <xs:annotation>
          <xs:documentation>Churchland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 18">
        <xs:annotation>
          <xs:documentation>Waterside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 19">
        <xs:annotation>
          <xs:documentation>Castlerock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 20">
        <xs:annotation>
          <xs:documentation>Macosquin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 21">
        <xs:annotation>
          <xs:documentation>Ringsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95C 22">
        <xs:annotation>
          <xs:documentation>Garvagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 01">
        <xs:annotation>
          <xs:documentation>Benvardin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 02">
        <xs:annotation>
          <xs:documentation>Seacon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 03">
        <xs:annotation>
          <xs:documentation>Dervock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 04">
        <xs:annotation>
          <xs:documentation>Stranocum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 05">
        <xs:annotation>
          <xs:documentation>Ballyhoe and Corkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 06">
        <xs:annotation>
          <xs:documentation>Knockaholet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 07">
        <xs:annotation>
          <xs:documentation>Route</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 08">
        <xs:annotation>
          <xs:documentation>Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 09">
        <xs:annotation>
          <xs:documentation>Newhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 10">
        <xs:annotation>
          <xs:documentation>Carnany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 11">
        <xs:annotation>
          <xs:documentation>Fairhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 12">
        <xs:annotation>
          <xs:documentation>The Vow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 13">
        <xs:annotation>
          <xs:documentation>Killoquin Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 14">
        <xs:annotation>
          <xs:documentation>Dunloy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 15">
        <xs:annotation>
          <xs:documentation>Clogh Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95D 16">
        <xs:annotation>
          <xs:documentation>Killoquin Upper</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 01">
        <xs:annotation>
          <xs:documentation>Bushmills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 02">
        <xs:annotation>
          <xs:documentation>Ballylough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 03">
        <xs:annotation>
          <xs:documentation>Dunseverick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 04">
        <xs:annotation>
          <xs:documentation>Carnmoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 05">
        <xs:annotation>
          <xs:documentation>Kinbane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 06">
        <xs:annotation>
          <xs:documentation>Moss-Side and Moyarget</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 07">
        <xs:annotation>
          <xs:documentation>Armoy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 08">
        <xs:annotation>
          <xs:documentation>Dalriada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 09">
        <xs:annotation>
          <xs:documentation>Knocklayd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 10">
        <xs:annotation>
          <xs:documentation>Glentaisie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 11">
        <xs:annotation>
          <xs:documentation>Bonamargy and Rathlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 12">
        <xs:annotation>
          <xs:documentation>Glenshesk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 13">
        <xs:annotation>
          <xs:documentation>Glendun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 14">
        <xs:annotation>
          <xs:documentation>Glenaan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95E 15">
        <xs:annotation>
          <xs:documentation>Glenariff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 01">
        <xs:annotation>
          <xs:documentation>Carnlough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 02">
        <xs:annotation>
          <xs:documentation>Glenarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 03">
        <xs:annotation>
          <xs:documentation>Carncastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 04">
        <xs:annotation>
          <xs:documentation>Blackcave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 05">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 06">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 07">
        <xs:annotation>
          <xs:documentation>Town Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 08">
        <xs:annotation>
          <xs:documentation>Gardenmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 09">
        <xs:annotation>
          <xs:documentation>Craigy Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 10">
        <xs:annotation>
          <xs:documentation>Ballyloran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 11">
        <xs:annotation>
          <xs:documentation>Antiville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 12">
        <xs:annotation>
          <xs:documentation>Kilwaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 13">
        <xs:annotation>
          <xs:documentation>Glynn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 14">
        <xs:annotation>
          <xs:documentation>Ballycarry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95F 15">
        <xs:annotation>
          <xs:documentation>Island Magee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 01">
        <xs:annotation>
          <xs:documentation>Glenravel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 02">
        <xs:annotation>
          <xs:documentation>Slemish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 03">
        <xs:annotation>
          <xs:documentation>Glenwhirry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 04">
        <xs:annotation>
          <xs:documentation>Kells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 05">
        <xs:annotation>
          <xs:documentation>Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 06">
        <xs:annotation>
          <xs:documentation>Ahoghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 07">
        <xs:annotation>
          <xs:documentation>Portglenone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 08">
        <xs:annotation>
          <xs:documentation>Dunminning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 09">
        <xs:annotation>
          <xs:documentation>Craigywarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 10">
        <xs:annotation>
          <xs:documentation>Cullybackey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 11">
        <xs:annotation>
          <xs:documentation>Broughshane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 12">
        <xs:annotation>
          <xs:documentation>Galgorm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 13">
        <xs:annotation>
          <xs:documentation>Academy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 14">
        <xs:annotation>
          <xs:documentation>Ballyloughan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 15">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 16">
        <xs:annotation>
          <xs:documentation>Dunclug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 17">
        <xs:annotation>
          <xs:documentation>Fair Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 18">
        <xs:annotation>
          <xs:documentation>Summerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 19">
        <xs:annotation>
          <xs:documentation>Castle Demesne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 20">
        <xs:annotation>
          <xs:documentation>Ardeevin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 21">
        <xs:annotation>
          <xs:documentation>Harryville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 22">
        <xs:annotation>
          <xs:documentation>Ballee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 23">
        <xs:annotation>
          <xs:documentation>Moat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95G 24">
        <xs:annotation>
          <xs:documentation>Ballykeel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 01">
        <xs:annotation>
          <xs:documentation>Swatragh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 02">
        <xs:annotation>
          <xs:documentation>Upperlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 03">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 04">
        <xs:annotation>
          <xs:documentation>Lower Glenshane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 05">
        <xs:annotation>
          <xs:documentation>Maghera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 06">
        <xs:annotation>
          <xs:documentation>Gulladuff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 07">
        <xs:annotation>
          <xs:documentation>Tobermore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 08">
        <xs:annotation>
          <xs:documentation>Knockcloghrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 09">
        <xs:annotation>
          <xs:documentation>Bellaghy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 10">
        <xs:annotation>
          <xs:documentation>Castledawson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 11">
        <xs:annotation>
          <xs:documentation>Draperstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 12">
        <xs:annotation>
          <xs:documentation>Lecumpher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 13">
        <xs:annotation>
          <xs:documentation>Ballymaguigan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 14">
        <xs:annotation>
          <xs:documentation>Town Parks West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 15">
        <xs:annotation>
          <xs:documentation>Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95H 16">
        <xs:annotation>
          <xs:documentation>Town Parks East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 01">
        <xs:annotation>
          <xs:documentation>Dunnamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 02">
        <xs:annotation>
          <xs:documentation>Pomeroy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 03">
        <xs:annotation>
          <xs:documentation>Lissan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 04">
        <xs:annotation>
          <xs:documentation>Oaklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 05">
        <xs:annotation>
          <xs:documentation>Sandholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 06">
        <xs:annotation>
          <xs:documentation>Moneymore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 07">
        <xs:annotation>
          <xs:documentation>Coagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 08">
        <xs:annotation>
          <xs:documentation>Stewartstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 09">
        <xs:annotation>
          <xs:documentation>The Loop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 10">
        <xs:annotation>
          <xs:documentation>Ardboe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 11">
        <xs:annotation>
          <xs:documentation>Killycolpy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 12">
        <xs:annotation>
          <xs:documentation>Oldtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 13">
        <xs:annotation>
          <xs:documentation>Newbuildings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 14">
        <xs:annotation>
          <xs:documentation>Tullagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 15">
        <xs:annotation>
          <xs:documentation>Gortalowry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95I 16">
        <xs:annotation>
          <xs:documentation>Killymoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 01">
        <xs:annotation>
          <xs:documentation>Glenderg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 02">
        <xs:annotation>
          <xs:documentation>Castlederg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 03">
        <xs:annotation>
          <xs:documentation>Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 04">
        <xs:annotation>
          <xs:documentation>Newtownstewart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 05">
        <xs:annotation>
          <xs:documentation>Plumbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 06">
        <xs:annotation>
          <xs:documentation>Victoria Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 07">
        <xs:annotation>
          <xs:documentation>Finn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 08">
        <xs:annotation>
          <xs:documentation>Sion Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 09">
        <xs:annotation>
          <xs:documentation>Dunnamanagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 10">
        <xs:annotation>
          <xs:documentation>Slievekirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 11">
        <xs:annotation>
          <xs:documentation>Artigarvan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 12">
        <xs:annotation>
          <xs:documentation>North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 13">
        <xs:annotation>
          <xs:documentation>West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 14">
        <xs:annotation>
          <xs:documentation>East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 15">
        <xs:annotation>
          <xs:documentation>South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95J 16">
        <xs:annotation>
          <xs:documentation>Ballycolman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 01">
        <xs:annotation>
          <xs:documentation>Trillick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 02">
        <xs:annotation>
          <xs:documentation>Dromore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 03">
        <xs:annotation>
          <xs:documentation>Drumquin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 04">
        <xs:annotation>
          <xs:documentation>Fairy Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 05">
        <xs:annotation>
          <xs:documentation>Clanabogan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 06">
        <xs:annotation>
          <xs:documentation>Fintona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 07">
        <xs:annotation>
          <xs:documentation>Newtownsaville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 08">
        <xs:annotation>
          <xs:documentation>Sixmilecross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 09">
        <xs:annotation>
          <xs:documentation>Beragh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 10">
        <xs:annotation>
          <xs:documentation>Drumnakilly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 11">
        <xs:annotation>
          <xs:documentation>Termon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 12">
        <xs:annotation>
          <xs:documentation>Owenkillew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 13">
        <xs:annotation>
          <xs:documentation>Gortin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 14">
        <xs:annotation>
          <xs:documentation>Lisanelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 15">
        <xs:annotation>
          <xs:documentation>Killyclogher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 16">
        <xs:annotation>
          <xs:documentation>Camowen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 17">
        <xs:annotation>
          <xs:documentation>Drumragh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 18">
        <xs:annotation>
          <xs:documentation>Dergmoney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 19">
        <xs:annotation>
          <xs:documentation>Coolnagard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 20">
        <xs:annotation>
          <xs:documentation>Gortrush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95K 21">
        <xs:annotation>
          <xs:documentation>Strule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 01">
        <xs:annotation>
          <xs:documentation>Rosslea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 02">
        <xs:annotation>
          <xs:documentation>Newtownbutler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 03">
        <xs:annotation>
          <xs:documentation>Donagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 04">
        <xs:annotation>
          <xs:documentation>Lisnaskea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 05">
        <xs:annotation>
          <xs:documentation>Brookeborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 06">
        <xs:annotation>
          <xs:documentation>Maguires Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 07">
        <xs:annotation>
          <xs:documentation>Tempo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 08">
        <xs:annotation>
          <xs:documentation>Lisbellaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 09">
        <xs:annotation>
          <xs:documentation>Ballinamallard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 10">
        <xs:annotation>
          <xs:documentation>Irvinestown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 11">
        <xs:annotation>
          <xs:documentation>Lisnarrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 12">
        <xs:annotation>
          <xs:documentation>Kesh, Ederney and Lack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 13">
        <xs:annotation>
          <xs:documentation>Belleek and Boa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 14">
        <xs:annotation>
          <xs:documentation>Belcoo and Garrison</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 15">
        <xs:annotation>
          <xs:documentation>Derrygonnelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 16">
        <xs:annotation>
          <xs:documentation>Boho, Cleenish and Letterbreen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 17">
        <xs:annotation>
          <xs:documentation>Florence Court and Kinawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 18">
        <xs:annotation>
          <xs:documentation>Derrylin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 19">
        <xs:annotation>
          <xs:documentation>Rossorry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 20">
        <xs:annotation>
          <xs:documentation>Portora</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 21">
        <xs:annotation>
          <xs:documentation>Devenish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 22">
        <xs:annotation>
          <xs:documentation>Erne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95L 23">
        <xs:annotation>
          <xs:documentation>Castlecoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 01">
        <xs:annotation>
          <xs:documentation>Fivemiletown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 02">
        <xs:annotation>
          <xs:documentation>Clogher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 03">
        <xs:annotation>
          <xs:documentation>Augher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 04">
        <xs:annotation>
          <xs:documentation>Ballygawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 05">
        <xs:annotation>
          <xs:documentation>Castlecaulfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 06">
        <xs:annotation>
          <xs:documentation>Altmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 07">
        <xs:annotation>
          <xs:documentation>Donaghmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 08">
        <xs:annotation>
          <xs:documentation>Coalisland West and Newmills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 09">
        <xs:annotation>
          <xs:documentation>Coalisland North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 10">
        <xs:annotation>
          <xs:documentation>Coalisland South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 11">
        <xs:annotation>
          <xs:documentation>Washing Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 12">
        <xs:annotation>
          <xs:documentation>Killyman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 13">
        <xs:annotation>
          <xs:documentation>Moy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 14">
        <xs:annotation>
          <xs:documentation>Benburb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 15">
        <xs:annotation>
          <xs:documentation>Caledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 16">
        <xs:annotation>
          <xs:documentation>Aughnacloy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 17">
        <xs:annotation>
          <xs:documentation>Mullaghmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 18">
        <xs:annotation>
          <xs:documentation>Ballysaggart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 19">
        <xs:annotation>
          <xs:documentation>Moygashel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 20">
        <xs:annotation>
          <xs:documentation>Coolhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 21">
        <xs:annotation>
          <xs:documentation>Killymeal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95M 22">
        <xs:annotation>
          <xs:documentation>Drumglass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 01">
        <xs:annotation>
          <xs:documentation>The Birches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 02">
        <xs:annotation>
          <xs:documentation>Derrytrasna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 03">
        <xs:annotation>
          <xs:documentation>Aghagallon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 04">
        <xs:annotation>
          <xs:documentation>Magheralin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 05">
        <xs:annotation>
          <xs:documentation>Donaghcloney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 06">
        <xs:annotation>
          <xs:documentation>Waringstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 07">
        <xs:annotation>
          <xs:documentation>Bleary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 08">
        <xs:annotation>
          <xs:documentation>Ballyoran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 09">
        <xs:annotation>
          <xs:documentation>Corcrain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 10">
        <xs:annotation>
          <xs:documentation>Ballybay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 11">
        <xs:annotation>
          <xs:documentation>Brownstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 12">
        <xs:annotation>
          <xs:documentation>Tavanagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 13">
        <xs:annotation>
          <xs:documentation>Annagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 14">
        <xs:annotation>
          <xs:documentation>Edenderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 15">
        <xs:annotation>
          <xs:documentation>Killycomain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 16">
        <xs:annotation>
          <xs:documentation>Kernan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 17">
        <xs:annotation>
          <xs:documentation>Drumgor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 18">
        <xs:annotation>
          <xs:documentation>Drumgask</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 19">
        <xs:annotation>
          <xs:documentation>Woodville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 20">
        <xs:annotation>
          <xs:documentation>Drumnamoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 21">
        <xs:annotation>
          <xs:documentation>Parklake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 22">
        <xs:annotation>
          <xs:documentation>Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 23">
        <xs:annotation>
          <xs:documentation>Taghnevan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 24">
        <xs:annotation>
          <xs:documentation>Mourneview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 25">
        <xs:annotation>
          <xs:documentation>Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95N 26">
        <xs:annotation>
          <xs:documentation>Knocknashane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 01">
        <xs:annotation>
          <xs:documentation>Charlemont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 02">
        <xs:annotation>
          <xs:documentation>Loughgall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 03">
        <xs:annotation>
          <xs:documentation>Hockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 04">
        <xs:annotation>
          <xs:documentation>Ballymartrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 05">
        <xs:annotation>
          <xs:documentation>Killylea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 06">
        <xs:annotation>
          <xs:documentation>Milford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 07">
        <xs:annotation>
          <xs:documentation>Derrynoose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 08">
        <xs:annotation>
          <xs:documentation>Keady</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 09">
        <xs:annotation>
          <xs:documentation>Carrigatuke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 10">
        <xs:annotation>
          <xs:documentation>Killeen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 11">
        <xs:annotation>
          <xs:documentation>Markethill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 12">
        <xs:annotation>
          <xs:documentation>Poyntz Pass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 13">
        <xs:annotation>
          <xs:documentation>Tandragee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 14">
        <xs:annotation>
          <xs:documentation>Laurelvale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 15">
        <xs:annotation>
          <xs:documentation>Rich Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 16">
        <xs:annotation>
          <xs:documentation>Hamiltonsbawn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 17">
        <xs:annotation>
          <xs:documentation>Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 18">
        <xs:annotation>
          <xs:documentation>Callan Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 19">
        <xs:annotation>
          <xs:documentation>Abbey Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 20">
        <xs:annotation>
          <xs:documentation>Observatory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 21">
        <xs:annotation>
          <xs:documentation>The Mall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95O 22">
        <xs:annotation>
          <xs:documentation>Demesne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 01">
        <xs:annotation>
          <xs:documentation>Annalong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 02">
        <xs:annotation>
          <xs:documentation>Binnian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 03">
        <xs:annotation>
          <xs:documentation>Kilkeel Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 04">
        <xs:annotation>
          <xs:documentation>Kilkeel South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 05">
        <xs:annotation>
          <xs:documentation>Lisnacree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 06">
        <xs:annotation>
          <xs:documentation>Rostrevor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 07">
        <xs:annotation>
          <xs:documentation>Seaview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 08">
        <xs:annotation>
          <xs:documentation>Clonallan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 09">
        <xs:annotation>
          <xs:documentation>Derryleckagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 10">
        <xs:annotation>
          <xs:documentation>Burren and Kilbroney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 11">
        <xs:annotation>
          <xs:documentation>Spelga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 12">
        <xs:annotation>
          <xs:documentation>Mayobridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 13">
        <xs:annotation>
          <xs:documentation>Donaghmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 14">
        <xs:annotation>
          <xs:documentation>Windsor Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 15">
        <xs:annotation>
          <xs:documentation>St. Patrick's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 16">
        <xs:annotation>
          <xs:documentation>St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 17">
        <xs:annotation>
          <xs:documentation>Drumgullion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 18">
        <xs:annotation>
          <xs:documentation>Ballybot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 19">
        <xs:annotation>
          <xs:documentation>Daisy Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 20">
        <xs:annotation>
          <xs:documentation>Drumalane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 21">
        <xs:annotation>
          <xs:documentation>Derrymore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 22">
        <xs:annotation>
          <xs:documentation>Bessbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 23">
        <xs:annotation>
          <xs:documentation>Tullyhappy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 24">
        <xs:annotation>
          <xs:documentation>Camlough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 25">
        <xs:annotation>
          <xs:documentation>Newtownhamilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 26">
        <xs:annotation>
          <xs:documentation>Creggan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 27">
        <xs:annotation>
          <xs:documentation>Crossmaglen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 28">
        <xs:annotation>
          <xs:documentation>Silver Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 29">
        <xs:annotation>
          <xs:documentation>Forkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95P 30">
        <xs:annotation>
          <xs:documentation>Fathom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 01">
        <xs:annotation>
          <xs:documentation>Gilford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 02">
        <xs:annotation>
          <xs:documentation>Lawrencetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 03">
        <xs:annotation>
          <xs:documentation>Loughbrickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 04">
        <xs:annotation>
          <xs:documentation>Bannside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 05">
        <xs:annotation>
          <xs:documentation>Katesbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 06">
        <xs:annotation>
          <xs:documentation>Ballyward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 07">
        <xs:annotation>
          <xs:documentation>Gransha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 08">
        <xs:annotation>
          <xs:documentation>Dromore South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 09">
        <xs:annotation>
          <xs:documentation>Dromore North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 10">
        <xs:annotation>
          <xs:documentation>Quilly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 11">
        <xs:annotation>
          <xs:documentation>Rathfriland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 12">
        <xs:annotation>
          <xs:documentation>Edenderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 13">
        <xs:annotation>
          <xs:documentation>Banbridge West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 14">
        <xs:annotation>
          <xs:documentation>Fort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 15">
        <xs:annotation>
          <xs:documentation>Ballydown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 16">
        <xs:annotation>
          <xs:documentation>Seapatrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Q 17">
        <xs:annotation>
          <xs:documentation>The Cut</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 01">
        <xs:annotation>
          <xs:documentation>Saintfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 02">
        <xs:annotation>
          <xs:documentation>Kilmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 03">
        <xs:annotation>
          <xs:documentation>Ballynahinch East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 04">
        <xs:annotation>
          <xs:documentation>Ballymaglave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 05">
        <xs:annotation>
          <xs:documentation>Drumaness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 06">
        <xs:annotation>
          <xs:documentation>Derryboy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 07">
        <xs:annotation>
          <xs:documentation>Killyleagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 08">
        <xs:annotation>
          <xs:documentation>Crossgar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 09">
        <xs:annotation>
          <xs:documentation>Quoile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 10">
        <xs:annotation>
          <xs:documentation>Audleys Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 11">
        <xs:annotation>
          <xs:documentation>Ballymote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 12">
        <xs:annotation>
          <xs:documentation>Cathedral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 13">
        <xs:annotation>
          <xs:documentation>Strangford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 14">
        <xs:annotation>
          <xs:documentation>Ardglass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 15">
        <xs:annotation>
          <xs:documentation>Killough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 16">
        <xs:annotation>
          <xs:documentation>Seaforde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 17">
        <xs:annotation>
          <xs:documentation>Dunmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 18">
        <xs:annotation>
          <xs:documentation>Castlewellan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 19">
        <xs:annotation>
          <xs:documentation>Dundrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 20">
        <xs:annotation>
          <xs:documentation>Murlough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 21">
        <xs:annotation>
          <xs:documentation>Shimna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 22">
        <xs:annotation>
          <xs:documentation>Donard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95R 23">
        <xs:annotation>
          <xs:documentation>Tollymore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 01">
        <xs:annotation>
          <xs:documentation>Glenavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 02">
        <xs:annotation>
          <xs:documentation>Ballinderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 03">
        <xs:annotation>
          <xs:documentation>Moira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 04">
        <xs:annotation>
          <xs:documentation>Maghaberry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 05">
        <xs:annotation>
          <xs:documentation>Maze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 06">
        <xs:annotation>
          <xs:documentation>Hillsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 07">
        <xs:annotation>
          <xs:documentation>Dromara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 08">
        <xs:annotation>
          <xs:documentation>Ballymacbrennan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 09">
        <xs:annotation>
          <xs:documentation>Drumbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 10">
        <xs:annotation>
          <xs:documentation>Hillhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 11">
        <xs:annotation>
          <xs:documentation>Blaris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 12">
        <xs:annotation>
          <xs:documentation>Knockmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 13">
        <xs:annotation>
          <xs:documentation>Old Warren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 14">
        <xs:annotation>
          <xs:documentation>Lagan Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 15">
        <xs:annotation>
          <xs:documentation>Tonagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 16">
        <xs:annotation>
          <xs:documentation>Ballymacoss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 17">
        <xs:annotation>
          <xs:documentation>Ballymacash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 18">
        <xs:annotation>
          <xs:documentation>Lisnagarvy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 19">
        <xs:annotation>
          <xs:documentation>Wallace Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 20">
        <xs:annotation>
          <xs:documentation>Magheralave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 21">
        <xs:annotation>
          <xs:documentation>Harmony Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 22">
        <xs:annotation>
          <xs:documentation>Hilden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 23">
        <xs:annotation>
          <xs:documentation>Lambeg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 24">
        <xs:annotation>
          <xs:documentation>Derryaghy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 25">
        <xs:annotation>
          <xs:documentation>Seymour Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 26">
        <xs:annotation>
          <xs:documentation>Dunmurry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 27">
        <xs:annotation>
          <xs:documentation>Twinbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 28">
        <xs:annotation>
          <xs:documentation>Poleglass</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 29">
        <xs:annotation>
          <xs:documentation>Kilwee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95S 30">
        <xs:annotation>
          <xs:documentation>Collin Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 01">
        <xs:annotation>
          <xs:documentation>Toome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 02">
        <xs:annotation>
          <xs:documentation>Drumanaway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 03">
        <xs:annotation>
          <xs:documentation>Cranfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 04">
        <xs:annotation>
          <xs:documentation>Randalstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 05">
        <xs:annotation>
          <xs:documentation>Shilvodan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 06">
        <xs:annotation>
          <xs:documentation>Templepatrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 07">
        <xs:annotation>
          <xs:documentation>Farranshane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 08">
        <xs:annotation>
          <xs:documentation>Springfarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 09">
        <xs:annotation>
          <xs:documentation>Massereene</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 10">
        <xs:annotation>
          <xs:documentation>Balloo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 11">
        <xs:annotation>
          <xs:documentation>Fountain Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 12">
        <xs:annotation>
          <xs:documentation>Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 13">
        <xs:annotation>
          <xs:documentation>Stiles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 14">
        <xs:annotation>
          <xs:documentation>Greystone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 15">
        <xs:annotation>
          <xs:documentation>Parkgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 16">
        <xs:annotation>
          <xs:documentation>Ballycraigy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 17">
        <xs:annotation>
          <xs:documentation>Clady</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 18">
        <xs:annotation>
          <xs:documentation>Aldergrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95T 19">
        <xs:annotation>
          <xs:documentation>Crumlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 01">
        <xs:annotation>
          <xs:documentation>Mallusk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 02">
        <xs:annotation>
          <xs:documentation>Doagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 03">
        <xs:annotation>
          <xs:documentation>Ballyclare North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 04">
        <xs:annotation>
          <xs:documentation>Ballyclare South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 05">
        <xs:annotation>
          <xs:documentation>Ballynure</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 06">
        <xs:annotation>
          <xs:documentation>Ballyrobert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 07">
        <xs:annotation>
          <xs:documentation>Hawthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 08">
        <xs:annotation>
          <xs:documentation>Jordanstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 09">
        <xs:annotation>
          <xs:documentation>Rostulla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 10">
        <xs:annotation>
          <xs:documentation>Monkstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 11">
        <xs:annotation>
          <xs:documentation>Ballyduff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 12">
        <xs:annotation>
          <xs:documentation>Carnmoney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 13">
        <xs:annotation>
          <xs:documentation>Mossley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 14">
        <xs:annotation>
          <xs:documentation>Burnthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 15">
        <xs:annotation>
          <xs:documentation>Cloughfern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 16">
        <xs:annotation>
          <xs:documentation>Ballyhenry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 17">
        <xs:annotation>
          <xs:documentation>Glengormley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 18">
        <xs:annotation>
          <xs:documentation>Glebe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 19">
        <xs:annotation>
          <xs:documentation>Hightown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 20">
        <xs:annotation>
          <xs:documentation>Collinbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 21">
        <xs:annotation>
          <xs:documentation>Coole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 22">
        <xs:annotation>
          <xs:documentation>Dunanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 23">
        <xs:annotation>
          <xs:documentation>Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 24">
        <xs:annotation>
          <xs:documentation>Whitehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95U 25">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 01">
        <xs:annotation>
          <xs:documentation>Blackhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 02">
        <xs:annotation>
          <xs:documentation>Whitehead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 03">
        <xs:annotation>
          <xs:documentation>Eden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 04">
        <xs:annotation>
          <xs:documentation>Boneybefore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 05">
        <xs:annotation>
          <xs:documentation>Bluefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 06">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 07">
        <xs:annotation>
          <xs:documentation>Milebush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 08">
        <xs:annotation>
          <xs:documentation>Love Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 09">
        <xs:annotation>
          <xs:documentation>Sunnylands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 10">
        <xs:annotation>
          <xs:documentation>Northland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 11">
        <xs:annotation>
          <xs:documentation>Clipperstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 12">
        <xs:annotation>
          <xs:documentation>Killycrot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 13">
        <xs:annotation>
          <xs:documentation>Woodburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 14">
        <xs:annotation>
          <xs:documentation>Burleigh Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 15">
        <xs:annotation>
          <xs:documentation>Greenisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 16">
        <xs:annotation>
          <xs:documentation>Gortalee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95V 17">
        <xs:annotation>
          <xs:documentation>Knockagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 01">
        <xs:annotation>
          <xs:documentation>Groomsport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 02">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 03">
        <xs:annotation>
          <xs:documentation>Ballyholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 04">
        <xs:annotation>
          <xs:documentation>Broadway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 05">
        <xs:annotation>
          <xs:documentation>Ballymaconnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 06">
        <xs:annotation>
          <xs:documentation>Ballymagee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 07">
        <xs:annotation>
          <xs:documentation>Ballycrochan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 08">
        <xs:annotation>
          <xs:documentation>Harbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 09">
        <xs:annotation>
          <xs:documentation>Bangor Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 10">
        <xs:annotation>
          <xs:documentation>Bloomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 11">
        <xs:annotation>
          <xs:documentation>Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 12">
        <xs:annotation>
          <xs:documentation>Conlig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 13">
        <xs:annotation>
          <xs:documentation>Princetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 14">
        <xs:annotation>
          <xs:documentation>Bryansburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 15">
        <xs:annotation>
          <xs:documentation>Silverstream</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 16">
        <xs:annotation>
          <xs:documentation>Rathgael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 17">
        <xs:annotation>
          <xs:documentation>Clandeboye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 18">
        <xs:annotation>
          <xs:documentation>Dufferin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 19">
        <xs:annotation>
          <xs:documentation>Spring Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 20">
        <xs:annotation>
          <xs:documentation>Crawfordsburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 21">
        <xs:annotation>
          <xs:documentation>Craigavad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 22">
        <xs:annotation>
          <xs:documentation>Cultra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 23">
        <xs:annotation>
          <xs:documentation>Holywood Priory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 24">
        <xs:annotation>
          <xs:documentation>Holywood Demesne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95W 25">
        <xs:annotation>
          <xs:documentation>Loughview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 01">
        <xs:annotation>
          <xs:documentation>Killinchy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 02">
        <xs:annotation>
          <xs:documentation>Ballygowan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 03">
        <xs:annotation>
          <xs:documentation>Lisbane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 04">
        <xs:annotation>
          <xs:documentation>Comber West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 05">
        <xs:annotation>
          <xs:documentation>Comber East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 06">
        <xs:annotation>
          <xs:documentation>Comber North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 07">
        <xs:annotation>
          <xs:documentation>Scrabo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 08">
        <xs:annotation>
          <xs:documentation>Ballyrainey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 09">
        <xs:annotation>
          <xs:documentation>Bradshaw's Brae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 10">
        <xs:annotation>
          <xs:documentation>Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 11">
        <xs:annotation>
          <xs:documentation>Whitespots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 12">
        <xs:annotation>
          <xs:documentation>Movilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 13">
        <xs:annotation>
          <xs:documentation>Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 14">
        <xs:annotation>
          <xs:documentation>Gregstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 15">
        <xs:annotation>
          <xs:documentation>Loughries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 16">
        <xs:annotation>
          <xs:documentation>Donaghadee North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 17">
        <xs:annotation>
          <xs:documentation>Donaghadee South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 18">
        <xs:annotation>
          <xs:documentation>Millisle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 19">
        <xs:annotation>
          <xs:documentation>Carrowdore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 20">
        <xs:annotation>
          <xs:documentation>Ballywalter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 21">
        <xs:annotation>
          <xs:documentation>Portavogie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 22">
        <xs:annotation>
          <xs:documentation>Kircubbin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95X 23">
        <xs:annotation>
          <xs:documentation>Portaferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 01">
        <xs:annotation>
          <xs:documentation>Dundonald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 02">
        <xs:annotation>
          <xs:documentation>Carrowreagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 03">
        <xs:annotation>
          <xs:documentation>Enler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 04">
        <xs:annotation>
          <xs:documentation>Graham's Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 05">
        <xs:annotation>
          <xs:documentation>Ballyhanwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 06">
        <xs:annotation>
          <xs:documentation>Tullycarnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 07">
        <xs:annotation>
          <xs:documentation>Gilnahirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 08">
        <xs:annotation>
          <xs:documentation>Upper Braniel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 09">
        <xs:annotation>
          <xs:documentation>Moneyreagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 10">
        <xs:annotation>
          <xs:documentation>Galwally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 11">
        <xs:annotation>
          <xs:documentation>Lower Braniel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 12">
        <xs:annotation>
          <xs:documentation>Hillfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 13">
        <xs:annotation>
          <xs:documentation>Lisnasharragh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 14">
        <xs:annotation>
          <xs:documentation>Downshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 15">
        <xs:annotation>
          <xs:documentation>Cregagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 16">
        <xs:annotation>
          <xs:documentation>Wynchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 17">
        <xs:annotation>
          <xs:documentation>Newtownbreda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 18">
        <xs:annotation>
          <xs:documentation>Cairnshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 19">
        <xs:annotation>
          <xs:documentation>Knockbracken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 20">
        <xs:annotation>
          <xs:documentation>Carryduff West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 21">
        <xs:annotation>
          <xs:documentation>Carryduff East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 22">
        <xs:annotation>
          <xs:documentation>Beechill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Y 23">
        <xs:annotation>
          <xs:documentation>Minnowburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 01">
        <xs:annotation>
          <xs:documentation>Sydenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 02">
        <xs:annotation>
          <xs:documentation>Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 03">
        <xs:annotation>
          <xs:documentation>Ballymacarrett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 04">
        <xs:annotation>
          <xs:documentation>Bloomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 05">
        <xs:annotation>
          <xs:documentation>Ballyhackamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 06">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 07">
        <xs:annotation>
          <xs:documentation>Stormont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 08">
        <xs:annotation>
          <xs:documentation>Cherryvalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 09">
        <xs:annotation>
          <xs:documentation>Knock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 10">
        <xs:annotation>
          <xs:documentation>Orangefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 11">
        <xs:annotation>
          <xs:documentation>The Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 12">
        <xs:annotation>
          <xs:documentation>Woodstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 13">
        <xs:annotation>
          <xs:documentation>Ravenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 14">
        <xs:annotation>
          <xs:documentation>Ballynafeigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 15">
        <xs:annotation>
          <xs:documentation>Rosetta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 16">
        <xs:annotation>
          <xs:documentation>Upper Malone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 17">
        <xs:annotation>
          <xs:documentation>Finaghy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 18">
        <xs:annotation>
          <xs:documentation>Musgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 19">
        <xs:annotation>
          <xs:documentation>Blackstaff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 20">
        <xs:annotation>
          <xs:documentation>Malone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 21">
        <xs:annotation>
          <xs:documentation>Stranmillis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 22">
        <xs:annotation>
          <xs:documentation>Windsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 23">
        <xs:annotation>
          <xs:documentation>Botanic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 24">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 25">
        <xs:annotation>
          <xs:documentation>Ladybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 26">
        <xs:annotation>
          <xs:documentation>Glencolin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 27">
        <xs:annotation>
          <xs:documentation>Andersonstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 28">
        <xs:annotation>
          <xs:documentation>Glen Road</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 29">
        <xs:annotation>
          <xs:documentation>Falls Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 30">
        <xs:annotation>
          <xs:documentation>Upper Springfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 31">
        <xs:annotation>
          <xs:documentation>Whiterock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 32">
        <xs:annotation>
          <xs:documentation>Beechmount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 33">
        <xs:annotation>
          <xs:documentation>Highfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 34">
        <xs:annotation>
          <xs:documentation>Glencairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 35">
        <xs:annotation>
          <xs:documentation>Woodvale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 36">
        <xs:annotation>
          <xs:documentation>Crumlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 37">
        <xs:annotation>
          <xs:documentation>Shankill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 38">
        <xs:annotation>
          <xs:documentation>Clonard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 39">
        <xs:annotation>
          <xs:documentation>Falls</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 40">
        <xs:annotation>
          <xs:documentation>New Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 41">
        <xs:annotation>
          <xs:documentation>Duncairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 42">
        <xs:annotation>
          <xs:documentation>Water Works</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 43">
        <xs:annotation>
          <xs:documentation>Ardoyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 44">
        <xs:annotation>
          <xs:documentation>Legoniel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 45">
        <xs:annotation>
          <xs:documentation>Ballysillan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 46">
        <xs:annotation>
          <xs:documentation>Cliftonville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 47">
        <xs:annotation>
          <xs:documentation>Chichester Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 48">
        <xs:annotation>
          <xs:documentation>Fortwilliam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 49">
        <xs:annotation>
          <xs:documentation>Cavehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 50">
        <xs:annotation>
          <xs:documentation>Castleview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="95Z 51">
        <xs:annotation>
          <xs:documentation>Bellevue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSWardNameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Aldersgate" />
      <xs:enumeration value="Aldgate" />
      <xs:enumeration value="Bassishaw" />
      <xs:enumeration value="Billingsgate" />
      <xs:enumeration value="Bishopsgate" />
      <xs:enumeration value="Bread Street" />
      <xs:enumeration value="Bridge &amp; Bridge Without" />
      <xs:enumeration value="Broad Street" />
      <xs:enumeration value="Candlewick" />
      <xs:enumeration value="Castle Baynard" />
      <xs:enumeration value="Cheap" />
      <xs:enumeration value="Coleman Street" />
      <xs:enumeration value="Cordwainer" />
      <xs:enumeration value="Cornhill" />
      <xs:enumeration value="Cripplegate" />
      <xs:enumeration value="Dowgate" />
      <xs:enumeration value="Farringdon Within" />
      <xs:enumeration value="Farringdon Without" />
      <xs:enumeration value="Langbourn" />
      <xs:enumeration value="Lime Street" />
      <xs:enumeration value="Portsoken" />
      <xs:enumeration value="Queenhithe" />
      <xs:enumeration value="Tower" />
      <xs:enumeration value="Vintry" />
      <xs:enumeration value="Walbrook" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Alibon" />
      <xs:enumeration value="Becontree" />
      <xs:enumeration value="Chadwell Heath" />
      <xs:enumeration value="Eastbrook" />
      <xs:enumeration value="Eastbury" />
      <xs:enumeration value="Gascoigne" />
      <xs:enumeration value="Goresbrook" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Longbridge" />
      <xs:enumeration value="Mayesbrook" />
      <xs:enumeration value="Parsloes" />
      <xs:enumeration value="River" />
      <xs:enumeration value="Thames" />
      <xs:enumeration value="Valence" />
      <xs:enumeration value="Village" />
      <xs:enumeration value="Whalebone" />
      <xs:enumeration value="Brunswick Park" />
      <xs:enumeration value="Burnt Oak" />
      <xs:enumeration value="Childs Hill" />
      <xs:enumeration value="Colindale" />
      <xs:enumeration value="Coppetts" />
      <xs:enumeration value="East Barnet" />
      <xs:enumeration value="East Finchley" />
      <xs:enumeration value="Edgware" />
      <xs:enumeration value="Finchley Church End" />
      <xs:enumeration value="Garden Suburb" />
      <xs:enumeration value="Golders Green" />
      <xs:enumeration value="Hale" />
      <xs:enumeration value="Hendon" />
      <xs:enumeration value="High Barnet" />
      <xs:enumeration value="Mill Hill" />
      <xs:enumeration value="Oakleigh" />
      <xs:enumeration value="Totteridge" />
      <xs:enumeration value="Underhill" />
      <xs:enumeration value="West Finchley" />
      <xs:enumeration value="West Hendon" />
      <xs:enumeration value="Woodhouse" />
      <xs:enumeration value="Barnehurst" />
      <xs:enumeration value="Belvedere" />
      <xs:enumeration value="Blackfen and Lamorbey" />
      <xs:enumeration value="Blendon and Penhill" />
      <xs:enumeration value="Brampton" />
      <xs:enumeration value="Christchurch" />
      <xs:enumeration value="Colyers" />
      <xs:enumeration value="Crayford" />
      <xs:enumeration value="Cray Meadows" />
      <xs:enumeration value="Danson Park" />
      <xs:enumeration value="East Wickham" />
      <xs:enumeration value="Erith" />
      <xs:enumeration value="Falconwood and Welling" />
      <xs:enumeration value="Lesnes Abbey" />
      <xs:enumeration value="Longlands" />
      <xs:enumeration value="North End" />
      <xs:enumeration value="Northumberland Heath" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Sidcup" />
      <xs:enumeration value="Thamesmead East" />
      <xs:enumeration value="Alperton" />
      <xs:enumeration value="Barnhill" />
      <xs:enumeration value="Brondesbury Park" />
      <xs:enumeration value="Dollis Hill" />
      <xs:enumeration value="Dudden Hill" />
      <xs:enumeration value="Fryent" />
      <xs:enumeration value="Harlesden" />
      <xs:enumeration value="Kensal Green" />
      <xs:enumeration value="Kenton" />
      <xs:enumeration value="Kilburn" />
      <xs:enumeration value="Mapesbury" />
      <xs:enumeration value="Northwick Park" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Queens Park" />
      <xs:enumeration value="Queensbury" />
      <xs:enumeration value="Stonebridge" />
      <xs:enumeration value="Sudbury" />
      <xs:enumeration value="Tokyngton" />
      <xs:enumeration value="Welsh Harp" />
      <xs:enumeration value="Wembley Central" />
      <xs:enumeration value="Willesden Green" />
      <xs:enumeration value="Bickley" />
      <xs:enumeration value="Biggin Hill" />
      <xs:enumeration value="Bromley Common and Keston" />
      <xs:enumeration value="Bromley Town" />
      <xs:enumeration value="Chelsfield and Pratts Bottom" />
      <xs:enumeration value="Chislehurst" />
      <xs:enumeration value="Clock House" />
      <xs:enumeration value="Copers Cope" />
      <xs:enumeration value="Cray Valley East" />
      <xs:enumeration value="Cray Valley West" />
      <xs:enumeration value="Crystal Palace" />
      <xs:enumeration value="Darwin" />
      <xs:enumeration value="Farnborough and Crofton" />
      <xs:enumeration value="Hayes and Coney Hall" />
      <xs:enumeration value="Kelsey and Eden Park" />
      <xs:enumeration value="Mottingham and Chislehurst North" />
      <xs:enumeration value="Orpington" />
      <xs:enumeration value="Penge and Cator" />
      <xs:enumeration value="Petts Wood and Knoll" />
      <xs:enumeration value="Plaistow and Sundridge" />
      <xs:enumeration value="Shortlands" />
      <xs:enumeration value="West Wickham" />
      <xs:enumeration value="Belsize" />
      <xs:enumeration value="Bloomsbury" />
      <xs:enumeration value="Camden Town with Primrose Hill" />
      <xs:enumeration value="Cantelowes" />
      <xs:enumeration value="Fortune Green" />
      <xs:enumeration value="Frognal and Fitzjohns" />
      <xs:enumeration value="Gospel Oak" />
      <xs:enumeration value="Hampstead Town" />
      <xs:enumeration value="Haverstock" />
      <xs:enumeration value="Highgate" />
      <xs:enumeration value="Holborn and Covent Garden" />
      <xs:enumeration value="Kentish Town" />
      <xs:enumeration value="Kilburn" />
      <xs:enumeration value="King's Cross" />
      <xs:enumeration value="Regent's Park" />
      <xs:enumeration value="St Pancras and Somers Town" />
      <xs:enumeration value="Swiss Cottage" />
      <xs:enumeration value="West Hampstead" />
      <xs:enumeration value="Addiscombe" />
      <xs:enumeration value="Ashburton" />
      <xs:enumeration value="Bensham Manor" />
      <xs:enumeration value="Broad Green" />
      <xs:enumeration value="Coulsdon East" />
      <xs:enumeration value="Coulsdon West" />
      <xs:enumeration value="Croham" />
      <xs:enumeration value="Fairfield" />
      <xs:enumeration value="Fieldway" />
      <xs:enumeration value="Heathfield" />
      <xs:enumeration value="Kenley" />
      <xs:enumeration value="New Addington" />
      <xs:enumeration value="Norbury" />
      <xs:enumeration value="Purley" />
      <xs:enumeration value="Sanderstead" />
      <xs:enumeration value="Selhurst" />
      <xs:enumeration value="Selsdon and Ballards" />
      <xs:enumeration value="Shirley" />
      <xs:enumeration value="South Norwood" />
      <xs:enumeration value="Thornton Heath" />
      <xs:enumeration value="Upper Norwood" />
      <xs:enumeration value="Waddon" />
      <xs:enumeration value="West Thornton" />
      <xs:enumeration value="Woodside" />
      <xs:enumeration value="Acton Central" />
      <xs:enumeration value="Cleveland" />
      <xs:enumeration value="Dormers Wells" />
      <xs:enumeration value="Ealing Broadway" />
      <xs:enumeration value="Ealing Common" />
      <xs:enumeration value="East Acton" />
      <xs:enumeration value="Elthorne" />
      <xs:enumeration value="Greenford Broadway" />
      <xs:enumeration value="Greenford Green" />
      <xs:enumeration value="Hanger Hill" />
      <xs:enumeration value="Hobbayne" />
      <xs:enumeration value="Lady Margaret" />
      <xs:enumeration value="Northfield" />
      <xs:enumeration value="North Greenford" />
      <xs:enumeration value="Northolt Mandeville" />
      <xs:enumeration value="Northolt West End" />
      <xs:enumeration value="Norwood Green" />
      <xs:enumeration value="Perivale" />
      <xs:enumeration value="South Acton" />
      <xs:enumeration value="Southall Broadway" />
      <xs:enumeration value="Southall Green" />
      <xs:enumeration value="Southfield" />
      <xs:enumeration value="Walpole" />
      <xs:enumeration value="Bowes" />
      <xs:enumeration value="Bush Hill Park" />
      <xs:enumeration value="Chase" />
      <xs:enumeration value="Cockfosters" />
      <xs:enumeration value="Edmonton Green" />
      <xs:enumeration value="Enfield Highway" />
      <xs:enumeration value="Enfield Lock" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Haselbury" />
      <xs:enumeration value="Highlands" />
      <xs:enumeration value="Jubilee" />
      <xs:enumeration value="Lower Edmonton" />
      <xs:enumeration value="Palmers Green" />
      <xs:enumeration value="Ponders End" />
      <xs:enumeration value="Southbury" />
      <xs:enumeration value="Southgate" />
      <xs:enumeration value="Southgate Green" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Turkey Street" />
      <xs:enumeration value="Upper Edmonton" />
      <xs:enumeration value="Winchmore Hill" />
      <xs:enumeration value="Abbey Wood" />
      <xs:enumeration value="Blackheath Westcombe" />
      <xs:enumeration value="Charlton" />
      <xs:enumeration value="Coldharbour and New Eltham" />
      <xs:enumeration value="Eltham North" />
      <xs:enumeration value="Eltham South" />
      <xs:enumeration value="Eltham West" />
      <xs:enumeration value="Glyndon" />
      <xs:enumeration value="Greenwich West" />
      <xs:enumeration value="Kidbrooke with Hornfair" />
      <xs:enumeration value="Middle Park and Sutcliffe" />
      <xs:enumeration value="Peninsula" />
      <xs:enumeration value="Plumstead" />
      <xs:enumeration value="Shooters Hill" />
      <xs:enumeration value="Thamesmead Moorings" />
      <xs:enumeration value="Woolwich Common" />
      <xs:enumeration value="Woolwich Riverside" />
      <xs:enumeration value="Brownswood" />
      <xs:enumeration value="Cazenove" />
      <xs:enumeration value="Chatham" />
      <xs:enumeration value="Clissold" />
      <xs:enumeration value="Dalston" />
      <xs:enumeration value="De Beauvoir" />
      <xs:enumeration value="Hackney Central" />
      <xs:enumeration value="Hackney Downs" />
      <xs:enumeration value="Haggerston" />
      <xs:enumeration value="Hoxton" />
      <xs:enumeration value="King's Park" />
      <xs:enumeration value="Leabridge" />
      <xs:enumeration value="Lordship" />
      <xs:enumeration value="New River" />
      <xs:enumeration value="Queensbridge" />
      <xs:enumeration value="Springfield" />
      <xs:enumeration value="Stoke Newington Central" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Wick" />
      <xs:enumeration value="Addison" />
      <xs:enumeration value="Askew" />
      <xs:enumeration value="Avonmore and Brook Green" />
      <xs:enumeration value="College Park and Old Oak" />
      <xs:enumeration value="Fulham Broadway" />
      <xs:enumeration value="Fulham Reach" />
      <xs:enumeration value="Hammersmith Broadway" />
      <xs:enumeration value="Munster" />
      <xs:enumeration value="North End" />
      <xs:enumeration value="Palace Riverside" />
      <xs:enumeration value="Parsons Green and Walham" />
      <xs:enumeration value="Ravenscourt Park" />
      <xs:enumeration value="Sands End" />
      <xs:enumeration value="Shepherd's Bush Green" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Wormholt and White City" />
      <xs:enumeration value="Alexandra" />
      <xs:enumeration value="Bounds Green" />
      <xs:enumeration value="Bruce Grove" />
      <xs:enumeration value="Crouch End" />
      <xs:enumeration value="Fortis Green" />
      <xs:enumeration value="Harringay" />
      <xs:enumeration value="Highgate" />
      <xs:enumeration value="Hornsey" />
      <xs:enumeration value="Muswell Hill" />
      <xs:enumeration value="Noel Park" />
      <xs:enumeration value="Northumberland Park" />
      <xs:enumeration value="St Ann's" />
      <xs:enumeration value="Seven Sisters" />
      <xs:enumeration value="Stroud Green" />
      <xs:enumeration value="Tottenham Green" />
      <xs:enumeration value="Tottenham Hale" />
      <xs:enumeration value="West Green" />
      <xs:enumeration value="White Hart Lane" />
      <xs:enumeration value="Woodside" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Canons" />
      <xs:enumeration value="Edgware" />
      <xs:enumeration value="Greenhill" />
      <xs:enumeration value="Harrow on the Hill" />
      <xs:enumeration value="Harrow Weald" />
      <xs:enumeration value="Hatch End" />
      <xs:enumeration value="Headstone North" />
      <xs:enumeration value="Headstone South" />
      <xs:enumeration value="Kenton East" />
      <xs:enumeration value="Kenton West" />
      <xs:enumeration value="Marlborough" />
      <xs:enumeration value="Pinner" />
      <xs:enumeration value="Pinner South" />
      <xs:enumeration value="Queensbury" />
      <xs:enumeration value="Rayners Lane" />
      <xs:enumeration value="Roxbourne" />
      <xs:enumeration value="Roxeth" />
      <xs:enumeration value="Stanmore Park" />
      <xs:enumeration value="Wealdstone" />
      <xs:enumeration value="West Harrow" />
      <xs:enumeration value="Brooklands" />
      <xs:enumeration value="Cranham" />
      <xs:enumeration value="Elm Park" />
      <xs:enumeration value="Emerson Park" />
      <xs:enumeration value="Gooshays" />
      <xs:enumeration value="Hacton" />
      <xs:enumeration value="Harold Wood" />
      <xs:enumeration value="Havering Park" />
      <xs:enumeration value="Heaton" />
      <xs:enumeration value="Hylands" />
      <xs:enumeration value="Mawneys" />
      <xs:enumeration value="Pettits" />
      <xs:enumeration value="Rainham and Wennington" />
      <xs:enumeration value="Romford Town" />
      <xs:enumeration value="St Andrew's" />
      <xs:enumeration value="South Hornchurch" />
      <xs:enumeration value="Squirrel's Heath" />
      <xs:enumeration value="Upminster" />
      <xs:enumeration value="Barnhill" />
      <xs:enumeration value="Botwell" />
      <xs:enumeration value="Brunel" />
      <xs:enumeration value="Cavendish" />
      <xs:enumeration value="Charville" />
      <xs:enumeration value="Eastcote and East Ruislip" />
      <xs:enumeration value="Harefield" />
      <xs:enumeration value="Heathrow Villages" />
      <xs:enumeration value="Hillingdon East" />
      <xs:enumeration value="Ickenham" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Northwood" />
      <xs:enumeration value="Northwood Hills" />
      <xs:enumeration value="Pinkwell" />
      <xs:enumeration value="South Ruislip" />
      <xs:enumeration value="Townfield" />
      <xs:enumeration value="Uxbridge North" />
      <xs:enumeration value="Uxbridge South" />
      <xs:enumeration value="West Drayton" />
      <xs:enumeration value="West Ruislip" />
      <xs:enumeration value="Yeading" />
      <xs:enumeration value="Yiewsley" />
      <xs:enumeration value="Bedfont" />
      <xs:enumeration value="Brentford" />
      <xs:enumeration value="Chiswick Homefields" />
      <xs:enumeration value="Chiswick Riverside" />
      <xs:enumeration value="Cranford" />
      <xs:enumeration value="Feltham North" />
      <xs:enumeration value="Feltham West" />
      <xs:enumeration value="Hanworth" />
      <xs:enumeration value="Hanworth Park" />
      <xs:enumeration value="Heston Central" />
      <xs:enumeration value="Heston East" />
      <xs:enumeration value="Heston West" />
      <xs:enumeration value="Hounslow Central" />
      <xs:enumeration value="Hounslow Heath" />
      <xs:enumeration value="Hounslow South" />
      <xs:enumeration value="Hounslow West" />
      <xs:enumeration value="Isleworth" />
      <xs:enumeration value="Osterley and Spring Grove" />
      <xs:enumeration value="Syon" />
      <xs:enumeration value="Turnham Green" />
      <xs:enumeration value="Barnsbury" />
      <xs:enumeration value="Bunhill" />
      <xs:enumeration value="Caledonian" />
      <xs:enumeration value="Canonbury" />
      <xs:enumeration value="Clerkenwell" />
      <xs:enumeration value="Finsbury Park" />
      <xs:enumeration value="Highbury East" />
      <xs:enumeration value="Highbury West" />
      <xs:enumeration value="Hillrise" />
      <xs:enumeration value="Holloway" />
      <xs:enumeration value="Junction" />
      <xs:enumeration value="Mildmay" />
      <xs:enumeration value="St George's" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Tollington" />
      <xs:enumeration value="Abingdon" />
      <xs:enumeration value="Brompton" />
      <xs:enumeration value="Campden" />
      <xs:enumeration value="Colville" />
      <xs:enumeration value="Courtfield" />
      <xs:enumeration value="Cremorne" />
      <xs:enumeration value="Earl's Court" />
      <xs:enumeration value="Golborne" />
      <xs:enumeration value="Hans Town" />
      <xs:enumeration value="Holland" />
      <xs:enumeration value="Norland" />
      <xs:enumeration value="Notting Barns" />
      <xs:enumeration value="Pembridge" />
      <xs:enumeration value="Queen's Gate" />
      <xs:enumeration value="Redcliffe" />
      <xs:enumeration value="Royal Hospital" />
      <xs:enumeration value="St Charles" />
      <xs:enumeration value="Stanley" />
      <xs:enumeration value="Alexandra" />
      <xs:enumeration value="Berrylands" />
      <xs:enumeration value="Beverley" />
      <xs:enumeration value="Canbury" />
      <xs:enumeration value="Chessington North and Hook" />
      <xs:enumeration value="Chessington South" />
      <xs:enumeration value="Coombe Hill" />
      <xs:enumeration value="Coombe Vale" />
      <xs:enumeration value="Grove" />
      <xs:enumeration value="Norbiton" />
      <xs:enumeration value="Old Malden" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="St Mark's" />
      <xs:enumeration value="Surbiton Hill" />
      <xs:enumeration value="Tolworth and Hook Rise" />
      <xs:enumeration value="Tudor" />
      <xs:enumeration value="Bishop's" />
      <xs:enumeration value="Brixton Hill" />
      <xs:enumeration value="Clapham Common" />
      <xs:enumeration value="Clapham Town" />
      <xs:enumeration value="Coldharbour" />
      <xs:enumeration value="Ferndale" />
      <xs:enumeration value="Gipsy Hill" />
      <xs:enumeration value="Herne Hill" />
      <xs:enumeration value="Knight's Hill" />
      <xs:enumeration value="Larkhall" />
      <xs:enumeration value="Oval" />
      <xs:enumeration value="Prince's" />
      <xs:enumeration value="St Leonard's" />
      <xs:enumeration value="Stockwell" />
      <xs:enumeration value="Streatham Hill" />
      <xs:enumeration value="Streatham South" />
      <xs:enumeration value="Streatham Wells" />
      <xs:enumeration value="Thornton" />
      <xs:enumeration value="Thurlow Park" />
      <xs:enumeration value="Tulse Hill" />
      <xs:enumeration value="Vassall" />
      <xs:enumeration value="Bellingham" />
      <xs:enumeration value="Blackheath" />
      <xs:enumeration value="Brockley" />
      <xs:enumeration value="Catford South" />
      <xs:enumeration value="Crofton Park" />
      <xs:enumeration value="Downham" />
      <xs:enumeration value="Evelyn" />
      <xs:enumeration value="Forest Hill" />
      <xs:enumeration value="Grove Park" />
      <xs:enumeration value="Ladywell" />
      <xs:enumeration value="Lee Green" />
      <xs:enumeration value="Lewisham Central" />
      <xs:enumeration value="New Cross" />
      <xs:enumeration value="Perry Vale" />
      <xs:enumeration value="Rushey Green" />
      <xs:enumeration value="Sydenham" />
      <xs:enumeration value="Telegraph Hill" />
      <xs:enumeration value="Whitefoot" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Cannon Hill" />
      <xs:enumeration value="Colliers Wood" />
      <xs:enumeration value="Cricket Green" />
      <xs:enumeration value="Dundonald" />
      <xs:enumeration value="Figge's Marsh" />
      <xs:enumeration value="Graveney" />
      <xs:enumeration value="Hillside" />
      <xs:enumeration value="Lavender Fields" />
      <xs:enumeration value="Longthornton" />
      <xs:enumeration value="Lower Morden" />
      <xs:enumeration value="Merton Park" />
      <xs:enumeration value="Pollards Hill" />
      <xs:enumeration value="Ravensbury" />
      <xs:enumeration value="Raynes Park" />
      <xs:enumeration value="St Helier" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Village" />
      <xs:enumeration value="West Barnes" />
      <xs:enumeration value="Wimbledon Park" />
      <xs:enumeration value="Beckton" />
      <xs:enumeration value="Boleyn" />
      <xs:enumeration value="Canning Town North" />
      <xs:enumeration value="Canning Town South" />
      <xs:enumeration value="Custom House" />
      <xs:enumeration value="East Ham Central" />
      <xs:enumeration value="East Ham North" />
      <xs:enumeration value="East Ham South" />
      <xs:enumeration value="Forest Gate North" />
      <xs:enumeration value="Forest Gate South" />
      <xs:enumeration value="Green Street East" />
      <xs:enumeration value="Green Street West" />
      <xs:enumeration value="Little Ilford" />
      <xs:enumeration value="Manor Park" />
      <xs:enumeration value="Plaistow North" />
      <xs:enumeration value="Plaistow South" />
      <xs:enumeration value="Royal Docks" />
      <xs:enumeration value="Stratford and New Town" />
      <xs:enumeration value="Wall End" />
      <xs:enumeration value="West Ham" />
      <xs:enumeration value="Aldborough" />
      <xs:enumeration value="Barkingside" />
      <xs:enumeration value="Bridge" />
      <xs:enumeration value="Chadwell" />
      <xs:enumeration value="Church End" />
      <xs:enumeration value="Clayhall" />
      <xs:enumeration value="Clementswood" />
      <xs:enumeration value="Cranbrook" />
      <xs:enumeration value="Fairlop" />
      <xs:enumeration value="Fullwell" />
      <xs:enumeration value="Goodmayes" />
      <xs:enumeration value="Hainault" />
      <xs:enumeration value="Loxford" />
      <xs:enumeration value="Mayfield" />
      <xs:enumeration value="Monkhams" />
      <xs:enumeration value="Newbury" />
      <xs:enumeration value="Roding" />
      <xs:enumeration value="Seven Kings" />
      <xs:enumeration value="Snaresbrook" />
      <xs:enumeration value="Valentines" />
      <xs:enumeration value="Wanstead" />
      <xs:enumeration value="Barnes" />
      <xs:enumeration value="East Sheen" />
      <xs:enumeration value="Fulwell and Hampton Hill" />
      <xs:enumeration value="Ham, Petersham and Richmond Riverside" />
      <xs:enumeration value="Hampton" />
      <xs:enumeration value="Hampton North" />
      <xs:enumeration value="Hampton Wick" />
      <xs:enumeration value="Heathfield" />
      <xs:enumeration value="Kew" />
      <xs:enumeration value="Mortlake and Barnes Common" />
      <xs:enumeration value="North Richmond" />
      <xs:enumeration value="St Margarets and North Twickenham" />
      <xs:enumeration value="South Richmond" />
      <xs:enumeration value="South Twickenham" />
      <xs:enumeration value="Teddington" />
      <xs:enumeration value="Twickenham Riverside" />
      <xs:enumeration value="West Twickenham" />
      <xs:enumeration value="Whitton" />
      <xs:enumeration value="Brunswick Park" />
      <xs:enumeration value="Camberwell Green" />
      <xs:enumeration value="Cathedrals" />
      <xs:enumeration value="Chaucer" />
      <xs:enumeration value="College" />
      <xs:enumeration value="East Dulwich" />
      <xs:enumeration value="East Walworth" />
      <xs:enumeration value="Faraday" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Livesey" />
      <xs:enumeration value="Newington" />
      <xs:enumeration value="Nunhead" />
      <xs:enumeration value="Peckham" />
      <xs:enumeration value="Peckham Rye" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Rotherhithe" />
      <xs:enumeration value="South Bermondsey" />
      <xs:enumeration value="South Camberwell" />
      <xs:enumeration value="Surrey Docks" />
      <xs:enumeration value="The Lane" />
      <xs:enumeration value="Village" />
      <xs:enumeration value="Beddington North" />
      <xs:enumeration value="Beddington South" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Carshalton Central" />
      <xs:enumeration value="Carshalton South and Clockhouse" />
      <xs:enumeration value="Cheam" />
      <xs:enumeration value="Nonsuch" />
      <xs:enumeration value="St Helier" />
      <xs:enumeration value="Stonecot" />
      <xs:enumeration value="Sutton Central" />
      <xs:enumeration value="Sutton North" />
      <xs:enumeration value="Sutton South" />
      <xs:enumeration value="Sutton West" />
      <xs:enumeration value="The Wrythe" />
      <xs:enumeration value="Wallington North" />
      <xs:enumeration value="Wallington South" />
      <xs:enumeration value="Wandle Valley" />
      <xs:enumeration value="Worcester Park" />
      <xs:enumeration value="Bethnal Green North" />
      <xs:enumeration value="Bethnal Green South" />
      <xs:enumeration value="Blackwall and Cubitt Town" />
      <xs:enumeration value="Bow East" />
      <xs:enumeration value="Bow West" />
      <xs:enumeration value="Bromley-by-Bow" />
      <xs:enumeration value="East India and Lansbury" />
      <xs:enumeration value="Limehouse" />
      <xs:enumeration value="Mile End and Globe Town" />
      <xs:enumeration value="Mile End East" />
      <xs:enumeration value="Millwall" />
      <xs:enumeration value="St Dunstan's and Stepney Green" />
      <xs:enumeration value="St Katharine's and Wapping" />
      <xs:enumeration value="Shadwell" />
      <xs:enumeration value="Spitalfields and Banglatown" />
      <xs:enumeration value="Weavers" />
      <xs:enumeration value="Whitechapel" />
      <xs:enumeration value="Cann Hall" />
      <xs:enumeration value="Cathall" />
      <xs:enumeration value="Chapel End" />
      <xs:enumeration value="Chingford Green" />
      <xs:enumeration value="Endlebury" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Grove Green" />
      <xs:enumeration value="Hale End and Highams Park" />
      <xs:enumeration value="Hatch Lane" />
      <xs:enumeration value="High Street" />
      <xs:enumeration value="Higham Hill" />
      <xs:enumeration value="Hoe Street" />
      <xs:enumeration value="Larkswood" />
      <xs:enumeration value="Lea Bridge" />
      <xs:enumeration value="Leyton" />
      <xs:enumeration value="Leytonstone" />
      <xs:enumeration value="Markhouse" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="William Morris" />
      <xs:enumeration value="Wood Street" />
      <xs:enumeration value="Balham" />
      <xs:enumeration value="Bedford" />
      <xs:enumeration value="Earlsfield" />
      <xs:enumeration value="East Putney" />
      <xs:enumeration value="Fairfield" />
      <xs:enumeration value="Furzedown" />
      <xs:enumeration value="Graveney" />
      <xs:enumeration value="Latchmere" />
      <xs:enumeration value="Nightingale" />
      <xs:enumeration value="Northcote" />
      <xs:enumeration value="Queenstown" />
      <xs:enumeration value="Roehampton" />
      <xs:enumeration value="St Mary's Park" />
      <xs:enumeration value="Shaftesbury" />
      <xs:enumeration value="Southfields" />
      <xs:enumeration value="Thamesfield" />
      <xs:enumeration value="Tooting" />
      <xs:enumeration value="Wandsworth Common" />
      <xs:enumeration value="West Hill" />
      <xs:enumeration value="West Putney" />
      <xs:enumeration value="Abbey Road" />
      <xs:enumeration value="Bayswater" />
      <xs:enumeration value="Bryanston and Dorset Square" />
      <xs:enumeration value="Churchill" />
      <xs:enumeration value="Church Street" />
      <xs:enumeration value="Harrow Road" />
      <xs:enumeration value="Hyde Park" />
      <xs:enumeration value="Knightsbridge and Belgravia" />
      <xs:enumeration value="Lancaster Gate" />
      <xs:enumeration value="Little Venice" />
      <xs:enumeration value="Maida Vale" />
      <xs:enumeration value="Marylebone High Street" />
      <xs:enumeration value="Queen's Park" />
      <xs:enumeration value="Regent's Park" />
      <xs:enumeration value="St James's" />
      <xs:enumeration value="Tachbrook" />
      <xs:enumeration value="Vincent Square" />
      <xs:enumeration value="Warwick" />
      <xs:enumeration value="Westbourne" />
      <xs:enumeration value="West End" />
      <xs:enumeration value="Astley Bridge" />
      <xs:enumeration value="Bradshaw" />
      <xs:enumeration value="Breightmet" />
      <xs:enumeration value="Bromley Cross" />
      <xs:enumeration value="Crompton" />
      <xs:enumeration value="Farnworth" />
      <xs:enumeration value="Great Lever" />
      <xs:enumeration value="Halliwell" />
      <xs:enumeration value="Harper Green" />
      <xs:enumeration value="Heaton and Lostock" />
      <xs:enumeration value="Horwich and Blackrod" />
      <xs:enumeration value="Horwich North East" />
      <xs:enumeration value="Hulton" />
      <xs:enumeration value="Kearsley" />
      <xs:enumeration value="Little Lever and Darcy Lever" />
      <xs:enumeration value="Rumworth" />
      <xs:enumeration value="Smithills" />
      <xs:enumeration value="Tonge with the Haulgh" />
      <xs:enumeration value="Westhoughton North and Chew Moor" />
      <xs:enumeration value="Westhoughton South" />
      <xs:enumeration value="Besses" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="East" />
      <xs:enumeration value="Elton" />
      <xs:enumeration value="Holyrood" />
      <xs:enumeration value="Moorside" />
      <xs:enumeration value="North Manor" />
      <xs:enumeration value="Pilkington Park" />
      <xs:enumeration value="Radcliffe East" />
      <xs:enumeration value="Radcliffe North" />
      <xs:enumeration value="Radcliffe West" />
      <xs:enumeration value="Ramsbottom" />
      <xs:enumeration value="Redvales" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Sedgley" />
      <xs:enumeration value="Tottington" />
      <xs:enumeration value="Unsworth" />
      <xs:enumeration value="Ancoats and Clayton" />
      <xs:enumeration value="Ardwick" />
      <xs:enumeration value="Baguley" />
      <xs:enumeration value="Bradford" />
      <xs:enumeration value="Brooklands" />
      <xs:enumeration value="Burnage" />
      <xs:enumeration value="Charlestown" />
      <xs:enumeration value="Cheetham" />
      <xs:enumeration value="Chorlton" />
      <xs:enumeration value="Chorlton Park" />
      <xs:enumeration value="City Centre" />
      <xs:enumeration value="Crumpsall" />
      <xs:enumeration value="Didsbury East" />
      <xs:enumeration value="Didsbury West" />
      <xs:enumeration value="Fallowfield" />
      <xs:enumeration value="Gorton North" />
      <xs:enumeration value="Gorton South" />
      <xs:enumeration value="Harpurhey" />
      <xs:enumeration value="Higher Blackley" />
      <xs:enumeration value="Hulme" />
      <xs:enumeration value="Levenshulme" />
      <xs:enumeration value="Longsight" />
      <xs:enumeration value="Miles Platting and Newton Heath" />
      <xs:enumeration value="Moss Side" />
      <xs:enumeration value="Moston" />
      <xs:enumeration value="Northenden" />
      <xs:enumeration value="Old Moat" />
      <xs:enumeration value="Rusholme" />
      <xs:enumeration value="Sharston" />
      <xs:enumeration value="Whalley Range" />
      <xs:enumeration value="Withington" />
      <xs:enumeration value="Woodhouse Park" />
      <xs:enumeration value="Alexandra" />
      <xs:enumeration value="Chadderton Central" />
      <xs:enumeration value="Chadderton North" />
      <xs:enumeration value="Chadderton South" />
      <xs:enumeration value="Coldhurst" />
      <xs:enumeration value="Crompton" />
      <xs:enumeration value="Failsworth East" />
      <xs:enumeration value="Failsworth West" />
      <xs:enumeration value="Hollinwood" />
      <xs:enumeration value="Medlock Vale" />
      <xs:enumeration value="Royton North" />
      <xs:enumeration value="Royton South" />
      <xs:enumeration value="Saddleworth North" />
      <xs:enumeration value="Saddleworth South" />
      <xs:enumeration value="Saddleworth West and Lees" />
      <xs:enumeration value="St James'" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Shaw" />
      <xs:enumeration value="Waterhead" />
      <xs:enumeration value="Werneth" />
      <xs:enumeration value="Balderstone and Kirkholt" />
      <xs:enumeration value="Bamford" />
      <xs:enumeration value="Castleton" />
      <xs:enumeration value="Central Rochdale" />
      <xs:enumeration value="East Middleton" />
      <xs:enumeration value="Healey" />
      <xs:enumeration value="Hopwood Hall" />
      <xs:enumeration value="Kingsway" />
      <xs:enumeration value="Littleborough Lakeside" />
      <xs:enumeration value="Milkstone and Deeplish" />
      <xs:enumeration value="Milnrow and Newhey" />
      <xs:enumeration value="Norden" />
      <xs:enumeration value="North Heywood" />
      <xs:enumeration value="North Middleton" />
      <xs:enumeration value="Smallbridge and Firgrove" />
      <xs:enumeration value="South Middleton" />
      <xs:enumeration value="Spotland and Falinge" />
      <xs:enumeration value="Wardle and West Littleborough" />
      <xs:enumeration value="West Heywood" />
      <xs:enumeration value="West Middleton" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Boothstown and Ellenbrook" />
      <xs:enumeration value="Broughton" />
      <xs:enumeration value="Cadishead" />
      <xs:enumeration value="Claremont" />
      <xs:enumeration value="Eccles" />
      <xs:enumeration value="Irlam" />
      <xs:enumeration value="Irwell Riverside" />
      <xs:enumeration value="Kersal" />
      <xs:enumeration value="Langworthy" />
      <xs:enumeration value="Little Hulton" />
      <xs:enumeration value="Ordsall" />
      <xs:enumeration value="Pendlebury" />
      <xs:enumeration value="Swinton North" />
      <xs:enumeration value="Swinton South" />
      <xs:enumeration value="Walkden North" />
      <xs:enumeration value="Walkden South" />
      <xs:enumeration value="Weaste and Seedley" />
      <xs:enumeration value="Winton" />
      <xs:enumeration value="Worsley" />
      <xs:enumeration value="Bramhall North" />
      <xs:enumeration value="Bramhall South" />
      <xs:enumeration value="Bredbury and Woodley" />
      <xs:enumeration value="Bredbury Green and Romiley" />
      <xs:enumeration value="Brinnington and Central" />
      <xs:enumeration value="Cheadle and Gatley" />
      <xs:enumeration value="Cheadle Hulme North" />
      <xs:enumeration value="Cheadle Hulme South" />
      <xs:enumeration value="Davenport and Cale Green" />
      <xs:enumeration value="Edgeley and Cheadle Heath" />
      <xs:enumeration value="Hazel Grove" />
      <xs:enumeration value="Heald Green" />
      <xs:enumeration value="Heatons North" />
      <xs:enumeration value="Heatons South" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Marple North" />
      <xs:enumeration value="Marple South" />
      <xs:enumeration value="Offerton" />
      <xs:enumeration value="Reddish North" />
      <xs:enumeration value="Reddish South" />
      <xs:enumeration value="Stepping Hill" />
      <xs:enumeration value="Ashton Hurst" />
      <xs:enumeration value="Ashton St Michael's" />
      <xs:enumeration value="Ashton Waterloo" />
      <xs:enumeration value="Audenshaw" />
      <xs:enumeration value="Denton North East" />
      <xs:enumeration value="Denton South" />
      <xs:enumeration value="Denton West" />
      <xs:enumeration value="Droylsden East" />
      <xs:enumeration value="Droylsden West" />
      <xs:enumeration value="Dukinfield" />
      <xs:enumeration value="Dukinfield Stalybridge" />
      <xs:enumeration value="Hyde Godley" />
      <xs:enumeration value="Hyde Newton" />
      <xs:enumeration value="Hyde Werneth" />
      <xs:enumeration value="Longdendale" />
      <xs:enumeration value="Mossley" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Stalybridge North" />
      <xs:enumeration value="Stalybridge South" />
      <xs:enumeration value="Altrincham" />
      <xs:enumeration value="Ashton upon Mersey" />
      <xs:enumeration value="Bowdon" />
      <xs:enumeration value="Broadheath" />
      <xs:enumeration value="Brooklands" />
      <xs:enumeration value="Bucklow-St Martins" />
      <xs:enumeration value="Clifford" />
      <xs:enumeration value="Davyhulme East" />
      <xs:enumeration value="Davyhulme West" />
      <xs:enumeration value="Flixton" />
      <xs:enumeration value="Gorse Hill" />
      <xs:enumeration value="Hale Barns" />
      <xs:enumeration value="Hale Central" />
      <xs:enumeration value="Longford" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Sale Moor" />
      <xs:enumeration value="Stretford" />
      <xs:enumeration value="Timperley" />
      <xs:enumeration value="Urmston" />
      <xs:enumeration value="Village" />
      <xs:enumeration value="Abram" />
      <xs:enumeration value="Ashton" />
      <xs:enumeration value="Aspull New Springs Whelley" />
      <xs:enumeration value="Astley Mosley Common" />
      <xs:enumeration value="Atherleigh" />
      <xs:enumeration value="Atherton" />
      <xs:enumeration value="Bryn" />
      <xs:enumeration value="Douglas" />
      <xs:enumeration value="Golborne and Lowton West" />
      <xs:enumeration value="Hindley" />
      <xs:enumeration value="Hindley Green" />
      <xs:enumeration value="Ince" />
      <xs:enumeration value="Leigh East" />
      <xs:enumeration value="Leigh South" />
      <xs:enumeration value="Leigh West" />
      <xs:enumeration value="Lowton East" />
      <xs:enumeration value="Orrell" />
      <xs:enumeration value="Pemberton" />
      <xs:enumeration value="Shevington with Lower Ground" />
      <xs:enumeration value="Standish with Langtree" />
      <xs:enumeration value="Tyldesley" />
      <xs:enumeration value="Wigan Central" />
      <xs:enumeration value="Wigan West" />
      <xs:enumeration value="Winstanley" />
      <xs:enumeration value="Worsley Mesnes" />
      <xs:enumeration value="Cherryfield" />
      <xs:enumeration value="Halewood North" />
      <xs:enumeration value="Halewood South" />
      <xs:enumeration value="Halewood West" />
      <xs:enumeration value="Kirkby Central" />
      <xs:enumeration value="Longview" />
      <xs:enumeration value="Northwood" />
      <xs:enumeration value="Page Moss" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Prescot East" />
      <xs:enumeration value="Prescot West" />
      <xs:enumeration value="Roby" />
      <xs:enumeration value="St Bartholomews" />
      <xs:enumeration value="St Gabriels" />
      <xs:enumeration value="St Michaels" />
      <xs:enumeration value="Shevington" />
      <xs:enumeration value="Stockbridge" />
      <xs:enumeration value="Swanside" />
      <xs:enumeration value="Whiston North" />
      <xs:enumeration value="Whiston South" />
      <xs:enumeration value="Whitefield" />
      <xs:enumeration value="Allerton and Hunts Cross" />
      <xs:enumeration value="Anfield" />
      <xs:enumeration value="Belle Vale" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Childwall" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="Clubmoor" />
      <xs:enumeration value="County" />
      <xs:enumeration value="Cressington" />
      <xs:enumeration value="Croxteth" />
      <xs:enumeration value="Everton" />
      <xs:enumeration value="Fazakerley" />
      <xs:enumeration value="Greenbank" />
      <xs:enumeration value="Kensington and Fairfield" />
      <xs:enumeration value="Kirkdale" />
      <xs:enumeration value="Knotty Ash" />
      <xs:enumeration value="Mossley Hill" />
      <xs:enumeration value="Norris Green" />
      <xs:enumeration value="Old Swan" />
      <xs:enumeration value="Picton" />
      <xs:enumeration value="Princes Park" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Speke-Garston" />
      <xs:enumeration value="Tuebrook and Stoneycroft" />
      <xs:enumeration value="Warbreck" />
      <xs:enumeration value="Wavertree" />
      <xs:enumeration value="West Derby" />
      <xs:enumeration value="Woolton" />
      <xs:enumeration value="Yew Tree" />
      <xs:enumeration value="Billinge and Seneley Green" />
      <xs:enumeration value="Blackbrook" />
      <xs:enumeration value="Bold" />
      <xs:enumeration value="Earlestown" />
      <xs:enumeration value="Eccleston" />
      <xs:enumeration value="Haydock" />
      <xs:enumeration value="Moss Bank" />
      <xs:enumeration value="Newton" />
      <xs:enumeration value="Parr" />
      <xs:enumeration value="Rainford" />
      <xs:enumeration value="Rainhill" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Thatto Heath" />
      <xs:enumeration value="Town Centre" />
      <xs:enumeration value="West Park" />
      <xs:enumeration value="Windle" />
      <xs:enumeration value="Ainsdale" />
      <xs:enumeration value="Birkdale" />
      <xs:enumeration value="Blundellsands" />
      <xs:enumeration value="Cambridge" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="Derby" />
      <xs:enumeration value="Duke's" />
      <xs:enumeration value="Ford" />
      <xs:enumeration value="Harington" />
      <xs:enumeration value="Kew" />
      <xs:enumeration value="Linacre" />
      <xs:enumeration value="Litherland" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Meols" />
      <xs:enumeration value="Molyneux" />
      <xs:enumeration value="Netherton and Orrell" />
      <xs:enumeration value="Norwood" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Ravenmeols" />
      <xs:enumeration value="St Oswald" />
      <xs:enumeration value="Sudell" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Bebington" />
      <xs:enumeration value="Bidston and St James" />
      <xs:enumeration value="Birkenhead and Tranmere" />
      <xs:enumeration value="Bromborough" />
      <xs:enumeration value="Clatterbridge" />
      <xs:enumeration value="Claughton" />
      <xs:enumeration value="Eastham" />
      <xs:enumeration value="Greasby, Frankby and Irby" />
      <xs:enumeration value="Heswall" />
      <xs:enumeration value="Hoylake and Meols" />
      <xs:enumeration value="Leasowe and Moreton East" />
      <xs:enumeration value="Liscard" />
      <xs:enumeration value="Moreton West and Saughall Massie" />
      <xs:enumeration value="New Brighton" />
      <xs:enumeration value="Oxton" />
      <xs:enumeration value="Pensby and Thingwall" />
      <xs:enumeration value="Prenton" />
      <xs:enumeration value="Rock Ferry" />
      <xs:enumeration value="Seacombe" />
      <xs:enumeration value="Upton" />
      <xs:enumeration value="Wallasey" />
      <xs:enumeration value="West Kirby and Thurstaston" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Cudworth" />
      <xs:enumeration value="Darfield" />
      <xs:enumeration value="Darton East" />
      <xs:enumeration value="Darton West" />
      <xs:enumeration value="Dearne North" />
      <xs:enumeration value="Dearne South" />
      <xs:enumeration value="Dodworth" />
      <xs:enumeration value="Hoyland Milton" />
      <xs:enumeration value="Kingstone" />
      <xs:enumeration value="Monk Bretton" />
      <xs:enumeration value="North East" />
      <xs:enumeration value="Old Town" />
      <xs:enumeration value="Penistone East" />
      <xs:enumeration value="Penistone West" />
      <xs:enumeration value="Rockingham" />
      <xs:enumeration value="Royston" />
      <xs:enumeration value="St Helens" />
      <xs:enumeration value="Stairfoot" />
      <xs:enumeration value="Wombwell" />
      <xs:enumeration value="Worsbrough" />
      <xs:enumeration value="Adwick" />
      <xs:enumeration value="Armthorpe" />
      <xs:enumeration value="Askern Spa" />
      <xs:enumeration value="Balby" />
      <xs:enumeration value="Bentley" />
      <xs:enumeration value="Bessacarr and Cantley" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Conisbrough and Denaby" />
      <xs:enumeration value="Edenthorpe, Kirk Sandall and Barnby Dun" />
      <xs:enumeration value="Edlington and Warmsworth" />
      <xs:enumeration value="Finningley" />
      <xs:enumeration value="Great North Road" />
      <xs:enumeration value="Hatfield" />
      <xs:enumeration value="Mexborough" />
      <xs:enumeration value="Rossington" />
      <xs:enumeration value="Sprotbrough" />
      <xs:enumeration value="Stainforth and Moorends" />
      <xs:enumeration value="Thorne" />
      <xs:enumeration value="Torne Valley" />
      <xs:enumeration value="Town Moor" />
      <xs:enumeration value="Wheatley" />
      <xs:enumeration value="Anston and Woodsetts" />
      <xs:enumeration value="Boston Castle" />
      <xs:enumeration value="Brinsworth and Catcliffe" />
      <xs:enumeration value="Dinnington" />
      <xs:enumeration value="Hellaby" />
      <xs:enumeration value="Holderness" />
      <xs:enumeration value="Hoober" />
      <xs:enumeration value="Keppel" />
      <xs:enumeration value="Maltby" />
      <xs:enumeration value="Rawmarsh" />
      <xs:enumeration value="Rother Vale" />
      <xs:enumeration value="Rotherham East" />
      <xs:enumeration value="Rotherham West" />
      <xs:enumeration value="Silverwood" />
      <xs:enumeration value="Sitwell" />
      <xs:enumeration value="Swinton" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Wales" />
      <xs:enumeration value="Wath" />
      <xs:enumeration value="Wickersley" />
      <xs:enumeration value="Wingfield" />
      <xs:enumeration value="Arbourthorne" />
      <xs:enumeration value="Beauchief and Greenhill" />
      <xs:enumeration value="Beighton" />
      <xs:enumeration value="Birley" />
      <xs:enumeration value="Broomhill" />
      <xs:enumeration value="Burngreave" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Crookes" />
      <xs:enumeration value="Darnall" />
      <xs:enumeration value="Dore and Totley" />
      <xs:enumeration value="East Ecclesfield" />
      <xs:enumeration value="Ecclesall" />
      <xs:enumeration value="Firth Park" />
      <xs:enumeration value="Fulwood" />
      <xs:enumeration value="Gleadless Valley" />
      <xs:enumeration value="Graves Park" />
      <xs:enumeration value="Hillsborough" />
      <xs:enumeration value="Manor Castle" />
      <xs:enumeration value="Mosborough" />
      <xs:enumeration value="Nether Edge" />
      <xs:enumeration value="Richmond" />
      <xs:enumeration value="Shiregreen and Brightside" />
      <xs:enumeration value="Southey" />
      <xs:enumeration value="Stannington" />
      <xs:enumeration value="Stocksbridge and Upper Don" />
      <xs:enumeration value="Walkley" />
      <xs:enumeration value="West Ecclesfield" />
      <xs:enumeration value="Woodhouse" />
      <xs:enumeration value="Birtley" />
      <xs:enumeration value="Blaydon" />
      <xs:enumeration value="Bridges" />
      <xs:enumeration value="Chopwell and Rowlands Gill" />
      <xs:enumeration value="Chowdene" />
      <xs:enumeration value="Crawcrook and Greenside" />
      <xs:enumeration value="Deckham" />
      <xs:enumeration value="Dunston and Teams" />
      <xs:enumeration value="Dunston Hill and Whickham East" />
      <xs:enumeration value="Felling" />
      <xs:enumeration value="High Fell" />
      <xs:enumeration value="Lamesley" />
      <xs:enumeration value="Lobley Hill and Bensham" />
      <xs:enumeration value="Low Fell" />
      <xs:enumeration value="Pelaw and Heworth" />
      <xs:enumeration value="Ryton, Crookhill and Stella" />
      <xs:enumeration value="Saltwell" />
      <xs:enumeration value="Wardley and Leam Lane" />
      <xs:enumeration value="Whickham North" />
      <xs:enumeration value="Whickham South and Sunniside" />
      <xs:enumeration value="Windy Nook and Whitehills" />
      <xs:enumeration value="Winlaton and High Spen" />
      <xs:enumeration value="Benwell and Scotswood" />
      <xs:enumeration value="Blakelaw" />
      <xs:enumeration value="Byker" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Dene" />
      <xs:enumeration value="Denton" />
      <xs:enumeration value="East Gosforth" />
      <xs:enumeration value="Elswick" />
      <xs:enumeration value="Fawdon" />
      <xs:enumeration value="Fenham" />
      <xs:enumeration value="Kenton" />
      <xs:enumeration value="Lemington" />
      <xs:enumeration value="Newburn" />
      <xs:enumeration value="North Heaton" />
      <xs:enumeration value="North Jesmond" />
      <xs:enumeration value="Ouseburn" />
      <xs:enumeration value="Parklands" />
      <xs:enumeration value="South Heaton" />
      <xs:enumeration value="South Jesmond" />
      <xs:enumeration value="Walker" />
      <xs:enumeration value="Walkergate" />
      <xs:enumeration value="Westerhope" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="West Gosforth" />
      <xs:enumeration value="Wingrove" />
      <xs:enumeration value="Woolsington" />
      <xs:enumeration value="Battle Hill" />
      <xs:enumeration value="Benton" />
      <xs:enumeration value="Camperdown" />
      <xs:enumeration value="Chirton" />
      <xs:enumeration value="Collingwood" />
      <xs:enumeration value="Cullercoats" />
      <xs:enumeration value="Howdon" />
      <xs:enumeration value="Killingworth" />
      <xs:enumeration value="Longbenton" />
      <xs:enumeration value="Monkseaton North" />
      <xs:enumeration value="Monkseaton South" />
      <xs:enumeration value="Northumberland" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Tynemouth" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Wallsend" />
      <xs:enumeration value="Weetslade" />
      <xs:enumeration value="Whitley Bay" />
      <xs:enumeration value="Beacon and Bents" />
      <xs:enumeration value="Bede" />
      <xs:enumeration value="Biddick and All Saints" />
      <xs:enumeration value="Boldon Colliery" />
      <xs:enumeration value="Cleadon and East Boldon" />
      <xs:enumeration value="Cleadon Park" />
      <xs:enumeration value="Fellgate and Hedworth" />
      <xs:enumeration value="Harton" />
      <xs:enumeration value="Hebburn North" />
      <xs:enumeration value="Hebburn South" />
      <xs:enumeration value="Horsley Hill" />
      <xs:enumeration value="Monkton" />
      <xs:enumeration value="Primrose" />
      <xs:enumeration value="Simonside and Rekendyke" />
      <xs:enumeration value="Westoe" />
      <xs:enumeration value="West Park" />
      <xs:enumeration value="Whitburn and Marsden" />
      <xs:enumeration value="Whiteleas" />
      <xs:enumeration value="Barnes" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Copt Hill" />
      <xs:enumeration value="Doxford" />
      <xs:enumeration value="Fulwell" />
      <xs:enumeration value="Hendon" />
      <xs:enumeration value="Hetton" />
      <xs:enumeration value="Houghton" />
      <xs:enumeration value="Millfield" />
      <xs:enumeration value="Pallion" />
      <xs:enumeration value="Redhill" />
      <xs:enumeration value="Ryhope" />
      <xs:enumeration value="St Anne's" />
      <xs:enumeration value="St Chad's" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Sandhill" />
      <xs:enumeration value="Shiney Row" />
      <xs:enumeration value="Silksworth" />
      <xs:enumeration value="Southwick" />
      <xs:enumeration value="Washington Central" />
      <xs:enumeration value="Washington East" />
      <xs:enumeration value="Washington North" />
      <xs:enumeration value="Washington South" />
      <xs:enumeration value="Washington West" />
      <xs:enumeration value="Acocks Green" />
      <xs:enumeration value="Aston" />
      <xs:enumeration value="Bartley Green" />
      <xs:enumeration value="Billesley" />
      <xs:enumeration value="Bordesley Green" />
      <xs:enumeration value="Bournville" />
      <xs:enumeration value="Brandwood" />
      <xs:enumeration value="Edgbaston" />
      <xs:enumeration value="Erdington" />
      <xs:enumeration value="Hall Green" />
      <xs:enumeration value="Handsworth Wood" />
      <xs:enumeration value="Harborne" />
      <xs:enumeration value="Hodge Hill" />
      <xs:enumeration value="Kings Norton" />
      <xs:enumeration value="Kingstanding" />
      <xs:enumeration value="Ladywood" />
      <xs:enumeration value="Longbridge" />
      <xs:enumeration value="Lozells and East Handsworth" />
      <xs:enumeration value="Moseley and Kings Heath" />
      <xs:enumeration value="Nechells" />
      <xs:enumeration value="Northfield" />
      <xs:enumeration value="Oscott" />
      <xs:enumeration value="Perry Barr" />
      <xs:enumeration value="Quinton" />
      <xs:enumeration value="Selly Oak" />
      <xs:enumeration value="Shard End" />
      <xs:enumeration value="Sheldon" />
      <xs:enumeration value="Soho" />
      <xs:enumeration value="South Yardley" />
      <xs:enumeration value="Sparkbrook" />
      <xs:enumeration value="Springfield" />
      <xs:enumeration value="Stechford and Yardley North" />
      <xs:enumeration value="Stockland Green" />
      <xs:enumeration value="Sutton Four Oaks" />
      <xs:enumeration value="Sutton New Hall" />
      <xs:enumeration value="Sutton Trinity" />
      <xs:enumeration value="Sutton Vesey" />
      <xs:enumeration value="Tyburn" />
      <xs:enumeration value="Washwood Heath" />
      <xs:enumeration value="Weoley" />
      <xs:enumeration value="Bablake" />
      <xs:enumeration value="Binley and Willenhall" />
      <xs:enumeration value="Cheylesmore" />
      <xs:enumeration value="Earlsdon" />
      <xs:enumeration value="Foleshill" />
      <xs:enumeration value="Henley" />
      <xs:enumeration value="Holbrook" />
      <xs:enumeration value="Longford" />
      <xs:enumeration value="Lower Stoke" />
      <xs:enumeration value="Radford" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Sherbourne" />
      <xs:enumeration value="Upper Stoke" />
      <xs:enumeration value="Wainbody" />
      <xs:enumeration value="Westwood" />
      <xs:enumeration value="Whoberley" />
      <xs:enumeration value="Woodlands" />
      <xs:enumeration value="Wyken" />
      <xs:enumeration value="Amblecote" />
      <xs:enumeration value="Belle Vale" />
      <xs:enumeration value="Brierley Hill" />
      <xs:enumeration value="Brockmoor and Pensnett" />
      <xs:enumeration value="Castle and Priory" />
      <xs:enumeration value="Coseley East" />
      <xs:enumeration value="Cradley and Foxcote" />
      <xs:enumeration value="Gornal" />
      <xs:enumeration value="Halesowen North" />
      <xs:enumeration value="Halesowen South" />
      <xs:enumeration value="Hayley Green and Cradley South" />
      <xs:enumeration value="Kingswinford North and Wall Heath" />
      <xs:enumeration value="Kingswinford South" />
      <xs:enumeration value="Lye and Wollescote" />
      <xs:enumeration value="Netherton, Woodside and St Andrews" />
      <xs:enumeration value="Norton" />
      <xs:enumeration value="Pedmore and Stourbridge East" />
      <xs:enumeration value="Quarry Bank and Dudley Wood" />
      <xs:enumeration value="St James's" />
      <xs:enumeration value="St Thomas's" />
      <xs:enumeration value="Sedgley" />
      <xs:enumeration value="Upper Gornal and Woodsetton" />
      <xs:enumeration value="Wollaston and Stourbridge Town" />
      <xs:enumeration value="Wordsley" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Blackheath" />
      <xs:enumeration value="Bristnall" />
      <xs:enumeration value="Charlemont with Grove Vale" />
      <xs:enumeration value="Cradley Heath and Old Hill" />
      <xs:enumeration value="Friar Park" />
      <xs:enumeration value="Great Barr with Yew Tree" />
      <xs:enumeration value="Great Bridge" />
      <xs:enumeration value="Greets Green and Lyng" />
      <xs:enumeration value="Hateley Heath" />
      <xs:enumeration value="Langley" />
      <xs:enumeration value="Newton" />
      <xs:enumeration value="Old Warley" />
      <xs:enumeration value="Oldbury" />
      <xs:enumeration value="Princes End" />
      <xs:enumeration value="Rowley" />
      <xs:enumeration value="St Pauls" />
      <xs:enumeration value="Smethwick" />
      <xs:enumeration value="Soho and Victoria" />
      <xs:enumeration value="Tipton Green" />
      <xs:enumeration value="Tividale" />
      <xs:enumeration value="Wednesbury North" />
      <xs:enumeration value="Wednesbury South" />
      <xs:enumeration value="West Bromwich Central" />
      <xs:enumeration value="Bickenhill" />
      <xs:enumeration value="Blythe" />
      <xs:enumeration value="Castle Bromwich" />
      <xs:enumeration value="Chelmsley Wood" />
      <xs:enumeration value="Dorridge and Hockley Heath" />
      <xs:enumeration value="Elmdon" />
      <xs:enumeration value="Kingshurst and Fordbridge" />
      <xs:enumeration value="Knowle" />
      <xs:enumeration value="Lyndon" />
      <xs:enumeration value="Meriden" />
      <xs:enumeration value="Olton" />
      <xs:enumeration value="St Alphege" />
      <xs:enumeration value="Shirley East" />
      <xs:enumeration value="Shirley South" />
      <xs:enumeration value="Shirley West" />
      <xs:enumeration value="Silhill" />
      <xs:enumeration value="Smith's Wood" />
      <xs:enumeration value="Aldridge Central and South" />
      <xs:enumeration value="Aldridge North and Walsall Wood" />
      <xs:enumeration value="Bentley and Darlaston North" />
      <xs:enumeration value="Birchills Leamore" />
      <xs:enumeration value="Blakenall" />
      <xs:enumeration value="Bloxwich East" />
      <xs:enumeration value="Bloxwich West" />
      <xs:enumeration value="Brownhills" />
      <xs:enumeration value="Darlaston South" />
      <xs:enumeration value="Paddock" />
      <xs:enumeration value="Palfrey" />
      <xs:enumeration value="Pelsall" />
      <xs:enumeration value="Pheasey Park Farm" />
      <xs:enumeration value="Pleck" />
      <xs:enumeration value="Rushall-Shelfield" />
      <xs:enumeration value="St Matthew's" />
      <xs:enumeration value="Short Heath" />
      <xs:enumeration value="Streetly" />
      <xs:enumeration value="Willenhall North" />
      <xs:enumeration value="Willenhall South" />
      <xs:enumeration value="Bilston East" />
      <xs:enumeration value="Bilston North" />
      <xs:enumeration value="Blakenhall" />
      <xs:enumeration value="Bushbury North" />
      <xs:enumeration value="Bushbury South and Low Hill" />
      <xs:enumeration value="East Park" />
      <xs:enumeration value="Ettingshall" />
      <xs:enumeration value="Fallings Park" />
      <xs:enumeration value="Graiseley" />
      <xs:enumeration value="Heath Town" />
      <xs:enumeration value="Merry Hill" />
      <xs:enumeration value="Oxley" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Penn" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Spring Vale" />
      <xs:enumeration value="Tettenhall Regis" />
      <xs:enumeration value="Tettenhall Wightwick" />
      <xs:enumeration value="Wednesfield North" />
      <xs:enumeration value="Wednesfield South" />
      <xs:enumeration value="Baildon" />
      <xs:enumeration value="Bingley" />
      <xs:enumeration value="Bingley Rural" />
      <xs:enumeration value="Bolton and Undercliffe" />
      <xs:enumeration value="Bowling and Barkerend" />
      <xs:enumeration value="Bradford Moor" />
      <xs:enumeration value="City" />
      <xs:enumeration value="Clayton and Fairweather Green" />
      <xs:enumeration value="Craven" />
      <xs:enumeration value="Eccleshill" />
      <xs:enumeration value="Great Horton" />
      <xs:enumeration value="Heaton" />
      <xs:enumeration value="Idle and Thackley" />
      <xs:enumeration value="Ilkley" />
      <xs:enumeration value="Keighley Central" />
      <xs:enumeration value="Keighley East" />
      <xs:enumeration value="Keighley West" />
      <xs:enumeration value="Little Horton" />
      <xs:enumeration value="Manningham" />
      <xs:enumeration value="Queensbury" />
      <xs:enumeration value="Royds" />
      <xs:enumeration value="Shipley" />
      <xs:enumeration value="Thornton and Allerton" />
      <xs:enumeration value="Toller" />
      <xs:enumeration value="Tong" />
      <xs:enumeration value="Wharfedale" />
      <xs:enumeration value="Wibsey" />
      <xs:enumeration value="Windhill and Wrose" />
      <xs:enumeration value="Worth Valley" />
      <xs:enumeration value="Wyke" />
      <xs:enumeration value="Brighouse" />
      <xs:enumeration value="Calder" />
      <xs:enumeration value="Elland" />
      <xs:enumeration value="Greetland and Stainland" />
      <xs:enumeration value="Hipperholme and Lightcliffe" />
      <xs:enumeration value="Illingworth and Mixenden" />
      <xs:enumeration value="Luddendenfoot" />
      <xs:enumeration value="Northowram and Shelf" />
      <xs:enumeration value="Ovenden" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Rastrick" />
      <xs:enumeration value="Ryburn" />
      <xs:enumeration value="Skircoat" />
      <xs:enumeration value="Sowerby Bridge" />
      <xs:enumeration value="Todmorden" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Warley" />
      <xs:enumeration value="Almondbury" />
      <xs:enumeration value="Ashbrow" />
      <xs:enumeration value="Batley East" />
      <xs:enumeration value="Batley West" />
      <xs:enumeration value="Birstall and Birkenshaw" />
      <xs:enumeration value="Cleckheaton" />
      <xs:enumeration value="Colne Valley" />
      <xs:enumeration value="Crosland Moor and Netherton" />
      <xs:enumeration value="Dalton" />
      <xs:enumeration value="Denby Dale" />
      <xs:enumeration value="Dewsbury East" />
      <xs:enumeration value="Dewsbury South" />
      <xs:enumeration value="Dewsbury West" />
      <xs:enumeration value="Golcar" />
      <xs:enumeration value="Greenhead" />
      <xs:enumeration value="Heckmondwike" />
      <xs:enumeration value="Holme Valley North" />
      <xs:enumeration value="Holme Valley South" />
      <xs:enumeration value="Kirkburton" />
      <xs:enumeration value="Lindley" />
      <xs:enumeration value="Liversedge and Gomersal" />
      <xs:enumeration value="Mirfield" />
      <xs:enumeration value="Newsome" />
      <xs:enumeration value="Adel and Wharfedale" />
      <xs:enumeration value="Alwoodley" />
      <xs:enumeration value="Ardsley and Robin Hood" />
      <xs:enumeration value="Armley" />
      <xs:enumeration value="Beeston and Holbeck" />
      <xs:enumeration value="Bramley and Stanningley" />
      <xs:enumeration value="Burmantofts and Richmond Hill" />
      <xs:enumeration value="Calverley and Farsley" />
      <xs:enumeration value="Chapel Allerton" />
      <xs:enumeration value="City and Hunslet" />
      <xs:enumeration value="Cross Gates and Whinmoor" />
      <xs:enumeration value="Farnley and Wortley" />
      <xs:enumeration value="Garforth and Swillington" />
      <xs:enumeration value="Gipton and Harehills" />
      <xs:enumeration value="Guiseley and Rawdon" />
      <xs:enumeration value="Harewood" />
      <xs:enumeration value="Headingley" />
      <xs:enumeration value="Horsforth" />
      <xs:enumeration value="Hyde Park and Woodhouse" />
      <xs:enumeration value="Killingbeck and Seacroft" />
      <xs:enumeration value="Kippax and Methley" />
      <xs:enumeration value="Kirkstall" />
      <xs:enumeration value="Middleton Park" />
      <xs:enumeration value="Moortown" />
      <xs:enumeration value="Morley North" />
      <xs:enumeration value="Morley South" />
      <xs:enumeration value="Otley and Yeadon" />
      <xs:enumeration value="Pudsey" />
      <xs:enumeration value="Rothwell" />
      <xs:enumeration value="Roundhay" />
      <xs:enumeration value="Temple Newsam" />
      <xs:enumeration value="Weetwood" />
      <xs:enumeration value="Wetherby" />
      <xs:enumeration value="Ackworth, North Elmsall and Upton" />
      <xs:enumeration value="Airedale and Ferry Fryston" />
      <xs:enumeration value="Altofts and Whitwood" />
      <xs:enumeration value="Castleford Central and Glasshoughton" />
      <xs:enumeration value="Crofton, Ryhill and Walton" />
      <xs:enumeration value="Featherstone" />
      <xs:enumeration value="Hemsworth" />
      <xs:enumeration value="Horbury and South Ossett" />
      <xs:enumeration value="Knottingley" />
      <xs:enumeration value="Normanton" />
      <xs:enumeration value="Ossett" />
      <xs:enumeration value="Pontefract North" />
      <xs:enumeration value="Pontefract South" />
      <xs:enumeration value="South Elmsall and South Kirkby" />
      <xs:enumeration value="Stanley and Outwood East" />
      <xs:enumeration value="Wakefield East" />
      <xs:enumeration value="Wakefield North" />
      <xs:enumeration value="Wakefield Rural" />
      <xs:enumeration value="Wakefield South" />
      <xs:enumeration value="Wakefield West" />
      <xs:enumeration value="Wrenthorpe and Outwood West" />
      <xs:enumeration value="Brus" />
      <xs:enumeration value="Burn Valley" />
      <xs:enumeration value="Dyke House" />
      <xs:enumeration value="Elwick" />
      <xs:enumeration value="Fens" />
      <xs:enumeration value="Foggy Furze" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Greatham" />
      <xs:enumeration value="Hart" />
      <xs:enumeration value="Owton" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Rift House" />
      <xs:enumeration value="Rossmere" />
      <xs:enumeration value="St Hilda" />
      <xs:enumeration value="Seaton" />
      <xs:enumeration value="Stranton" />
      <xs:enumeration value="Throston" />
      <xs:enumeration value="Acklam" />
      <xs:enumeration value="Ayresome" />
      <xs:enumeration value="Beckfield" />
      <xs:enumeration value="Beechwood" />
      <xs:enumeration value="Brookfield" />
      <xs:enumeration value="Clairville" />
      <xs:enumeration value="Coulby Newham" />
      <xs:enumeration value="Gresham" />
      <xs:enumeration value="Hemlington" />
      <xs:enumeration value="Kader" />
      <xs:enumeration value="Ladgate" />
      <xs:enumeration value="Linthorpe" />
      <xs:enumeration value="North Ormesby and Brambles Farm" />
      <xs:enumeration value="Marton" />
      <xs:enumeration value="Marton West" />
      <xs:enumeration value="Middlehaven" />
      <xs:enumeration value="Nunthorpe" />
      <xs:enumeration value="Pallister" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Park End" />
      <xs:enumeration value="Stainton and Thornton" />
      <xs:enumeration value="Thorntree" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Brotton" />
      <xs:enumeration value="Coatham" />
      <xs:enumeration value="Dormanstown" />
      <xs:enumeration value="Eston" />
      <xs:enumeration value="Grangetown" />
      <xs:enumeration value="Guisborough" />
      <xs:enumeration value="Hutton" />
      <xs:enumeration value="Kirkleatham" />
      <xs:enumeration value="Lockwood" />
      <xs:enumeration value="Loftus" />
      <xs:enumeration value="Longbeck" />
      <xs:enumeration value="Newcomen" />
      <xs:enumeration value="Normanby" />
      <xs:enumeration value="Ormesby" />
      <xs:enumeration value="St Germain's" />
      <xs:enumeration value="Saltburn" />
      <xs:enumeration value="Skelton" />
      <xs:enumeration value="South Bank" />
      <xs:enumeration value="Teesville" />
      <xs:enumeration value="West Dyke" />
      <xs:enumeration value="Westworth" />
      <xs:enumeration value="Zetland" />
      <xs:enumeration value="Billingham Central" />
      <xs:enumeration value="Billingham East" />
      <xs:enumeration value="Billingham North" />
      <xs:enumeration value="Billingham South" />
      <xs:enumeration value="Billingham West" />
      <xs:enumeration value="Bishopsgarth and Elm Tree" />
      <xs:enumeration value="Eaglescliffe" />
      <xs:enumeration value="Fairfield" />
      <xs:enumeration value="Grangefield" />
      <xs:enumeration value="Hardwick" />
      <xs:enumeration value="Hartburn" />
      <xs:enumeration value="Ingleby Barwick East" />
      <xs:enumeration value="Ingleby Barwick West" />
      <xs:enumeration value="Mandale and Victoria" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="Northern Parishes" />
      <xs:enumeration value="Norton North" />
      <xs:enumeration value="Norton South" />
      <xs:enumeration value="Norton West" />
      <xs:enumeration value="Parkfield and Oxbridge" />
      <xs:enumeration value="Roseworth" />
      <xs:enumeration value="Stainsby Hill" />
      <xs:enumeration value="Stockton Town Centre" />
      <xs:enumeration value="Village" />
      <xs:enumeration value="Western Parishes" />
      <xs:enumeration value="Yarm" />
      <xs:enumeration value="Bank Top" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Cockerton East" />
      <xs:enumeration value="Cockerton West" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Eastbourne" />
      <xs:enumeration value="Faverdale" />
      <xs:enumeration value="Harrowgate Hill" />
      <xs:enumeration value="Haughton East" />
      <xs:enumeration value="Haughton North" />
      <xs:enumeration value="Haughton West" />
      <xs:enumeration value="Heighington and Coniscliffe" />
      <xs:enumeration value="Hummersknott" />
      <xs:enumeration value="Hurworth" />
      <xs:enumeration value="Lascelles" />
      <xs:enumeration value="Lingfield" />
      <xs:enumeration value="Middleton St George" />
      <xs:enumeration value="Mowden" />
      <xs:enumeration value="North Road" />
      <xs:enumeration value="Northgate" />
      <xs:enumeration value="Park East" />
      <xs:enumeration value="Park West" />
      <xs:enumeration value="Pierremont" />
      <xs:enumeration value="Sadberge and Whessoe" />
      <xs:enumeration value="Appleton" />
      <xs:enumeration value="Beechwood" />
      <xs:enumeration value="Birchfield" />
      <xs:enumeration value="Broadheath" />
      <xs:enumeration value="Castlefields" />
      <xs:enumeration value="Daresbury" />
      <xs:enumeration value="Ditton" />
      <xs:enumeration value="Farnworth" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Hale" />
      <xs:enumeration value="Halton Brook" />
      <xs:enumeration value="Halton Lea" />
      <xs:enumeration value="Halton View" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Hough Green" />
      <xs:enumeration value="Kingsway" />
      <xs:enumeration value="Mersey" />
      <xs:enumeration value="Norton North" />
      <xs:enumeration value="Norton South" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Windmill Hill" />
      <xs:enumeration value="Appleton" />
      <xs:enumeration value="Bewsey and Whitecross" />
      <xs:enumeration value="Birchwood" />
      <xs:enumeration value="Burtonwood and Winwick" />
      <xs:enumeration value="Culcheth, Glazebury and Croft" />
      <xs:enumeration value="Fairfield and Howley" />
      <xs:enumeration value="Grappenhall and Thelwall" />
      <xs:enumeration value="Great Sankey North" />
      <xs:enumeration value="Great Sankey South" />
      <xs:enumeration value="Hatton, Stretton and Walton" />
      <xs:enumeration value="Latchford East" />
      <xs:enumeration value="Latchford West" />
      <xs:enumeration value="Lymm" />
      <xs:enumeration value="Orford" />
      <xs:enumeration value="Penketh and Cuerdley" />
      <xs:enumeration value="Poplars and Hulme" />
      <xs:enumeration value="Poulton North" />
      <xs:enumeration value="Poulton South" />
      <xs:enumeration value="Rixton and Woolston" />
      <xs:enumeration value="Stockton Heath" />
      <xs:enumeration value="Westbrook" />
      <xs:enumeration value="Whittle Hall" />
      <xs:enumeration value="Audley" />
      <xs:enumeration value="Bastwell" />
      <xs:enumeration value="Beardwood with Lammack" />
      <xs:enumeration value="Corporation Park" />
      <xs:enumeration value="Earcroft" />
      <xs:enumeration value="East Rural" />
      <xs:enumeration value="Ewood" />
      <xs:enumeration value="Fernhurst" />
      <xs:enumeration value="Higher Croft" />
      <xs:enumeration value="Little Harwood" />
      <xs:enumeration value="Livesey with Pleasington" />
      <xs:enumeration value="Marsh House" />
      <xs:enumeration value="Meadowhead" />
      <xs:enumeration value="Mill Hill" />
      <xs:enumeration value="North Turton with Tockholes" />
      <xs:enumeration value="Queen's Park" />
      <xs:enumeration value="Roe Lee" />
      <xs:enumeration value="Shadsworth with Whitebirk" />
      <xs:enumeration value="Shear Brow" />
      <xs:enumeration value="Sudell" />
      <xs:enumeration value="Sunnyhurst" />
      <xs:enumeration value="Wensley Fold" />
      <xs:enumeration value="Whitehall" />
      <xs:enumeration value="Anchorsholme" />
      <xs:enumeration value="Bispham" />
      <xs:enumeration value="Bloomfield" />
      <xs:enumeration value="Brunswick" />
      <xs:enumeration value="Claremont" />
      <xs:enumeration value="Clifton" />
      <xs:enumeration value="Greenlands" />
      <xs:enumeration value="Hawes Side" />
      <xs:enumeration value="Highfield" />
      <xs:enumeration value="Ingthorpe" />
      <xs:enumeration value="Layton" />
      <xs:enumeration value="Marton" />
      <xs:enumeration value="Norbreck" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Squires Gate" />
      <xs:enumeration value="Stanley" />
      <xs:enumeration value="Talbot" />
      <xs:enumeration value="Tyldesley" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Warbreck" />
      <xs:enumeration value="Waterloo" />
      <xs:enumeration value="Avenue" />
      <xs:enumeration value="Beverley" />
      <xs:enumeration value="Boothferry" />
      <xs:enumeration value="Bransholme East" />
      <xs:enumeration value="Bransholme West" />
      <xs:enumeration value="Bricknell" />
      <xs:enumeration value="Derringham" />
      <xs:enumeration value="Drypool" />
      <xs:enumeration value="Holderness" />
      <xs:enumeration value="Ings" />
      <xs:enumeration value="Kings Park" />
      <xs:enumeration value="Longhill" />
      <xs:enumeration value="Marfleet" />
      <xs:enumeration value="Myton" />
      <xs:enumeration value="Newington" />
      <xs:enumeration value="Newland" />
      <xs:enumeration value="Orchard Park and Greenwood" />
      <xs:enumeration value="Pickering" />
      <xs:enumeration value="St Andrew's" />
      <xs:enumeration value="Southcoates East" />
      <xs:enumeration value="Southcoates West" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Beverley Rural" />
      <xs:enumeration value="Bridlington Central and Old Town" />
      <xs:enumeration value="Bridlington North" />
      <xs:enumeration value="Bridlington South" />
      <xs:enumeration value="Cottingham North" />
      <xs:enumeration value="Cottingham South" />
      <xs:enumeration value="Dale" />
      <xs:enumeration value="Driffield and Rural" />
      <xs:enumeration value="East Wolds and Coastal" />
      <xs:enumeration value="Goole North" />
      <xs:enumeration value="Goole South" />
      <xs:enumeration value="Hessle" />
      <xs:enumeration value="Howden" />
      <xs:enumeration value="Howdenshire" />
      <xs:enumeration value="Mid Holderness" />
      <xs:enumeration value="Minster and Woodmansey" />
      <xs:enumeration value="North Holderness" />
      <xs:enumeration value="Pocklington Provincial" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Snaith, Airmyn, Rawcliffe and Marshland" />
      <xs:enumeration value="South East Holderness" />
      <xs:enumeration value="South Hunsley" />
      <xs:enumeration value="South West Holderness" />
      <xs:enumeration value="Tranby" />
      <xs:enumeration value="Willerby and Kirk Ella" />
      <xs:enumeration value="Wolds Weighton" />
      <xs:enumeration value="Croft Baker" />
      <xs:enumeration value="East Marsh" />
      <xs:enumeration value="Freshney" />
      <xs:enumeration value="Haverstoe" />
      <xs:enumeration value="Heneage" />
      <xs:enumeration value="Humberston and New Waltham" />
      <xs:enumeration value="Immingham" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Scartho" />
      <xs:enumeration value="Sidney Sussex" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Waltham" />
      <xs:enumeration value="West Marsh" />
      <xs:enumeration value="Wolds" />
      <xs:enumeration value="Yarborough" />
      <xs:enumeration value="Ashby" />
      <xs:enumeration value="Axholme Central" />
      <xs:enumeration value="Axholme North" />
      <xs:enumeration value="Axholme South" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Bottesford" />
      <xs:enumeration value="Brigg and Wolds" />
      <xs:enumeration value="Broughton and Appleby" />
      <xs:enumeration value="Brumby" />
      <xs:enumeration value="Burringham and Gunness" />
      <xs:enumeration value="Burton upon Stather and Winterton" />
      <xs:enumeration value="Crosby and Park" />
      <xs:enumeration value="Ferry" />
      <xs:enumeration value="Frodingham" />
      <xs:enumeration value="Kingsway with Lincoln Gardens" />
      <xs:enumeration value="Ridge" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Acomb" />
      <xs:enumeration value="Bishopthorpe" />
      <xs:enumeration value="Clifton" />
      <xs:enumeration value="Derwent" />
      <xs:enumeration value="Dringhouses and Woodthorpe" />
      <xs:enumeration value="Fishergate" />
      <xs:enumeration value="Fulford" />
      <xs:enumeration value="Guildhall" />
      <xs:enumeration value="Haxby and Wigginton" />
      <xs:enumeration value="Heslington" />
      <xs:enumeration value="Heworth" />
      <xs:enumeration value="Heworth Without" />
      <xs:enumeration value="Holgate" />
      <xs:enumeration value="Hull Road" />
      <xs:enumeration value="Huntington and New Earswick" />
      <xs:enumeration value="Micklegate" />
      <xs:enumeration value="Osbaldwick" />
      <xs:enumeration value="Rural West York" />
      <xs:enumeration value="Skelton, Rawcliffe and Clifton Without" />
      <xs:enumeration value="Strensall" />
      <xs:enumeration value="Westfield" />
      <xs:enumeration value="Wheldrake" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Allestree" />
      <xs:enumeration value="Alvaston" />
      <xs:enumeration value="Arboretum" />
      <xs:enumeration value="Blagreaves" />
      <xs:enumeration value="Boulton" />
      <xs:enumeration value="Chaddesden" />
      <xs:enumeration value="Chellaston" />
      <xs:enumeration value="Darley" />
      <xs:enumeration value="Derwent" />
      <xs:enumeration value="Littleover" />
      <xs:enumeration value="Mackworth" />
      <xs:enumeration value="Mickleover" />
      <xs:enumeration value="Normanton" />
      <xs:enumeration value="Oakwood" />
      <xs:enumeration value="Sinfin" />
      <xs:enumeration value="Spondon" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Aylestone" />
      <xs:enumeration value="Beaumont Leys" />
      <xs:enumeration value="Belgrave" />
      <xs:enumeration value="Braunstone Park and Rowley Fields" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Charnwood" />
      <xs:enumeration value="Coleman" />
      <xs:enumeration value="Evington" />
      <xs:enumeration value="Eyres Monsell" />
      <xs:enumeration value="Fosse" />
      <xs:enumeration value="Freemen" />
      <xs:enumeration value="Humberstone and Hamilton" />
      <xs:enumeration value="Knighton" />
      <xs:enumeration value="Latimer" />
      <xs:enumeration value="New Parks" />
      <xs:enumeration value="Rushey Mead" />
      <xs:enumeration value="Spinney Hills" />
      <xs:enumeration value="Stoneygate" />
      <xs:enumeration value="Thurncourt" />
      <xs:enumeration value="Westcotes" />
      <xs:enumeration value="Western Park" />
      <xs:enumeration value="Braunston and Belton" />
      <xs:enumeration value="Cottesmore" />
      <xs:enumeration value="Exton" />
      <xs:enumeration value="Greetham" />
      <xs:enumeration value="Ketton" />
      <xs:enumeration value="Langham" />
      <xs:enumeration value="Lyddington" />
      <xs:enumeration value="Martinsthorpe" />
      <xs:enumeration value="Normanton" />
      <xs:enumeration value="Oakham North East" />
      <xs:enumeration value="Oakham North West" />
      <xs:enumeration value="Oakham South East" />
      <xs:enumeration value="Oakham South West" />
      <xs:enumeration value="Ryhall and Casterton" />
      <xs:enumeration value="Uppingham" />
      <xs:enumeration value="Whissendine" />
      <xs:enumeration value="Arboretum" />
      <xs:enumeration value="Aspley" />
      <xs:enumeration value="Basford" />
      <xs:enumeration value="Berridge" />
      <xs:enumeration value="Bestwood" />
      <xs:enumeration value="Bilborough" />
      <xs:enumeration value="Bridge" />
      <xs:enumeration value="Bulwell" />
      <xs:enumeration value="Bulwell Forest" />
      <xs:enumeration value="Clifton North" />
      <xs:enumeration value="Clifton South" />
      <xs:enumeration value="Dales" />
      <xs:enumeration value="Dunkirk and Lenton" />
      <xs:enumeration value="Leen Valley" />
      <xs:enumeration value="Mapperley" />
      <xs:enumeration value="Radford and Park" />
      <xs:enumeration value="St Ann's" />
      <xs:enumeration value="Sherwood" />
      <xs:enumeration value="Wollaton East and Lenton Abbey" />
      <xs:enumeration value="Wollaton West" />
      <xs:enumeration value="Aylestone" />
      <xs:enumeration value="Backbury" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Bircher" />
      <xs:enumeration value="Bringsty" />
      <xs:enumeration value="Bromyard" />
      <xs:enumeration value="Burghill, Holmer and Lyde" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Credenhill" />
      <xs:enumeration value="Frome" />
      <xs:enumeration value="Golden Cross with Weobley" />
      <xs:enumeration value="Golden Valley North" />
      <xs:enumeration value="Golden Valley South" />
      <xs:enumeration value="Hagley" />
      <xs:enumeration value="Hampton Court" />
      <xs:enumeration value="Hollington" />
      <xs:enumeration value="Hope End" />
      <xs:enumeration value="Kerne Bridge" />
      <xs:enumeration value="Kington Town" />
      <xs:enumeration value="Ledbury" />
      <xs:enumeration value="Leominster North" />
      <xs:enumeration value="Leominster South" />
      <xs:enumeration value="Llangarron" />
      <xs:enumeration value="Mortimer" />
      <xs:enumeration value="Old Gore" />
      <xs:enumeration value="Pembridge and Lyonshall with Titley" />
      <xs:enumeration value="Penyard" />
      <xs:enumeration value="Pontrilas" />
      <xs:enumeration value="Ross-on-Wye East" />
      <xs:enumeration value="Ross-on-Wye West" />
      <xs:enumeration value="St Martins and Hinton" />
      <xs:enumeration value="St Nicholas" />
      <xs:enumeration value="Stoney Street" />
      <xs:enumeration value="Sutton Walls" />
      <xs:enumeration value="Three Elms" />
      <xs:enumeration value="Tupsley" />
      <xs:enumeration value="Upton" />
      <xs:enumeration value="Valletts" />
      <xs:enumeration value="Wormsley Ridge" />
      <xs:enumeration value="Apley Castle" />
      <xs:enumeration value="Arleston" />
      <xs:enumeration value="Brookside" />
      <xs:enumeration value="Church Aston and Lilleshall" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Cuckoo Oak" />
      <xs:enumeration value="Dawley Magna" />
      <xs:enumeration value="Donnington" />
      <xs:enumeration value="Dothill" />
      <xs:enumeration value="Edgmond" />
      <xs:enumeration value="Ercall" />
      <xs:enumeration value="Ercall Magna" />
      <xs:enumeration value="Hadley and Leegomery" />
      <xs:enumeration value="Haygate" />
      <xs:enumeration value="Horsehay and Lightmoor" />
      <xs:enumeration value="Ironbridge Gorge" />
      <xs:enumeration value="Ketley and Oakengates" />
      <xs:enumeration value="Lawley and Overdale" />
      <xs:enumeration value="Madeley" />
      <xs:enumeration value="Malinslee" />
      <xs:enumeration value="Muxton" />
      <xs:enumeration value="Newport East" />
      <xs:enumeration value="Newport North" />
      <xs:enumeration value="Newport South" />
      <xs:enumeration value="Newport West" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Priorslee" />
      <xs:enumeration value="St Georges" />
      <xs:enumeration value="Shawbirch" />
      <xs:enumeration value="The Nedge" />
      <xs:enumeration value="Woodside" />
      <xs:enumeration value="Wrockwardine" />
      <xs:enumeration value="Wrockwardine Wood and Trench" />
      <xs:enumeration value="Abbey Green" />
      <xs:enumeration value="Bentilee and Townsend" />
      <xs:enumeration value="Berryhill and Hanley East" />
      <xs:enumeration value="Blurton" />
      <xs:enumeration value="Burslem North" />
      <xs:enumeration value="Burslem South" />
      <xs:enumeration value="Chell and Packmoor" />
      <xs:enumeration value="East Valley" />
      <xs:enumeration value="Fenton" />
      <xs:enumeration value="Hanley West and Shelton" />
      <xs:enumeration value="Hartshill and Penkhull" />
      <xs:enumeration value="Longton North" />
      <xs:enumeration value="Longton South" />
      <xs:enumeration value="Meir Park and Sandon" />
      <xs:enumeration value="Northwood and Birches Head" />
      <xs:enumeration value="Norton and Bradeley" />
      <xs:enumeration value="Stoke and Trent Vale" />
      <xs:enumeration value="Trentham and Hanford" />
      <xs:enumeration value="Tunstall" />
      <xs:enumeration value="Weston and Meir North" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Bathavon North" />
      <xs:enumeration value="Bathavon South" />
      <xs:enumeration value="Bathavon West" />
      <xs:enumeration value="Bathwick" />
      <xs:enumeration value="Chew Valley North" />
      <xs:enumeration value="Chew Valley South" />
      <xs:enumeration value="Clutton" />
      <xs:enumeration value="Combe Down" />
      <xs:enumeration value="Farmborough" />
      <xs:enumeration value="High Littleton" />
      <xs:enumeration value="Keynsham East" />
      <xs:enumeration value="Keynsham North" />
      <xs:enumeration value="Keynsham South" />
      <xs:enumeration value="Kingsmead" />
      <xs:enumeration value="Lambridge" />
      <xs:enumeration value="Lansdown" />
      <xs:enumeration value="Lyncombe" />
      <xs:enumeration value="Mendip" />
      <xs:enumeration value="Midsomer Norton North" />
      <xs:enumeration value="Midsomer Norton Redfield" />
      <xs:enumeration value="Newbridge" />
      <xs:enumeration value="Odd Down" />
      <xs:enumeration value="Oldfield" />
      <xs:enumeration value="Paulton" />
      <xs:enumeration value="Peasedown" />
      <xs:enumeration value="Publow and Whitchurch" />
      <xs:enumeration value="Radstock" />
      <xs:enumeration value="Saltford" />
      <xs:enumeration value="Southdown" />
      <xs:enumeration value="Timsbury" />
      <xs:enumeration value="Twerton" />
      <xs:enumeration value="Walcot" />
      <xs:enumeration value="Westfield" />
      <xs:enumeration value="Westmoreland" />
      <xs:enumeration value="Weston" />
      <xs:enumeration value="Widcombe" />
      <xs:enumeration value="Ashley" />
      <xs:enumeration value="Avonmouth" />
      <xs:enumeration value="Bedminster" />
      <xs:enumeration value="Bishopston" />
      <xs:enumeration value="Bishopsworth" />
      <xs:enumeration value="Brislington East" />
      <xs:enumeration value="Brislington West" />
      <xs:enumeration value="Cabot" />
      <xs:enumeration value="Clifton" />
      <xs:enumeration value="Clifton East" />
      <xs:enumeration value="Cotham" />
      <xs:enumeration value="Easton" />
      <xs:enumeration value="Eastville" />
      <xs:enumeration value="Filwood" />
      <xs:enumeration value="Frome Vale" />
      <xs:enumeration value="Hartcliffe" />
      <xs:enumeration value="Henbury" />
      <xs:enumeration value="Hengrove" />
      <xs:enumeration value="Henleaze" />
      <xs:enumeration value="Hillfields" />
      <xs:enumeration value="Horfield" />
      <xs:enumeration value="Kingsweston" />
      <xs:enumeration value="Knowle" />
      <xs:enumeration value="Lawrence Hill" />
      <xs:enumeration value="Lockleaze" />
      <xs:enumeration value="Redland" />
      <xs:enumeration value="St George East" />
      <xs:enumeration value="St George West" />
      <xs:enumeration value="Southmead" />
      <xs:enumeration value="Southville" />
      <xs:enumeration value="Stockwood" />
      <xs:enumeration value="Stoke Bishop" />
      <xs:enumeration value="Westbury-on-Trym" />
      <xs:enumeration value="Whitchurch Park" />
      <xs:enumeration value="Windmill Hill" />
      <xs:enumeration value="Backwell" />
      <xs:enumeration value="Banwell and Winscombe" />
      <xs:enumeration value="Blagdon and Churchill" />
      <xs:enumeration value="Clevedon Central" />
      <xs:enumeration value="Clevedon East" />
      <xs:enumeration value="Clevedon North" />
      <xs:enumeration value="Clevedon South" />
      <xs:enumeration value="Clevedon Walton" />
      <xs:enumeration value="Clevedon West" />
      <xs:enumeration value="Clevedon Yeo" />
      <xs:enumeration value="Congresbury" />
      <xs:enumeration value="Easton-in-Gordano" />
      <xs:enumeration value="Gordano" />
      <xs:enumeration value="Hutton and Locking" />
      <xs:enumeration value="Kewstoke" />
      <xs:enumeration value="Nailsea East" />
      <xs:enumeration value="Nailsea North and West" />
      <xs:enumeration value="Pill" />
      <xs:enumeration value="Portishead Central" />
      <xs:enumeration value="Portishead Coast" />
      <xs:enumeration value="Portishead East" />
      <xs:enumeration value="Portishead Redcliffe Bay" />
      <xs:enumeration value="Portishead South and North Weston" />
      <xs:enumeration value="Portishead West" />
      <xs:enumeration value="Weston-super-Mare Central" />
      <xs:enumeration value="Weston-super-Mare Clarence and Uphill" />
      <xs:enumeration value="Weston-super-Mare East" />
      <xs:enumeration value="Weston-super-Mare Milton and Old Worle" />
      <xs:enumeration value="Weston-super-Mare North Worle" />
      <xs:enumeration value="Weston-super-Mare South" />
      <xs:enumeration value="Weston-super-Mare South Worle" />
      <xs:enumeration value="Weston-super-Mare West" />
      <xs:enumeration value="Winford" />
      <xs:enumeration value="Wraxall and Long Ashton" />
      <xs:enumeration value="Wrington" />
      <xs:enumeration value="Yatton" />
      <xs:enumeration value="Almondsbury" />
      <xs:enumeration value="Alveston" />
      <xs:enumeration value="Bitton" />
      <xs:enumeration value="Boyd Valley" />
      <xs:enumeration value="Bradley Stoke Baileys Court" />
      <xs:enumeration value="Bradley Stoke Bowsland" />
      <xs:enumeration value="Bradley Stoke Sherbourne" />
      <xs:enumeration value="Charfield" />
      <xs:enumeration value="Chipping Sodbury" />
      <xs:enumeration value="Cotswold Edge" />
      <xs:enumeration value="Dodington" />
      <xs:enumeration value="Downend" />
      <xs:enumeration value="Filton" />
      <xs:enumeration value="Frampton Cotterell" />
      <xs:enumeration value="Hanham" />
      <xs:enumeration value="Kings Chase" />
      <xs:enumeration value="Ladden Brook" />
      <xs:enumeration value="Longwell Green" />
      <xs:enumeration value="Oldland Common" />
      <xs:enumeration value="Parkwall" />
      <xs:enumeration value="Patchway" />
      <xs:enumeration value="Pilning and Severn Beach" />
      <xs:enumeration value="Rodway" />
      <xs:enumeration value="Severn" />
      <xs:enumeration value="Siston" />
      <xs:enumeration value="Staple Hill" />
      <xs:enumeration value="Stoke Gifford" />
      <xs:enumeration value="Thornbury North" />
      <xs:enumeration value="Thornbury South" />
      <xs:enumeration value="Westerleigh" />
      <xs:enumeration value="Winterbourne" />
      <xs:enumeration value="Woodstock" />
      <xs:enumeration value="Yate Central" />
      <xs:enumeration value="Yate North" />
      <xs:enumeration value="Yate West" />
      <xs:enumeration value="Budshead" />
      <xs:enumeration value="Compton" />
      <xs:enumeration value="Devonport" />
      <xs:enumeration value="Drake" />
      <xs:enumeration value="Efford and Lipson" />
      <xs:enumeration value="Eggbuckland" />
      <xs:enumeration value="Ham" />
      <xs:enumeration value="Honicknowle" />
      <xs:enumeration value="Moor View" />
      <xs:enumeration value="Peverell" />
      <xs:enumeration value="Plympton Chaddlewood" />
      <xs:enumeration value="Plympton Erle" />
      <xs:enumeration value="Plympton St Mary" />
      <xs:enumeration value="Plymstock Dunstone" />
      <xs:enumeration value="Plymstock Radford" />
      <xs:enumeration value="St Budeaux" />
      <xs:enumeration value="St Peter and the Waterfront" />
      <xs:enumeration value="Southway" />
      <xs:enumeration value="Stoke" />
      <xs:enumeration value="Sutton and Mount Gould" />
      <xs:enumeration value="Berry Head-with-Furzeham" />
      <xs:enumeration value="Blatchcombe" />
      <xs:enumeration value="Churston-with-Galmpton" />
      <xs:enumeration value="Clifton-with-Maidenway" />
      <xs:enumeration value="Cockington-with-Chelston" />
      <xs:enumeration value="Ellacombe" />
      <xs:enumeration value="Goodrington-with-Roselands" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Roundham-with-Hyde" />
      <xs:enumeration value="St Marychurch" />
      <xs:enumeration value="St Mary's-with-Summercombe" />
      <xs:enumeration value="Shiphay-with-the-Willows" />
      <xs:enumeration value="Tormohun" />
      <xs:enumeration value="Watcombe" />
      <xs:enumeration value="Wellswood" />
      <xs:enumeration value="Boscombe East" />
      <xs:enumeration value="Boscombe West" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="East Cliff and Springbourne" />
      <xs:enumeration value="East Southbourne and Tuckton" />
      <xs:enumeration value="Kinson North" />
      <xs:enumeration value="Kinson South" />
      <xs:enumeration value="Littledown and Iford" />
      <xs:enumeration value="Moordown" />
      <xs:enumeration value="Queen's Park" />
      <xs:enumeration value="Redhill and Northbourne" />
      <xs:enumeration value="Strouden Park" />
      <xs:enumeration value="Talbot and Branksome Woods" />
      <xs:enumeration value="Throop and Muscliff" />
      <xs:enumeration value="Wallisdown and Winton West" />
      <xs:enumeration value="West Southbourne" />
      <xs:enumeration value="Westbourne and West Cliff" />
      <xs:enumeration value="Winton East" />
      <xs:enumeration value="Alderney" />
      <xs:enumeration value="Branksome East" />
      <xs:enumeration value="Branksome West" />
      <xs:enumeration value="Broadstone" />
      <xs:enumeration value="Canford Cliffs" />
      <xs:enumeration value="Canford Heath East" />
      <xs:enumeration value="Canford Heath West" />
      <xs:enumeration value="Creekmoor" />
      <xs:enumeration value="Hamworthy East" />
      <xs:enumeration value="Hamworthy West" />
      <xs:enumeration value="Merley and Bearwood" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="Oakdale" />
      <xs:enumeration value="Parkstone" />
      <xs:enumeration value="Penn Hill" />
      <xs:enumeration value="Poole Town" />
      <xs:enumeration value="Abbey Meads" />
      <xs:enumeration value="Blunsdon" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Covingham and Nythe" />
      <xs:enumeration value="Dorcan" />
      <xs:enumeration value="Eastcott" />
      <xs:enumeration value="Freshbrook and Grange Park" />
      <xs:enumeration value="Gorse Hill and Pinehurst" />
      <xs:enumeration value="Haydon Wick" />
      <xs:enumeration value="Highworth" />
      <xs:enumeration value="Moredon" />
      <xs:enumeration value="Old Town and Lawn" />
      <xs:enumeration value="Parks" />
      <xs:enumeration value="Penhill" />
      <xs:enumeration value="Ridgeway" />
      <xs:enumeration value="St Margaret" />
      <xs:enumeration value="St Philip" />
      <xs:enumeration value="Shaw and Nine Elms" />
      <xs:enumeration value="Toothill and Westlea" />
      <xs:enumeration value="Walcot" />
      <xs:enumeration value="Western" />
      <xs:enumeration value="Wroughton and Chiseldon" />
      <xs:enumeration value="Barnack" />
      <xs:enumeration value="Bretton North" />
      <xs:enumeration value="Bretton South" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Dogsthorpe" />
      <xs:enumeration value="East" />
      <xs:enumeration value="Eye and Thorney" />
      <xs:enumeration value="Fletton" />
      <xs:enumeration value="Glinton and Wittering" />
      <xs:enumeration value="Newborough" />
      <xs:enumeration value="North" />
      <xs:enumeration value="Northborough" />
      <xs:enumeration value="Orton Longueville" />
      <xs:enumeration value="Orton Waterville" />
      <xs:enumeration value="Orton with Hampton" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Paston" />
      <xs:enumeration value="Ravensthorpe" />
      <xs:enumeration value="Stanground Central" />
      <xs:enumeration value="Stanground East" />
      <xs:enumeration value="Walton" />
      <xs:enumeration value="Werrington North" />
      <xs:enumeration value="Werrington South" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Barnfield" />
      <xs:enumeration value="Biscot" />
      <xs:enumeration value="Bramingham" />
      <xs:enumeration value="Challney" />
      <xs:enumeration value="Crawley" />
      <xs:enumeration value="Dallow" />
      <xs:enumeration value="Farley" />
      <xs:enumeration value="High Town" />
      <xs:enumeration value="Icknield" />
      <xs:enumeration value="Leagrave" />
      <xs:enumeration value="Lewsey" />
      <xs:enumeration value="Limbury" />
      <xs:enumeration value="Northwell" />
      <xs:enumeration value="Round Green" />
      <xs:enumeration value="Saints" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Stopsley" />
      <xs:enumeration value="Sundon Park" />
      <xs:enumeration value="Wigmore" />
      <xs:enumeration value="Belfairs" />
      <xs:enumeration value="Blenheim Park" />
      <xs:enumeration value="Chalkwell" />
      <xs:enumeration value="Eastwood Park" />
      <xs:enumeration value="Kursaal" />
      <xs:enumeration value="Leigh" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Prittlewell" />
      <xs:enumeration value="St Laurence" />
      <xs:enumeration value="St. Luke's" />
      <xs:enumeration value="Shoeburyness" />
      <xs:enumeration value="Southchurch" />
      <xs:enumeration value="Thorpe" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Westborough" />
      <xs:enumeration value="West Leigh" />
      <xs:enumeration value="West Shoebury" />
      <xs:enumeration value="Aveley and Uplands" />
      <xs:enumeration value="Belhus" />
      <xs:enumeration value="Chadwell St Mary" />
      <xs:enumeration value="Chafford and North Stifford" />
      <xs:enumeration value="Corringham and Fobbing" />
      <xs:enumeration value="East Tilbury" />
      <xs:enumeration value="Grays Riverside" />
      <xs:enumeration value="Grays Thurrock" />
      <xs:enumeration value="Little Thurrock Blackshots" />
      <xs:enumeration value="Little Thurrock Rectory" />
      <xs:enumeration value="Ockendon" />
      <xs:enumeration value="Orsett" />
      <xs:enumeration value="South Chafford" />
      <xs:enumeration value="Stanford East and Corringham Town" />
      <xs:enumeration value="Stanford-le-Hope West" />
      <xs:enumeration value="Stifford Clays" />
      <xs:enumeration value="The Homesteads" />
      <xs:enumeration value="Tilbury Riverside and Thurrock Park" />
      <xs:enumeration value="Tilbury St Chads" />
      <xs:enumeration value="West Thurrock and South Stifford" />
      <xs:enumeration value="Chatham Central" />
      <xs:enumeration value="Cuxton and Halling" />
      <xs:enumeration value="Gillingham North" />
      <xs:enumeration value="Gillingham South" />
      <xs:enumeration value="Hempstead and Wigmore" />
      <xs:enumeration value="Lordswood and Capstone" />
      <xs:enumeration value="Luton and Wayfield" />
      <xs:enumeration value="Peninsula" />
      <xs:enumeration value="Princes Park" />
      <xs:enumeration value="Rainham Central" />
      <xs:enumeration value="Rainham North" />
      <xs:enumeration value="Rainham South" />
      <xs:enumeration value="River" />
      <xs:enumeration value="Rochester East" />
      <xs:enumeration value="Rochester South and Horsted" />
      <xs:enumeration value="Rochester West" />
      <xs:enumeration value="Strood North" />
      <xs:enumeration value="Strood Rural" />
      <xs:enumeration value="Strood South" />
      <xs:enumeration value="Twydall" />
      <xs:enumeration value="Walderslade" />
      <xs:enumeration value="Watling" />
      <xs:enumeration value="Ascot" />
      <xs:enumeration value="Binfield with Warfield" />
      <xs:enumeration value="Bullbrook" />
      <xs:enumeration value="Central Sandhurst" />
      <xs:enumeration value="College Town" />
      <xs:enumeration value="Crown Wood" />
      <xs:enumeration value="Crowthorne" />
      <xs:enumeration value="Great Hollands North" />
      <xs:enumeration value="Great Hollands South" />
      <xs:enumeration value="Hanworth" />
      <xs:enumeration value="Harmans Water" />
      <xs:enumeration value="Little Sandhurst and Wellington" />
      <xs:enumeration value="Old Bracknell" />
      <xs:enumeration value="Owlsmoor" />
      <xs:enumeration value="Priestwood and Garth" />
      <xs:enumeration value="Warfield Harvest Ride" />
      <xs:enumeration value="Wildridings and Central" />
      <xs:enumeration value="Winkfield and Cranbourne" />
      <xs:enumeration value="Aldermaston" />
      <xs:enumeration value="Basildon" />
      <xs:enumeration value="Birch Copse" />
      <xs:enumeration value="Bucklebury" />
      <xs:enumeration value="Burghfield" />
      <xs:enumeration value="Calcot" />
      <xs:enumeration value="Chieveley" />
      <xs:enumeration value="Clay Hill" />
      <xs:enumeration value="Cold Ash" />
      <xs:enumeration value="Compton" />
      <xs:enumeration value="Downlands" />
      <xs:enumeration value="Falkland" />
      <xs:enumeration value="Greenham" />
      <xs:enumeration value="Hungerford" />
      <xs:enumeration value="Kintbury" />
      <xs:enumeration value="Lambourn Valley" />
      <xs:enumeration value="Mortimer" />
      <xs:enumeration value="Northcroft" />
      <xs:enumeration value="Pangbourne" />
      <xs:enumeration value="Purley on Thames" />
      <xs:enumeration value="St Johns" />
      <xs:enumeration value="Speen" />
      <xs:enumeration value="Sulhamstead" />
      <xs:enumeration value="Thatcham Central" />
      <xs:enumeration value="Thatcham North" />
      <xs:enumeration value="Thatcham South and Crookham" />
      <xs:enumeration value="Thatcham West" />
      <xs:enumeration value="Theale" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Westwood" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Battle" />
      <xs:enumeration value="Caversham" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="Katesgrove" />
      <xs:enumeration value="Kentwood" />
      <xs:enumeration value="Mapledurham" />
      <xs:enumeration value="Minster" />
      <xs:enumeration value="Norcot" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Peppard" />
      <xs:enumeration value="Redlands" />
      <xs:enumeration value="Southcote" />
      <xs:enumeration value="Thames" />
      <xs:enumeration value="Tilehurst" />
      <xs:enumeration value="Whitley" />
      <xs:enumeration value="Baylis and Stoke" />
      <xs:enumeration value="Britwell" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Chalvey" />
      <xs:enumeration value="Cippenham Green" />
      <xs:enumeration value="Cippenham Meadows" />
      <xs:enumeration value="Colnbrook with Poyle" />
      <xs:enumeration value="Farnham" />
      <xs:enumeration value="Foxborough" />
      <xs:enumeration value="Haymill" />
      <xs:enumeration value="Kedermister" />
      <xs:enumeration value="Langley St Mary's" />
      <xs:enumeration value="Upton" />
      <xs:enumeration value="Wexham Lea" />
      <xs:enumeration value="Ascot and Cheapside" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Bisham and Cookham" />
      <xs:enumeration value="Boyn Hill" />
      <xs:enumeration value="Bray" />
      <xs:enumeration value="Castle Without" />
      <xs:enumeration value="Clewer East" />
      <xs:enumeration value="Clewer North" />
      <xs:enumeration value="Clewer South" />
      <xs:enumeration value="Cox Green" />
      <xs:enumeration value="Datchet" />
      <xs:enumeration value="Eton and Castle" />
      <xs:enumeration value="Eton Wick" />
      <xs:enumeration value="Furze Platt" />
      <xs:enumeration value="Horton and Wraysbury" />
      <xs:enumeration value="Hurley and Walthams" />
      <xs:enumeration value="Maidenhead Riverside" />
      <xs:enumeration value="Old Windsor" />
      <xs:enumeration value="Oldfield" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Pinkneys Green" />
      <xs:enumeration value="Sunningdale" />
      <xs:enumeration value="Sunninghill and South Ascot" />
      <xs:enumeration value="Arborfield" />
      <xs:enumeration value="Barkham" />
      <xs:enumeration value="Bulmershe and Whitegates" />
      <xs:enumeration value="Charvil" />
      <xs:enumeration value="Coronation" />
      <xs:enumeration value="Emmbrook" />
      <xs:enumeration value="Evendons" />
      <xs:enumeration value="Finchampstead North" />
      <xs:enumeration value="Finchampstead South" />
      <xs:enumeration value="Hawkedon" />
      <xs:enumeration value="Hillside" />
      <xs:enumeration value="Hurst" />
      <xs:enumeration value="Loddon" />
      <xs:enumeration value="Maiden Erlegh" />
      <xs:enumeration value="Norreys" />
      <xs:enumeration value="Remenham, Wargrave and Ruscombe" />
      <xs:enumeration value="Shinfield North" />
      <xs:enumeration value="Shinfield South" />
      <xs:enumeration value="Sonning" />
      <xs:enumeration value="South Lake" />
      <xs:enumeration value="Swallowfield" />
      <xs:enumeration value="Twyford" />
      <xs:enumeration value="Wescott" />
      <xs:enumeration value="Winnersh" />
      <xs:enumeration value="Wokingham Without" />
      <xs:enumeration value="Bletchley and Fenny Stratford" />
      <xs:enumeration value="Bradwell" />
      <xs:enumeration value="Campbell Park" />
      <xs:enumeration value="Danesborough" />
      <xs:enumeration value="Denbigh" />
      <xs:enumeration value="Eaton Manor" />
      <xs:enumeration value="Emerson Valley" />
      <xs:enumeration value="Furzton" />
      <xs:enumeration value="Hanslope Park" />
      <xs:enumeration value="Linford North" />
      <xs:enumeration value="Linford South" />
      <xs:enumeration value="Loughton Park" />
      <xs:enumeration value="Middleton" />
      <xs:enumeration value="Newport Pagnell North" />
      <xs:enumeration value="Newport Pagnell South" />
      <xs:enumeration value="Olney" />
      <xs:enumeration value="Sherington" />
      <xs:enumeration value="Stantonbury" />
      <xs:enumeration value="Stony Stratford" />
      <xs:enumeration value="Walton Park" />
      <xs:enumeration value="Whaddon" />
      <xs:enumeration value="Wolverton" />
      <xs:enumeration value="Woughton" />
      <xs:enumeration value="Brunswick and Adelaide" />
      <xs:enumeration value="Central Hove" />
      <xs:enumeration value="East Brighton" />
      <xs:enumeration value="Goldsmid" />
      <xs:enumeration value="Hangleton and Knoll" />
      <xs:enumeration value="Hanover and Elm Grove" />
      <xs:enumeration value="Hollingbury and Stanmer" />
      <xs:enumeration value="Moulsecoomb and Bevendean" />
      <xs:enumeration value="North Portslade" />
      <xs:enumeration value="Patcham" />
      <xs:enumeration value="Preston Park" />
      <xs:enumeration value="Queen's Park" />
      <xs:enumeration value="Regency" />
      <xs:enumeration value="Rottingdean Coastal" />
      <xs:enumeration value="St. Peter's and North Laine" />
      <xs:enumeration value="South Portslade" />
      <xs:enumeration value="Stanford" />
      <xs:enumeration value="Westbourne" />
      <xs:enumeration value="Wish" />
      <xs:enumeration value="Withdean" />
      <xs:enumeration value="Woodingdean" />
      <xs:enumeration value="Baffins" />
      <xs:enumeration value="Central Southsea" />
      <xs:enumeration value="Charles Dickens" />
      <xs:enumeration value="Copnor" />
      <xs:enumeration value="Cosham" />
      <xs:enumeration value="Drayton and Farlington" />
      <xs:enumeration value="Eastney and Craneswater" />
      <xs:enumeration value="Fratton" />
      <xs:enumeration value="Hilsea" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Nelson" />
      <xs:enumeration value="Paulsgrove" />
      <xs:enumeration value="St Jude" />
      <xs:enumeration value="St Thomas" />
      <xs:enumeration value="Bargate" />
      <xs:enumeration value="Bassett" />
      <xs:enumeration value="Bevois" />
      <xs:enumeration value="Bitterne" />
      <xs:enumeration value="Bitterne Park" />
      <xs:enumeration value="Coxford" />
      <xs:enumeration value="Freemantle" />
      <xs:enumeration value="Harefield" />
      <xs:enumeration value="Millbrook" />
      <xs:enumeration value="Peartree" />
      <xs:enumeration value="Portswood" />
      <xs:enumeration value="Redbridge" />
      <xs:enumeration value="Shirley" />
      <xs:enumeration value="Sholing" />
      <xs:enumeration value="Swaythling" />
      <xs:enumeration value="Woolston" />
      <xs:enumeration value="Ashey" />
      <xs:enumeration value="Bembridge North" />
      <xs:enumeration value="Bembridge South" />
      <xs:enumeration value="Binstead" />
      <xs:enumeration value="Brading and St Helens" />
      <xs:enumeration value="Brighstone and Calbourne" />
      <xs:enumeration value="Carisbrooke East" />
      <xs:enumeration value="Carisbrooke West" />
      <xs:enumeration value="Central Rural" />
      <xs:enumeration value="Chale, Niton and Whitwell" />
      <xs:enumeration value="Cowes Castle East" />
      <xs:enumeration value="Cowes Castle West" />
      <xs:enumeration value="Cowes Central" />
      <xs:enumeration value="Cowes Medina" />
      <xs:enumeration value="East Cowes North" />
      <xs:enumeration value="East Cowes South" />
      <xs:enumeration value="Fairlee" />
      <xs:enumeration value="Freshwater Afton" />
      <xs:enumeration value="Freshwater Norton" />
      <xs:enumeration value="Gurnard" />
      <xs:enumeration value="Lake North" />
      <xs:enumeration value="Lake South" />
      <xs:enumeration value="Mount Joy" />
      <xs:enumeration value="Newchurch" />
      <xs:enumeration value="Newport North" />
      <xs:enumeration value="Newport South" />
      <xs:enumeration value="Northwood" />
      <xs:enumeration value="Osborne" />
      <xs:enumeration value="Pan" />
      <xs:enumeration value="Parkhurst" />
      <xs:enumeration value="Ryde North East" />
      <xs:enumeration value="Ryde North West" />
      <xs:enumeration value="Ryde South East" />
      <xs:enumeration value="Ryde South West" />
      <xs:enumeration value="St Johns East" />
      <xs:enumeration value="St Johns West" />
      <xs:enumeration value="Sandown North" />
      <xs:enumeration value="Sandown South" />
      <xs:enumeration value="Seaview and Nettlestone" />
      <xs:enumeration value="Shalfleet and Yarmouth" />
      <xs:enumeration value="Shanklin Central" />
      <xs:enumeration value="Shanklin North" />
      <xs:enumeration value="Shanklin South" />
      <xs:enumeration value="Totland" />
      <xs:enumeration value="Ventnor East" />
      <xs:enumeration value="Ventnor West" />
      <xs:enumeration value="Wootton" />
      <xs:enumeration value="Wroxall and Godshill" />
      <xs:enumeration value="Aberffraw" />
      <xs:enumeration value="Amlwch Port" />
      <xs:enumeration value="Amlwch Rural" />
      <xs:enumeration value="Beaumaris" />
      <xs:enumeration value="Bodffordd" />
      <xs:enumeration value="Bodorgan" />
      <xs:enumeration value="Braint" />
      <xs:enumeration value="Bryngwran" />
      <xs:enumeration value="Brynteg" />
      <xs:enumeration value="Cadnant" />
      <xs:enumeration value="Cefni" />
      <xs:enumeration value="Cwm Cadnant" />
      <xs:enumeration value="Cyngar" />
      <xs:enumeration value="Gwyngyll" />
      <xs:enumeration value="Holyhead Town" />
      <xs:enumeration value="Kingsland" />
      <xs:enumeration value="Llanbadrig" />
      <xs:enumeration value="Llanbedrgoch" />
      <xs:enumeration value="Llanddyfnan" />
      <xs:enumeration value="Llaneilian" />
      <xs:enumeration value="Llanfaethlu" />
      <xs:enumeration value="Llanfair-yn-Neubwll" />
      <xs:enumeration value="Llanfihangel Ysgeifiog" />
      <xs:enumeration value="Llangoed" />
      <xs:enumeration value="Llanidan" />
      <xs:enumeration value="Llannerch-y-medd" />
      <xs:enumeration value="London Road" />
      <xs:enumeration value="Maeshyfryd" />
      <xs:enumeration value="Mechell" />
      <xs:enumeration value="Moelfre" />
      <xs:enumeration value="Morawelon" />
      <xs:enumeration value="Parc a'r Mynydd" />
      <xs:enumeration value="Pentraeth" />
      <xs:enumeration value="Porthyfelin" />
      <xs:enumeration value="Rhosneigr" />
      <xs:enumeration value="Rhosyr" />
      <xs:enumeration value="Trearddur" />
      <xs:enumeration value="Tudur" />
      <xs:enumeration value="Tysilio" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Aberdaron" />
      <xs:enumeration value="Aberdovey" />
      <xs:enumeration value="Abererch" />
      <xs:enumeration value="Abermaw" />
      <xs:enumeration value="Abersoch" />
      <xs:enumeration value="Arllechwedd" />
      <xs:enumeration value="Bala" />
      <xs:enumeration value="Bethel" />
      <xs:enumeration value="Bontnewydd" />
      <xs:enumeration value="Botwnnog" />
      <xs:enumeration value="Bowydd and Rhiw" />
      <xs:enumeration value="Brithdir and Llanfachreth/Ganllwyd/Llanelltyd" />
      <xs:enumeration value="Bryn-crug/Llanfihangel" />
      <xs:enumeration value="Cadnant" />
      <xs:enumeration value="Clynnog" />
      <xs:enumeration value="Corris/Mawddwy" />
      <xs:enumeration value="Criccieth" />
      <xs:enumeration value="Cwm-y-Glo" />
      <xs:enumeration value="Deiniol" />
      <xs:enumeration value="Deiniolen" />
      <xs:enumeration value="Dewi" />
      <xs:enumeration value="Diffwys and Maenofferen" />
      <xs:enumeration value="Dolbenmaen" />
      <xs:enumeration value="Dolgellau North" />
      <xs:enumeration value="Dolgellau South" />
      <xs:enumeration value="Dyffryn Ardudwy" />
      <xs:enumeration value="Efail-newydd/Buan" />
      <xs:enumeration value="Garth" />
      <xs:enumeration value="Gerlan" />
      <xs:enumeration value="Glyder" />
      <xs:enumeration value="Groeslon" />
      <xs:enumeration value="Harlech" />
      <xs:enumeration value="Hendre" />
      <xs:enumeration value="Hirael" />
      <xs:enumeration value="Llanaelhaearn" />
      <xs:enumeration value="Llanbedr" />
      <xs:enumeration value="Llanbedrog" />
      <xs:enumeration value="Llanberis" />
      <xs:enumeration value="Llandderfel" />
      <xs:enumeration value="Llanengan" />
      <xs:enumeration value="Llangelynin" />
      <xs:enumeration value="Llanllyfni" />
      <xs:enumeration value="Llanrug" />
      <xs:enumeration value="Llanuwchllyn" />
      <xs:enumeration value="Llanwnda" />
      <xs:enumeration value="Llanystumdwy" />
      <xs:enumeration value="Marchog" />
      <xs:enumeration value="Menai (Bangor)" />
      <xs:enumeration value="Menai (Caernarfon)" />
      <xs:enumeration value="Morfa Nefyn" />
      <xs:enumeration value="Nefyn" />
      <xs:enumeration value="Ogwen" />
      <xs:enumeration value="Peblig (Caernarfon)" />
      <xs:enumeration value="Penisarwaun" />
      <xs:enumeration value="Penrhyndeudraeth" />
      <xs:enumeration value="Pentir" />
      <xs:enumeration value="Penygroes" />
      <xs:enumeration value="Porthmadog East" />
      <xs:enumeration value="Porthmadog West" />
      <xs:enumeration value="Porthmadog-Tremadog" />
      <xs:enumeration value="Pwllheli North" />
      <xs:enumeration value="Pwllheli South" />
      <xs:enumeration value="Seiont" />
      <xs:enumeration value="Talysarn" />
      <xs:enumeration value="Teigl" />
      <xs:enumeration value="Trawsfynydd" />
      <xs:enumeration value="Tregarth &amp; Mynydd Llandygai" />
      <xs:enumeration value="Tudweiliog" />
      <xs:enumeration value="Tywyn" />
      <xs:enumeration value="Waunfawr" />
      <xs:enumeration value="Y Felinheli" />
      <xs:enumeration value="Abergele Pensarn" />
      <xs:enumeration value="Betws-y-Coed" />
      <xs:enumeration value="Betws yn Rhos" />
      <xs:enumeration value="Bryn" />
      <xs:enumeration value="Caerhun" />
      <xs:enumeration value="Capelulo" />
      <xs:enumeration value="Colwyn" />
      <xs:enumeration value="Conwy" />
      <xs:enumeration value="Craig-y-Don" />
      <xs:enumeration value="Crwst" />
      <xs:enumeration value="Deganwy" />
      <xs:enumeration value="Eglwysbach" />
      <xs:enumeration value="Eirias" />
      <xs:enumeration value="Gele" />
      <xs:enumeration value="Glyn" />
      <xs:enumeration value="Gogarth" />
      <xs:enumeration value="Gower" />
      <xs:enumeration value="Kinmel Bay" />
      <xs:enumeration value="Llanddulas" />
      <xs:enumeration value="Llandrillo yn Rhos" />
      <xs:enumeration value="Llangernyw" />
      <xs:enumeration value="Llansanffraid" />
      <xs:enumeration value="Llansannan" />
      <xs:enumeration value="Llysfaen" />
      <xs:enumeration value="Marl" />
      <xs:enumeration value="Mochdre" />
      <xs:enumeration value="Mostyn" />
      <xs:enumeration value="Pandy" />
      <xs:enumeration value="Pant-yr-afon/Penmaenan" />
      <xs:enumeration value="Penrhyn" />
      <xs:enumeration value="Pensarn" />
      <xs:enumeration value="Pentre Mawr" />
      <xs:enumeration value="Rhiw" />
      <xs:enumeration value="Towyn" />
      <xs:enumeration value="Trefriw" />
      <xs:enumeration value="Tudno" />
      <xs:enumeration value="Uwch Conwy" />
      <xs:enumeration value="Uwchaled" />
      <xs:enumeration value="Bodelwyddan" />
      <xs:enumeration value="Corwen" />
      <xs:enumeration value="Denbigh Central" />
      <xs:enumeration value="Denbigh Lower" />
      <xs:enumeration value="Denbigh Upper/Henllan" />
      <xs:enumeration value="Dyserth" />
      <xs:enumeration value="Efenechtyd" />
      <xs:enumeration value="Llanarmon-yn-Ial/Llandegla" />
      <xs:enumeration value="Llanbedr Dyffryn Clwyd/Llangynhafal" />
      <xs:enumeration value="Llandrillo" />
      <xs:enumeration value="Llandyrnog" />
      <xs:enumeration value="Llanfair Dyffryn Clwyd/Gwyddelwern" />
      <xs:enumeration value="Llangollen" />
      <xs:enumeration value="Llanrhaeadr-yng-Nghinmeirch" />
      <xs:enumeration value="Prestatyn Central" />
      <xs:enumeration value="Prestatyn East" />
      <xs:enumeration value="Prestatyn Meliden" />
      <xs:enumeration value="Prestatyn North" />
      <xs:enumeration value="Prestatyn South West" />
      <xs:enumeration value="Rhuddlan" />
      <xs:enumeration value="Rhyl East" />
      <xs:enumeration value="Rhyl South" />
      <xs:enumeration value="Rhyl South East" />
      <xs:enumeration value="Rhyl South West" />
      <xs:enumeration value="Rhyl West" />
      <xs:enumeration value="Ruthin" />
      <xs:enumeration value="St. Asaph East" />
      <xs:enumeration value="St. Asaph West" />
      <xs:enumeration value="Trefnant" />
      <xs:enumeration value="Tremeirchion" />
      <xs:enumeration value="Argoed" />
      <xs:enumeration value="Aston" />
      <xs:enumeration value="Bagillt East" />
      <xs:enumeration value="Bagillt West" />
      <xs:enumeration value="Broughton North East" />
      <xs:enumeration value="Broughton South" />
      <xs:enumeration value="Brynford" />
      <xs:enumeration value="Buckley Bistre East" />
      <xs:enumeration value="Buckley Bistre West" />
      <xs:enumeration value="Buckley Mountain" />
      <xs:enumeration value="Buckley Pentrobin" />
      <xs:enumeration value="Caergwrle" />
      <xs:enumeration value="Caerwys" />
      <xs:enumeration value="Cilcain" />
      <xs:enumeration value="Connah's Quay Central" />
      <xs:enumeration value="Connah's Quay Golftyn" />
      <xs:enumeration value="Connah's Quay South" />
      <xs:enumeration value="Connah's Quay Wepre" />
      <xs:enumeration value="Ewloe" />
      <xs:enumeration value="Ffynnongroyw" />
      <xs:enumeration value="Flint Castle" />
      <xs:enumeration value="Flint Coleshill" />
      <xs:enumeration value="Flint Oakenholt" />
      <xs:enumeration value="Flint Trelawny" />
      <xs:enumeration value="Greenfield" />
      <xs:enumeration value="Gronant" />
      <xs:enumeration value="Gwernaffield" />
      <xs:enumeration value="Gwernymynydd" />
      <xs:enumeration value="Halkyn" />
      <xs:enumeration value="Hawarden" />
      <xs:enumeration value="Higher Kinnerton" />
      <xs:enumeration value="Holywell Central" />
      <xs:enumeration value="Holywell East" />
      <xs:enumeration value="Holywell West" />
      <xs:enumeration value="Hope" />
      <xs:enumeration value="Leeswood" />
      <xs:enumeration value="Llanfynydd" />
      <xs:enumeration value="Mancot" />
      <xs:enumeration value="Mold Broncoed" />
      <xs:enumeration value="Mold East" />
      <xs:enumeration value="Mold South" />
      <xs:enumeration value="Mold West" />
      <xs:enumeration value="Mostyn" />
      <xs:enumeration value="New Brighton" />
      <xs:enumeration value="Northop" />
      <xs:enumeration value="Northop Hall" />
      <xs:enumeration value="Penyffordd" />
      <xs:enumeration value="Queensferry" />
      <xs:enumeration value="Saltney Mold Junction" />
      <xs:enumeration value="Saltney Stonebridge" />
      <xs:enumeration value="Sealand" />
      <xs:enumeration value="Shotton East" />
      <xs:enumeration value="Shotton Higher" />
      <xs:enumeration value="Shotton West" />
      <xs:enumeration value="Trelawnyd and Gwaenysgor" />
      <xs:enumeration value="Treuddyn" />
      <xs:enumeration value="Whitford" />
      <xs:enumeration value="Acton" />
      <xs:enumeration value="Borras Park" />
      <xs:enumeration value="Bronington" />
      <xs:enumeration value="Brymbo" />
      <xs:enumeration value="Brynyffynnon" />
      <xs:enumeration value="Bryn Cefn" />
      <xs:enumeration value="Cartrefle" />
      <xs:enumeration value="Cefn" />
      <xs:enumeration value="Dyffryn Ceiriog/Ceiriog Valley" />
      <xs:enumeration value="Chirk North" />
      <xs:enumeration value="Chirk South" />
      <xs:enumeration value="Coedpoeth" />
      <xs:enumeration value="Erddig" />
      <xs:enumeration value="Esclusham" />
      <xs:enumeration value="Garden Village" />
      <xs:enumeration value="Gresford East and West" />
      <xs:enumeration value="Grosvenor" />
      <xs:enumeration value="Gwenfro" />
      <xs:enumeration value="Gwersyllt East and South" />
      <xs:enumeration value="Gwersyllt North" />
      <xs:enumeration value="Gwersyllt West" />
      <xs:enumeration value="Hermitage" />
      <xs:enumeration value="Holt" />
      <xs:enumeration value="Johnstown" />
      <xs:enumeration value="Little Acton" />
      <xs:enumeration value="Llangollen Rural" />
      <xs:enumeration value="Llay" />
      <xs:enumeration value="Maesydre" />
      <xs:enumeration value="Marchwiel" />
      <xs:enumeration value="Marford and Hoseley" />
      <xs:enumeration value="Minera" />
      <xs:enumeration value="New Broughton" />
      <xs:enumeration value="Offa" />
      <xs:enumeration value="Overton" />
      <xs:enumeration value="Pant" />
      <xs:enumeration value="Penycae" />
      <xs:enumeration value="Penycae and Ruabon South" />
      <xs:enumeration value="Plas Madoc" />
      <xs:enumeration value="Ponciau" />
      <xs:enumeration value="Queensway" />
      <xs:enumeration value="Rhosnesni" />
      <xs:enumeration value="Rossett" />
      <xs:enumeration value="Ruabon" />
      <xs:enumeration value="Smithfield" />
      <xs:enumeration value="Stansty" />
      <xs:enumeration value="Whitegate" />
      <xs:enumeration value="Wynnstay" />
      <xs:enumeration value="Aber-craf" />
      <xs:enumeration value="Banwy" />
      <xs:enumeration value="Beguildy" />
      <xs:enumeration value="Berriew" />
      <xs:enumeration value="Blaen Hafren" />
      <xs:enumeration value="Bronllys" />
      <xs:enumeration value="Builth" />
      <xs:enumeration value="Bwlch" />
      <xs:enumeration value="Caersws" />
      <xs:enumeration value="Churchstoke" />
      <xs:enumeration value="Crickhowell" />
      <xs:enumeration value="Cwm-twrch" />
      <xs:enumeration value="Disserth and Trecoed" />
      <xs:enumeration value="Dolforwyn" />
      <xs:enumeration value="Felin-fâch" />
      <xs:enumeration value="Forden" />
      <xs:enumeration value="Glantwymyn" />
      <xs:enumeration value="Glasbury" />
      <xs:enumeration value="Guilsfield" />
      <xs:enumeration value="Gwernyfed" />
      <xs:enumeration value="Hay" />
      <xs:enumeration value="Kerry" />
      <xs:enumeration value="Knighton" />
      <xs:enumeration value="Llanafanfawr" />
      <xs:enumeration value="Llanbadarn Fawr" />
      <xs:enumeration value="Llanbrynmair" />
      <xs:enumeration value="Llandinam" />
      <xs:enumeration value="Llandrindod East/Llandrindod West" />
      <xs:enumeration value="Llandrindod North" />
      <xs:enumeration value="Llandrindod South" />
      <xs:enumeration value="Llandrinio" />
      <xs:enumeration value="Llandysilio" />
      <xs:enumeration value="Llanelwedd" />
      <xs:enumeration value="Llanfair Caereinion" />
      <xs:enumeration value="Llanfihangel" />
      <xs:enumeration value="Llanfyllin" />
      <xs:enumeration value="Llangattock" />
      <xs:enumeration value="Llangors" />
      <xs:enumeration value="Llangunllo" />
      <xs:enumeration value="Llangynidr" />
      <xs:enumeration value="Llanidloes" />
      <xs:enumeration value="Llanrhaeadr-ym-Mochnant" />
      <xs:enumeration value="Llanrhaeadr-ym-Mochnant/Llansilin" />
      <xs:enumeration value="Llansantffraid" />
      <xs:enumeration value="Llanwrtyd Wells" />
      <xs:enumeration value="Llanyre" />
      <xs:enumeration value="Machynlleth" />
      <xs:enumeration value="Maescar/Llywel" />
      <xs:enumeration value="Meifod" />
      <xs:enumeration value="Montgomery" />
      <xs:enumeration value="Nantmel" />
      <xs:enumeration value="Newtown Central" />
      <xs:enumeration value="Newtown East" />
      <xs:enumeration value="Newtown Llanllwchaiarn North" />
      <xs:enumeration value="Newtown Llanllwchaiarn West" />
      <xs:enumeration value="Newtown South" />
      <xs:enumeration value="Old Radnor" />
      <xs:enumeration value="Presteigne" />
      <xs:enumeration value="Rhayader" />
      <xs:enumeration value="Rhiwcynon" />
      <xs:enumeration value="St. David Within" />
      <xs:enumeration value="St. John" />
      <xs:enumeration value="St. Mary" />
      <xs:enumeration value="Talgarth" />
      <xs:enumeration value="Talybont-on-Usk" />
      <xs:enumeration value="Tawe-Uchaf" />
      <xs:enumeration value="Trewern" />
      <xs:enumeration value="Welshpool Castle" />
      <xs:enumeration value="Welshpool Gungrog" />
      <xs:enumeration value="Welshpool Llanerchyddol" />
      <xs:enumeration value="Ynyscedwyn" />
      <xs:enumeration value="Yscir" />
      <xs:enumeration value="Ystradgynlais" />
      <xs:enumeration value="Aberaeron" />
      <xs:enumeration value="Aberporth" />
      <xs:enumeration value="Aberteifi/Cardigan - Mwldan" />
      <xs:enumeration value="Aberteifi/Cardigan - Rhyd-y-Fuwch" />
      <xs:enumeration value="Aberteifi/Cardigan - Teifi" />
      <xs:enumeration value="Aberystwyth Bronglais" />
      <xs:enumeration value="Aberystwyth Canol/Central" />
      <xs:enumeration value="Aberystwyth Gogledd/North" />
      <xs:enumeration value="Aberystwyth Penparcau" />
      <xs:enumeration value="Aberystwyth Rheidol" />
      <xs:enumeration value="Beulah" />
      <xs:enumeration value="Borth" />
      <xs:enumeration value="Capel Dewi" />
      <xs:enumeration value="Ceulanamaesmawr" />
      <xs:enumeration value="Ciliau Aeron" />
      <xs:enumeration value="Faenor" />
      <xs:enumeration value="Lampeter" />
      <xs:enumeration value="Llanarth" />
      <xs:enumeration value="Llanbadarn Fawr - Padarn" />
      <xs:enumeration value="Llanbadarn Fawr - Sulien" />
      <xs:enumeration value="Llandyfriog" />
      <xs:enumeration value="Llandysiliogogo" />
      <xs:enumeration value="Llandysul Town" />
      <xs:enumeration value="Llanfarian" />
      <xs:enumeration value="Llanfihangel Ystrad" />
      <xs:enumeration value="Llangeitho" />
      <xs:enumeration value="Llangybi" />
      <xs:enumeration value="Llanrhystyd" />
      <xs:enumeration value="Llansantffraed" />
      <xs:enumeration value="Llanwenog" />
      <xs:enumeration value="Lledrod" />
      <xs:enumeration value="Melindwr" />
      <xs:enumeration value="New Quay" />
      <xs:enumeration value="Penbryn" />
      <xs:enumeration value="Pen-parc" />
      <xs:enumeration value="Tirymynach" />
      <xs:enumeration value="Trefeurig" />
      <xs:enumeration value="Tregaron" />
      <xs:enumeration value="Troedyraur" />
      <xs:enumeration value="Ystwyth" />
      <xs:enumeration value="Amroth" />
      <xs:enumeration value="Burton" />
      <xs:enumeration value="Camrose" />
      <xs:enumeration value="Carew" />
      <xs:enumeration value="Cilgerran" />
      <xs:enumeration value="Clydau" />
      <xs:enumeration value="Crymych" />
      <xs:enumeration value="Dinas Cross" />
      <xs:enumeration value="East Williamston" />
      <xs:enumeration value="Fishguard North East" />
      <xs:enumeration value="Fishguard North West" />
      <xs:enumeration value="Goodwick" />
      <xs:enumeration value="Haverfordwest: Castle" />
      <xs:enumeration value="Haverfordwest: Garth" />
      <xs:enumeration value="Haverfordwest: Portfield" />
      <xs:enumeration value="Haverfordwest: Prendergast" />
      <xs:enumeration value="Haverfordwest: Priory" />
      <xs:enumeration value="Hundleton" />
      <xs:enumeration value="Johnston" />
      <xs:enumeration value="Kilgetty/Begelly" />
      <xs:enumeration value="Lampeter Velfrey" />
      <xs:enumeration value="Lamphey" />
      <xs:enumeration value="Letterston" />
      <xs:enumeration value="Llangwm" />
      <xs:enumeration value="Llanrhian" />
      <xs:enumeration value="Maenclochog" />
      <xs:enumeration value="Manorbier" />
      <xs:enumeration value="Martletwy" />
      <xs:enumeration value="Merlin's Bridge" />
      <xs:enumeration value="Milford: Central" />
      <xs:enumeration value="Milford: East" />
      <xs:enumeration value="Milford: Hakin" />
      <xs:enumeration value="Milford: Hubberston" />
      <xs:enumeration value="Milford: North" />
      <xs:enumeration value="Milford: West" />
      <xs:enumeration value="Narberth" />
      <xs:enumeration value="Narberth Rural" />
      <xs:enumeration value="Newport" />
      <xs:enumeration value="Neyland: East" />
      <xs:enumeration value="Neyland: West" />
      <xs:enumeration value="Pembroke Dock: Central" />
      <xs:enumeration value="Pembroke Dock: Llanion" />
      <xs:enumeration value="Pembroke Dock: Market" />
      <xs:enumeration value="Pembroke Dock: Pennar" />
      <xs:enumeration value="Pembroke: Monkton" />
      <xs:enumeration value="Pembroke: St. Mary North" />
      <xs:enumeration value="Pembroke: St. Mary South" />
      <xs:enumeration value="Pembroke: St. Michael" />
      <xs:enumeration value="Penally" />
      <xs:enumeration value="Rudbaxton" />
      <xs:enumeration value="St. David's" />
      <xs:enumeration value="St. Dogmaels" />
      <xs:enumeration value="St. Ishmael's" />
      <xs:enumeration value="Saundersfoot" />
      <xs:enumeration value="Scleddau" />
      <xs:enumeration value="Solva" />
      <xs:enumeration value="Tenby: North" />
      <xs:enumeration value="Tenby: South" />
      <xs:enumeration value="The Havens" />
      <xs:enumeration value="Wiston" />
      <xs:enumeration value="Abergwili" />
      <xs:enumeration value="Ammanford" />
      <xs:enumeration value="Betws" />
      <xs:enumeration value="Bigyn" />
      <xs:enumeration value="Burry Port" />
      <xs:enumeration value="Bynea" />
      <xs:enumeration value="Carmarthen Town North" />
      <xs:enumeration value="Carmarthen Town South" />
      <xs:enumeration value="Carmarthen Town West" />
      <xs:enumeration value="Cenarth" />
      <xs:enumeration value="Cilycwm" />
      <xs:enumeration value="Cynwyl Elfed" />
      <xs:enumeration value="Cynwyl Gaeo" />
      <xs:enumeration value="Dafen" />
      <xs:enumeration value="Elli" />
      <xs:enumeration value="Felinfoel" />
      <xs:enumeration value="Garnant" />
      <xs:enumeration value="Glanamman" />
      <xs:enumeration value="Glanymor" />
      <xs:enumeration value="Glyn" />
      <xs:enumeration value="Gorslas" />
      <xs:enumeration value="Hendy" />
      <xs:enumeration value="Hengoed" />
      <xs:enumeration value="Kidwelly" />
      <xs:enumeration value="Laugharne Township" />
      <xs:enumeration value="Llanboidy" />
      <xs:enumeration value="Llanddarog" />
      <xs:enumeration value="Llandeilo" />
      <xs:enumeration value="Llandovery" />
      <xs:enumeration value="Llandybie" />
      <xs:enumeration value="Llanegwad" />
      <xs:enumeration value="Llanfihangel Aberbythych" />
      <xs:enumeration value="Llanfihangel-ar-Arth" />
      <xs:enumeration value="Llangadog" />
      <xs:enumeration value="Llangeler" />
      <xs:enumeration value="Llangennech" />
      <xs:enumeration value="Llangunnor" />
      <xs:enumeration value="Llangyndeyrn" />
      <xs:enumeration value="Llannon" />
      <xs:enumeration value="Llansteffan" />
      <xs:enumeration value="Llanybydder" />
      <xs:enumeration value="Lliedi" />
      <xs:enumeration value="Llwynhendy" />
      <xs:enumeration value="Manordeilo and Salem" />
      <xs:enumeration value="Pembrey" />
      <xs:enumeration value="Penygroes" />
      <xs:enumeration value="Pontamman" />
      <xs:enumeration value="Pontyberem" />
      <xs:enumeration value="Quarter Bach" />
      <xs:enumeration value="St. Clears" />
      <xs:enumeration value="St. Ishmael" />
      <xs:enumeration value="Saron" />
      <xs:enumeration value="Swiss Valley" />
      <xs:enumeration value="Trelech" />
      <xs:enumeration value="Trimsaran" />
      <xs:enumeration value="Tycroes" />
      <xs:enumeration value="Tyisha" />
      <xs:enumeration value="Whitland" />
      <xs:enumeration value="Bishopston" />
      <xs:enumeration value="Bonymaen" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Clydach" />
      <xs:enumeration value="Cockett" />
      <xs:enumeration value="Cwmbwrla" />
      <xs:enumeration value="Dunvant" />
      <xs:enumeration value="Fairwood" />
      <xs:enumeration value="Gorseinon" />
      <xs:enumeration value="Gower" />
      <xs:enumeration value="Gowerton" />
      <xs:enumeration value="Killay North" />
      <xs:enumeration value="Killay South" />
      <xs:enumeration value="Kingsbridge" />
      <xs:enumeration value="Landore" />
      <xs:enumeration value="Llangyfelach" />
      <xs:enumeration value="Llansamlet" />
      <xs:enumeration value="Lower Loughor" />
      <xs:enumeration value="Mawr" />
      <xs:enumeration value="Mayals" />
      <xs:enumeration value="Morriston" />
      <xs:enumeration value="Mynyddbach" />
      <xs:enumeration value="Newton" />
      <xs:enumeration value="Oystermouth" />
      <xs:enumeration value="Penclawdd" />
      <xs:enumeration value="Penderry" />
      <xs:enumeration value="Penllergaer" />
      <xs:enumeration value="Pennard" />
      <xs:enumeration value="Penyrheol" />
      <xs:enumeration value="Pontardulais" />
      <xs:enumeration value="St. Thomas" />
      <xs:enumeration value="Sketty" />
      <xs:enumeration value="Townhill" />
      <xs:enumeration value="Uplands" />
      <xs:enumeration value="Upper Loughor" />
      <xs:enumeration value="West Cross" />
      <xs:enumeration value="Aberavon" />
      <xs:enumeration value="Aberdulais" />
      <xs:enumeration value="Allt-wen" />
      <xs:enumeration value="Baglan" />
      <xs:enumeration value="Blaengwrach" />
      <xs:enumeration value="Briton Ferry East" />
      <xs:enumeration value="Briton Ferry West" />
      <xs:enumeration value="Bryn and Cwmavon" />
      <xs:enumeration value="Bryn-coch North" />
      <xs:enumeration value="Bryn-coch South" />
      <xs:enumeration value="Cadoxton" />
      <xs:enumeration value="Cimla" />
      <xs:enumeration value="Coedffranc Central" />
      <xs:enumeration value="Coedffranc North" />
      <xs:enumeration value="Coedffranc West" />
      <xs:enumeration value="Crynant" />
      <xs:enumeration value="Cwmllynfell" />
      <xs:enumeration value="Cymmer" />
      <xs:enumeration value="Dyffryn" />
      <xs:enumeration value="Glyncorrwg" />
      <xs:enumeration value="Glynneath" />
      <xs:enumeration value="Godre'r graig" />
      <xs:enumeration value="Gwaun-Cae-Gurwen" />
      <xs:enumeration value="Gwynfi" />
      <xs:enumeration value="Lower Brynamman" />
      <xs:enumeration value="Margam" />
      <xs:enumeration value="Neath East" />
      <xs:enumeration value="Neath North" />
      <xs:enumeration value="Neath South" />
      <xs:enumeration value="Onllwyn" />
      <xs:enumeration value="Pelenna" />
      <xs:enumeration value="Pontardawe" />
      <xs:enumeration value="Port Talbot" />
      <xs:enumeration value="Resolven" />
      <xs:enumeration value="Rhos" />
      <xs:enumeration value="Sandfields East" />
      <xs:enumeration value="Sandfields West" />
      <xs:enumeration value="Seven Sisters" />
      <xs:enumeration value="Tai-bach" />
      <xs:enumeration value="Tonna" />
      <xs:enumeration value="Trebanos" />
      <xs:enumeration value="Ystalyfera" />
      <xs:enumeration value="Aberkenfig" />
      <xs:enumeration value="Bettws" />
      <xs:enumeration value="Blackmill" />
      <xs:enumeration value="Blaengarw" />
      <xs:enumeration value="Brackla" />
      <xs:enumeration value="Bryncethin" />
      <xs:enumeration value="Bryncoch" />
      <xs:enumeration value="Bryntirion, Laleston and Merthyr Mawr" />
      <xs:enumeration value="Caerau" />
      <xs:enumeration value="Cefn Cribwr" />
      <xs:enumeration value="Cefn Glas" />
      <xs:enumeration value="Coity" />
      <xs:enumeration value="Cornelly" />
      <xs:enumeration value="Coychurch Lower" />
      <xs:enumeration value="Felindre" />
      <xs:enumeration value="Hendre" />
      <xs:enumeration value="Litchard" />
      <xs:enumeration value="Llangeinor" />
      <xs:enumeration value="Llangewydd and Brynhyfryd" />
      <xs:enumeration value="Llangynwyd" />
      <xs:enumeration value="Maesteg East" />
      <xs:enumeration value="Maesteg West" />
      <xs:enumeration value="Morfa" />
      <xs:enumeration value="Nant-y-moel" />
      <xs:enumeration value="Newcastle" />
      <xs:enumeration value="Newton" />
      <xs:enumeration value="Nottage" />
      <xs:enumeration value="Ogmore Vale" />
      <xs:enumeration value="Oldcastle" />
      <xs:enumeration value="Pendre" />
      <xs:enumeration value="Penprysg" />
      <xs:enumeration value="Pen-y-fai" />
      <xs:enumeration value="Pontycymmer" />
      <xs:enumeration value="Porthcawl East Central" />
      <xs:enumeration value="Porthcawl West Central" />
      <xs:enumeration value="Pyle" />
      <xs:enumeration value="Rest Bay" />
      <xs:enumeration value="Sarn" />
      <xs:enumeration value="Ynysawdre" />
      <xs:enumeration value="Baruc" />
      <xs:enumeration value="Buttrills" />
      <xs:enumeration value="Cadoc" />
      <xs:enumeration value="Castleland" />
      <xs:enumeration value="Cornerswell" />
      <xs:enumeration value="Court" />
      <xs:enumeration value="Cowbridge" />
      <xs:enumeration value="Dinas Powys" />
      <xs:enumeration value="Dyfan" />
      <xs:enumeration value="Gibbonsdown" />
      <xs:enumeration value="Illtyd" />
      <xs:enumeration value="Llandough" />
      <xs:enumeration value="Llandow/Ewenny" />
      <xs:enumeration value="Llantwit Major" />
      <xs:enumeration value="Peterston-super-Ely" />
      <xs:enumeration value="Plymouth" />
      <xs:enumeration value="Rhoose" />
      <xs:enumeration value="St. Athan" />
      <xs:enumeration value="St. Augustine's" />
      <xs:enumeration value="St. Bride's Major" />
      <xs:enumeration value="Stanwell" />
      <xs:enumeration value="Sully" />
      <xs:enumeration value="Wenvoe" />
      <xs:enumeration value="Aberaman North" />
      <xs:enumeration value="Aberaman South" />
      <xs:enumeration value="Abercynon" />
      <xs:enumeration value="Aberdare East" />
      <xs:enumeration value="Aberdare West/Llwydcoed" />
      <xs:enumeration value="Beddau" />
      <xs:enumeration value="Brynna" />
      <xs:enumeration value="Church Village" />
      <xs:enumeration value="Cilfynydd" />
      <xs:enumeration value="Cwm Clydach" />
      <xs:enumeration value="Cwmbach" />
      <xs:enumeration value="Cymmer" />
      <xs:enumeration value="Ferndale" />
      <xs:enumeration value="Gilfach Goch" />
      <xs:enumeration value="Glyncoch" />
      <xs:enumeration value="Graig" />
      <xs:enumeration value="Hawthorn" />
      <xs:enumeration value="Hirwaun" />
      <xs:enumeration value="Llanharan" />
      <xs:enumeration value="Llanharry" />
      <xs:enumeration value="Llantrisant Town" />
      <xs:enumeration value="Llantwit Fardre" />
      <xs:enumeration value="Llwyn-y-pia" />
      <xs:enumeration value="Maerdy" />
      <xs:enumeration value="Mountain Ash East" />
      <xs:enumeration value="Mountain Ash West" />
      <xs:enumeration value="Penrhiwceiber" />
      <xs:enumeration value="Pentre" />
      <xs:enumeration value="Pen-y-graig" />
      <xs:enumeration value="Pen-y-waun" />
      <xs:enumeration value="Pont-y-clun" />
      <xs:enumeration value="Pontypridd Town" />
      <xs:enumeration value="Porth" />
      <xs:enumeration value="Rhigos" />
      <xs:enumeration value="Rhondda" />
      <xs:enumeration value="Rhydfelen Central/Ilan" />
      <xs:enumeration value="Taffs Well" />
      <xs:enumeration value="Talbot Green" />
      <xs:enumeration value="Ton-teg" />
      <xs:enumeration value="Tonypandy" />
      <xs:enumeration value="Tonyrefail East" />
      <xs:enumeration value="Tonyrefail West" />
      <xs:enumeration value="Trallwng" />
      <xs:enumeration value="Trealaw" />
      <xs:enumeration value="Treforest" />
      <xs:enumeration value="Treherbert" />
      <xs:enumeration value="Treorchy" />
      <xs:enumeration value="Tylorstown" />
      <xs:enumeration value="Tyn-y-nant" />
      <xs:enumeration value="Ynyshir" />
      <xs:enumeration value="Ynysybwl" />
      <xs:enumeration value="Ystrad" />
      <xs:enumeration value="Bedlinog" />
      <xs:enumeration value="Cyfarthfa" />
      <xs:enumeration value="Dowlais" />
      <xs:enumeration value="Gurnos" />
      <xs:enumeration value="Merthyr Vale" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Penydarren" />
      <xs:enumeration value="Plymouth" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Treharris" />
      <xs:enumeration value="Vaynor" />
      <xs:enumeration value="Aberbargoed" />
      <xs:enumeration value="Abercarn" />
      <xs:enumeration value="Aber Valley" />
      <xs:enumeration value="Argoed" />
      <xs:enumeration value="Bargoed" />
      <xs:enumeration value="Bedwas, Trethomas and Machen" />
      <xs:enumeration value="Blackwood" />
      <xs:enumeration value="Cefn Fforest" />
      <xs:enumeration value="Crosskeys" />
      <xs:enumeration value="Crumlin" />
      <xs:enumeration value="Darren Valley" />
      <xs:enumeration value="Gilfach" />
      <xs:enumeration value="Hengoed" />
      <xs:enumeration value="Llanbradach" />
      <xs:enumeration value="Maesycwmmer" />
      <xs:enumeration value="Morgan Jones" />
      <xs:enumeration value="Moriah" />
      <xs:enumeration value="Nelson" />
      <xs:enumeration value="Newbridge" />
      <xs:enumeration value="New Tredegar" />
      <xs:enumeration value="Pengam" />
      <xs:enumeration value="Penmaen" />
      <xs:enumeration value="Penyrheol" />
      <xs:enumeration value="Pontllanfraith" />
      <xs:enumeration value="Pontlottyn" />
      <xs:enumeration value="Risca East" />
      <xs:enumeration value="Risca West" />
      <xs:enumeration value="St. Cattwg" />
      <xs:enumeration value="St. James" />
      <xs:enumeration value="St. Martins" />
      <xs:enumeration value="Twyn Carno" />
      <xs:enumeration value="Ynysddu" />
      <xs:enumeration value="Ystrad Mynach" />
      <xs:enumeration value="Abertillery" />
      <xs:enumeration value="Badminton" />
      <xs:enumeration value="Beaufort" />
      <xs:enumeration value="Blaina" />
      <xs:enumeration value="Brynmawr" />
      <xs:enumeration value="Cwm" />
      <xs:enumeration value="Cwmtillery" />
      <xs:enumeration value="Ebbw Vale North" />
      <xs:enumeration value="Ebbw Vale South" />
      <xs:enumeration value="Georgetown" />
      <xs:enumeration value="Llanhilleth" />
      <xs:enumeration value="Nantyglo" />
      <xs:enumeration value="Rassau" />
      <xs:enumeration value="Sirhowy" />
      <xs:enumeration value="Six Bells" />
      <xs:enumeration value="Tredegar Central and West" />
      <xs:enumeration value="Abersychan" />
      <xs:enumeration value="Blaenavon" />
      <xs:enumeration value="Brynwern" />
      <xs:enumeration value="Coed Eva" />
      <xs:enumeration value="Croesyceiliog North" />
      <xs:enumeration value="Croesyceiliog South" />
      <xs:enumeration value="Cwmyniscoy" />
      <xs:enumeration value="Fairwater" />
      <xs:enumeration value="Greenmeadow" />
      <xs:enumeration value="Llantarnam" />
      <xs:enumeration value="Llanyrafon North" />
      <xs:enumeration value="Llanyrafon South" />
      <xs:enumeration value="New Inn" />
      <xs:enumeration value="Panteg" />
      <xs:enumeration value="Pontnewydd" />
      <xs:enumeration value="Pontnewynydd" />
      <xs:enumeration value="Pontypool" />
      <xs:enumeration value="St. Cadocs and Penygarn" />
      <xs:enumeration value="St. Dials" />
      <xs:enumeration value="Snatchwood" />
      <xs:enumeration value="Trevethin" />
      <xs:enumeration value="Two Locks" />
      <xs:enumeration value="Upper Cwmbran" />
      <xs:enumeration value="Wainfelin" />
      <xs:enumeration value="Caerwent" />
      <xs:enumeration value="Caldicot Castle" />
      <xs:enumeration value="Cantref" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Croesonen" />
      <xs:enumeration value="Crucorney" />
      <xs:enumeration value="Devauden" />
      <xs:enumeration value="Dewstow" />
      <xs:enumeration value="Dixton with Osbaston" />
      <xs:enumeration value="Drybridge" />
      <xs:enumeration value="Goetre Fawr" />
      <xs:enumeration value="Green Lane" />
      <xs:enumeration value="Grofield" />
      <xs:enumeration value="Lansdown" />
      <xs:enumeration value="Larkfield" />
      <xs:enumeration value="Llanbadoc" />
      <xs:enumeration value="Llanelly Hill" />
      <xs:enumeration value="Llanfoist Fawr" />
      <xs:enumeration value="Llangybi Fawr" />
      <xs:enumeration value="Llanover" />
      <xs:enumeration value="Llantilio Crossenny" />
      <xs:enumeration value="Llanwenarth Ultra" />
      <xs:enumeration value="Mardy" />
      <xs:enumeration value="Mill" />
      <xs:enumeration value="Mitchel Troy" />
      <xs:enumeration value="Overmonnow" />
      <xs:enumeration value="Portskewett" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Raglan" />
      <xs:enumeration value="Rogiet" />
      <xs:enumeration value="St. Arvans" />
      <xs:enumeration value="St. Christopher's" />
      <xs:enumeration value="St. Kingsmark" />
      <xs:enumeration value="St. Mary's" />
      <xs:enumeration value="Severn" />
      <xs:enumeration value="Shirenewton" />
      <xs:enumeration value="The Elms" />
      <xs:enumeration value="Thornwell" />
      <xs:enumeration value="Trellech United" />
      <xs:enumeration value="Usk" />
      <xs:enumeration value="West End" />
      <xs:enumeration value="Wyesham" />
      <xs:enumeration value="Allt-yr-yn" />
      <xs:enumeration value="Alway" />
      <xs:enumeration value="Beechwood" />
      <xs:enumeration value="Bettws" />
      <xs:enumeration value="Caerleon" />
      <xs:enumeration value="Gaer" />
      <xs:enumeration value="Graig" />
      <xs:enumeration value="Langstone" />
      <xs:enumeration value="Liswerry" />
      <xs:enumeration value="Llanwern" />
      <xs:enumeration value="Malpas" />
      <xs:enumeration value="Marshfield" />
      <xs:enumeration value="Pillgwenlly" />
      <xs:enumeration value="Ringland" />
      <xs:enumeration value="Rogerstone" />
      <xs:enumeration value="St. Julians" />
      <xs:enumeration value="Shaftesbury" />
      <xs:enumeration value="Stow Hill" />
      <xs:enumeration value="Tredegar Park" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Adamsdown" />
      <xs:enumeration value="Butetown" />
      <xs:enumeration value="Caerau" />
      <xs:enumeration value="Canton" />
      <xs:enumeration value="Cathays" />
      <xs:enumeration value="Creigiau/St. Fagans" />
      <xs:enumeration value="Cyncoed" />
      <xs:enumeration value="Ely" />
      <xs:enumeration value="Fairwater" />
      <xs:enumeration value="Gabalfa" />
      <xs:enumeration value="Grangetown" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Lisvane" />
      <xs:enumeration value="Llandaff" />
      <xs:enumeration value="Llandaff North" />
      <xs:enumeration value="Llanishen" />
      <xs:enumeration value="Llanrumney" />
      <xs:enumeration value="Pentwyn" />
      <xs:enumeration value="Pentyrch" />
      <xs:enumeration value="Penylan" />
      <xs:enumeration value="Plasnewydd" />
      <xs:enumeration value="Pontprennau/Old St. Mellons" />
      <xs:enumeration value="Radyr" />
      <xs:enumeration value="Rhiwbina" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Rumney" />
      <xs:enumeration value="Splott" />
      <xs:enumeration value="Trowbridge" />
      <xs:enumeration value="Whitchurch and Tongwynlais" />
      <xs:enumeration value="Pitmedden" />
      <xs:enumeration value="Bankhead/Stoneywood" />
      <xs:enumeration value="Danestone" />
      <xs:enumeration value="Jesmond" />
      <xs:enumeration value="Oldmachar" />
      <xs:enumeration value="Bridge of Don" />
      <xs:enumeration value="Donmouth" />
      <xs:enumeration value="Newhills" />
      <xs:enumeration value="Auchmill" />
      <xs:enumeration value="Cummings Park" />
      <xs:enumeration value="Springhill" />
      <xs:enumeration value="Mastrick" />
      <xs:enumeration value="Sheddocksley" />
      <xs:enumeration value="Summerhill" />
      <xs:enumeration value="Hilton" />
      <xs:enumeration value="Woodside" />
      <xs:enumeration value="St. Machar" />
      <xs:enumeration value="Seaton" />
      <xs:enumeration value="Kittybrewster" />
      <xs:enumeration value="Stockethill" />
      <xs:enumeration value="Berryden" />
      <xs:enumeration value="Sunnybank" />
      <xs:enumeration value="Pittodrie" />
      <xs:enumeration value="Midstocket" />
      <xs:enumeration value="Queens Cross" />
      <xs:enumeration value="Gilcomston" />
      <xs:enumeration value="Langstane" />
      <xs:enumeration value="Castlehill" />
      <xs:enumeration value="Hazlehead" />
      <xs:enumeration value="Peterculter" />
      <xs:enumeration value="Murtle" />
      <xs:enumeration value="Cults" />
      <xs:enumeration value="Seafield" />
      <xs:enumeration value="Ashley" />
      <xs:enumeration value="Broomhill" />
      <xs:enumeration value="Garthdee" />
      <xs:enumeration value="Gairn" />
      <xs:enumeration value="Duthie" />
      <xs:enumeration value="Torry" />
      <xs:enumeration value="Tullos Hill" />
      <xs:enumeration value="Kincorth West" />
      <xs:enumeration value="Nigg" />
      <xs:enumeration value="Loirston" />
      <xs:enumeration value="Durn" />
      <xs:enumeration value="Banff West and Boyndie" />
      <xs:enumeration value="Banff" />
      <xs:enumeration value="Aberchirder" />
      <xs:enumeration value="Macduff" />
      <xs:enumeration value="Gamrie-King Edward" />
      <xs:enumeration value="Buchan North" />
      <xs:enumeration value="Fraserburgh West" />
      <xs:enumeration value="Fraserburgh North" />
      <xs:enumeration value="Fraserburgh East" />
      <xs:enumeration value="Fraserburgh South" />
      <xs:enumeration value="Buchan North East" />
      <xs:enumeration value="South Buchan" />
      <xs:enumeration value="Central Buchan" />
      <xs:enumeration value="Lonmay and St Fergus" />
      <xs:enumeration value="Mintlaw-Old Deer" />
      <xs:enumeration value="Mintlaw-Longside" />
      <xs:enumeration value="Boddam-Inverugie" />
      <xs:enumeration value="Blackhouse" />
      <xs:enumeration value="Buchanhaven" />
      <xs:enumeration value="Peterhead Central-Roanheads" />
      <xs:enumeration value="Clerkhill" />
      <xs:enumeration value="Dales-Towerhill" />
      <xs:enumeration value="Cruden" />
      <xs:enumeration value="Turriff West" />
      <xs:enumeration value="Turriff East" />
      <xs:enumeration value="Upper Ythan" />
      <xs:enumeration value="Fyvie-Methlick" />
      <xs:enumeration value="Tarves" />
      <xs:enumeration value="Ythan" />
      <xs:enumeration value="Ellon Town" />
      <xs:enumeration value="Logie Buchan" />
      <xs:enumeration value="Meldrum" />
      <xs:enumeration value="Udny-Slains" />
      <xs:enumeration value="Belhelvie" />
      <xs:enumeration value="Insch" />
      <xs:enumeration value="Chapel and Gadie" />
      <xs:enumeration value="Inverurie North" />
      <xs:enumeration value="Inverurie Central" />
      <xs:enumeration value="Inverurie South and Port Elphinstone" />
      <xs:enumeration value="Kintore and Keithhall" />
      <xs:enumeration value="Newmachar and Fintray" />
      <xs:enumeration value="Kemnay" />
      <xs:enumeration value="Echt" />
      <xs:enumeration value="Kinellar and Westhill North" />
      <xs:enumeration value="Westhill Central" />
      <xs:enumeration value="Elrick" />
      <xs:enumeration value="Huntly West" />
      <xs:enumeration value="Huntly East" />
      <xs:enumeration value="Strathbogie" />
      <xs:enumeration value="Donside and Cromar" />
      <xs:enumeration value="Alford" />
      <xs:enumeration value="Upper Deeside" />
      <xs:enumeration value="Aboyne" />
      <xs:enumeration value="Mid Deeside" />
      <xs:enumeration value="Banchory West" />
      <xs:enumeration value="Banchory East and Crathes" />
      <xs:enumeration value="Lower Deeside" />
      <xs:enumeration value="Portlethen North" />
      <xs:enumeration value="Portlethen South" />
      <xs:enumeration value="Newtonhill, Muchalls and Cammachmore" />
      <xs:enumeration value="Stonehaven North and Fetteresso" />
      <xs:enumeration value="Stonehaven Central" />
      <xs:enumeration value="Stonehaven South" />
      <xs:enumeration value="Mearns North" />
      <xs:enumeration value="Mearns Central" />
      <xs:enumeration value="Inverbervie, Gourdon and Johnshaven" />
      <xs:enumeration value="Mearns South" />
      <xs:enumeration value="Kirriemuir West" />
      <xs:enumeration value="Kirriemuir East" />
      <xs:enumeration value="Brechin West" />
      <xs:enumeration value="Brechin North Esk" />
      <xs:enumeration value="Westfield and Dean" />
      <xs:enumeration value="Forfar West" />
      <xs:enumeration value="Forfar Central" />
      <xs:enumeration value="Forfar East" />
      <xs:enumeration value="Brechin South Esk" />
      <xs:enumeration value="Montrose Ferryden" />
      <xs:enumeration value="Montrose Central" />
      <xs:enumeration value="Montrose West" />
      <xs:enumeration value="Montrose Hillside" />
      <xs:enumeration value="Forfar South" />
      <xs:enumeration value="Letham and Friockheim" />
      <xs:enumeration value="Sidlaw West" />
      <xs:enumeration value="Sidlaw East and Ashludie" />
      <xs:enumeration value="Monifieth West" />
      <xs:enumeration value="Monifieth Central" />
      <xs:enumeration value="Carnoustie West" />
      <xs:enumeration value="Carnoustie Central" />
      <xs:enumeration value="Carnoustie East" />
      <xs:enumeration value="Arbirlot and Hospitalfield" />
      <xs:enumeration value="Keptie" />
      <xs:enumeration value="Arbroath North" />
      <xs:enumeration value="Brothock" />
      <xs:enumeration value="Hayshead and Lunan" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Cliffburn" />
      <xs:enumeration value="South Kintyre" />
      <xs:enumeration value="Campbeltown Central" />
      <xs:enumeration value="East Central Kintyre" />
      <xs:enumeration value="North and West Kintyre" />
      <xs:enumeration value="Knapdale" />
      <xs:enumeration value="Lochgilphead" />
      <xs:enumeration value="Craignish - Glenaray" />
      <xs:enumeration value="Islay North, Jura and Colonsay" />
      <xs:enumeration value="Islay South" />
      <xs:enumeration value="Awe" />
      <xs:enumeration value="Oban North" />
      <xs:enumeration value="Oban Central" />
      <xs:enumeration value="Oban South" />
      <xs:enumeration value="Ardconnel - Kilmore" />
      <xs:enumeration value="North Lorn" />
      <xs:enumeration value="Mull" />
      <xs:enumeration value="Tiree and Coll" />
      <xs:enumeration value="Bute North" />
      <xs:enumeration value="Bute Central" />
      <xs:enumeration value="Bute South" />
      <xs:enumeration value="East Lochfyne" />
      <xs:enumeration value="Kirn and Hunter's Quay" />
      <xs:enumeration value="Ardenslate" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Auchamore and Innellan" />
      <xs:enumeration value="Holy Loch" />
      <xs:enumeration value="Helensburgh East" />
      <xs:enumeration value="East Central Helensburgh" />
      <xs:enumeration value="Helensburgh Central" />
      <xs:enumeration value="Helensburgh North" />
      <xs:enumeration value="Helensburgh West" />
      <xs:enumeration value="West Helensburgh and Rhu" />
      <xs:enumeration value="Garelochhead and Cove" />
      <xs:enumeration value="Arrochar, Luss, Arden and Ardenconnel" />
      <xs:enumeration value="Roseneath, Clynder and Kilcreggan" />
      <xs:enumeration value="Cardross" />
      <xs:enumeration value="Eyemouth and District South" />
      <xs:enumeration value="Chirnside and District" />
      <xs:enumeration value="Coldstream and District" />
      <xs:enumeration value="Duns and District South" />
      <xs:enumeration value="Duns and District North" />
      <xs:enumeration value="Eyemouth and District North" />
      <xs:enumeration value="Kelso and District North" />
      <xs:enumeration value="Kelso Central" />
      <xs:enumeration value="Kelso and District South" />
      <xs:enumeration value="Jedburgh and District East" />
      <xs:enumeration value="Jedburgh and District West" />
      <xs:enumeration value="Hermitage" />
      <xs:enumeration value="Burnfoot and Mansfield" />
      <xs:enumeration value="Silverbuthall" />
      <xs:enumeration value="Weensland" />
      <xs:enumeration value="Teviot and Central" />
      <xs:enumeration value="Wilton" />
      <xs:enumeration value="Galawater and Lauderdale" />
      <xs:enumeration value="Earlston, Gordon and District" />
      <xs:enumeration value="Melrose and District" />
      <xs:enumeration value="Scott's View" />
      <xs:enumeration value="Alewater and Denholm" />
      <xs:enumeration value="Old Selkirk" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Netherdale" />
      <xs:enumeration value="Lower Langlee and Tweedbank" />
      <xs:enumeration value="Upper Langlee and Ladhope" />
      <xs:enumeration value="Kilnknowe and Clovenfords" />
      <xs:enumeration value="Mossilee and Central" />
      <xs:enumeration value="Innerleithen and Walkerburn" />
      <xs:enumeration value="Peebles and District South" />
      <xs:enumeration value="Peebles and District East" />
      <xs:enumeration value="Peebles and Upper Tweed" />
      <xs:enumeration value="West Linton and District" />
      <xs:enumeration value="Menstrie" />
      <xs:enumeration value="Alva North" />
      <xs:enumeration value="Alva South" />
      <xs:enumeration value="Tillicoultry West" />
      <xs:enumeration value="Tillicoultry East" />
      <xs:enumeration value="Dollar and Muckhart" />
      <xs:enumeration value="Devon and Clackmannan North" />
      <xs:enumeration value="Clackmannan" />
      <xs:enumeration value="Gartmorn" />
      <xs:enumeration value="Alloa North" />
      <xs:enumeration value="Alloa East" />
      <xs:enumeration value="Alloa Mar" />
      <xs:enumeration value="Alloa West" />
      <xs:enumeration value="Alloa Claremont" />
      <xs:enumeration value="Fairfield" />
      <xs:enumeration value="Muirside" />
      <xs:enumeration value="St Serf's" />
      <xs:enumeration value="Delph and Cambus" />
      <xs:enumeration value="Whitecrook" />
      <xs:enumeration value="Dalmuir/Central" />
      <xs:enumeration value="Mountblow" />
      <xs:enumeration value="Parkhall" />
      <xs:enumeration value="Linnvale/Drumry" />
      <xs:enumeration value="Kilbowie" />
      <xs:enumeration value="Kilbowie West" />
      <xs:enumeration value="Faifley" />
      <xs:enumeration value="Hardgate" />
      <xs:enumeration value="Duntocher" />
      <xs:enumeration value="Bowling/Milton/Old Kilpatrick" />
      <xs:enumeration value="Dumbarton East" />
      <xs:enumeration value="Barloan/Overtoun" />
      <xs:enumeration value="Dumbarton North" />
      <xs:enumeration value="Dumbarton Central" />
      <xs:enumeration value="Dumbarton West" />
      <xs:enumeration value="Renton/Alexandria South" />
      <xs:enumeration value="Alexandria North/Tullichewan" />
      <xs:enumeration value="Balloch" />
      <xs:enumeration value="Haldane/Kilmaronock/Jamestown" />
      <xs:enumeration value="Bonhill East" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Rhins South" />
      <xs:enumeration value="Rhins North" />
      <xs:enumeration value="Stranraer North" />
      <xs:enumeration value="Stranraer South" />
      <xs:enumeration value="Stranraer East" />
      <xs:enumeration value="Luce" />
      <xs:enumeration value="Whithorn" />
      <xs:enumeration value="Wigtown" />
      <xs:enumeration value="Cree" />
      <xs:enumeration value="Stewartry West" />
      <xs:enumeration value="Kirkcudbright - Tarff" />
      <xs:enumeration value="Kirkcudbright - Bengairn" />
      <xs:enumeration value="Stewartry North" />
      <xs:enumeration value="Castle Douglas - Dee" />
      <xs:enumeration value="Castle Douglas - Urr" />
      <xs:enumeration value="Dalbeattie - Craignair" />
      <xs:enumeration value="Dalbeattie - Milton" />
      <xs:enumeration value="Criffel" />
      <xs:enumeration value="Cairn Valley" />
      <xs:enumeration value="Sanquhar and District" />
      <xs:enumeration value="Kirkconnel" />
      <xs:enumeration value="Mid Nithsdale" />
      <xs:enumeration value="Lincluden" />
      <xs:enumeration value="Lochside" />
      <xs:enumeration value="Palmerston" />
      <xs:enumeration value="Maxwelltown" />
      <xs:enumeration value="Troqueer" />
      <xs:enumeration value="Loreburn" />
      <xs:enumeration value="Marchmount" />
      <xs:enumeration value="Lochar" />
      <xs:enumeration value="Heathhall" />
      <xs:enumeration value="Nithsdale East" />
      <xs:enumeration value="Georgetown" />
      <xs:enumeration value="Lochvale" />
      <xs:enumeration value="Caerlaverock" />
      <xs:enumeration value="Hoddom and Kinmount" />
      <xs:enumeration value="Annan West" />
      <xs:enumeration value="Annan Central" />
      <xs:enumeration value="Annan East" />
      <xs:enumeration value="Chapelcross" />
      <xs:enumeration value="Solway Border" />
      <xs:enumeration value="Canonbie and Kirtle" />
      <xs:enumeration value="Langholm and Upper Eskdale" />
      <xs:enumeration value="Dryfe and Lockerbie East" />
      <xs:enumeration value="Lockerbie and Upper Annandale" />
      <xs:enumeration value="Lochmaben" />
      <xs:enumeration value="Moffat" />
      <xs:enumeration value="Ninewells" />
      <xs:enumeration value="Camperdown" />
      <xs:enumeration value="Balgay" />
      <xs:enumeration value="Lochee West" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Brackens" />
      <xs:enumeration value="Ardler" />
      <xs:enumeration value="Balgowan" />
      <xs:enumeration value="Claverhouse" />
      <xs:enumeration value="Whitfield" />
      <xs:enumeration value="Longhaugh" />
      <xs:enumeration value="Pitkerro" />
      <xs:enumeration value="Douglas" />
      <xs:enumeration value="Barnhill" />
      <xs:enumeration value="Balgillo" />
      <xs:enumeration value="Broughty Ferry" />
      <xs:enumeration value="West Ferry" />
      <xs:enumeration value="Craigiebank" />
      <xs:enumeration value="Strathmartine" />
      <xs:enumeration value="Lochee East" />
      <xs:enumeration value="Tay Bridges" />
      <xs:enumeration value="Logie" />
      <xs:enumeration value="Law" />
      <xs:enumeration value="East Port" />
      <xs:enumeration value="Baxter Park" />
      <xs:enumeration value="Hilltown" />
      <xs:enumeration value="Bowbridge" />
      <xs:enumeration value="Stobswell" />
      <xs:enumeration value="Fairmuir" />
      <xs:enumeration value="Stewarton East and Dunlop" />
      <xs:enumeration value="Stewarton Central" />
      <xs:enumeration value="Kilmaurs and Stewarton South" />
      <xs:enumeration value="North Kilmarnock, Fenwick and Waterside" />
      <xs:enumeration value="Crosshouse, Gatehead and Knockentiber" />
      <xs:enumeration value="Altonhill, Hillhead and Longpark" />
      <xs:enumeration value="Onthank" />
      <xs:enumeration value="Kilmarnock Central West" />
      <xs:enumeration value="Kilmarnock Central East" />
      <xs:enumeration value="North New Farm Loch and Dean" />
      <xs:enumeration value="South New Farm Loch" />
      <xs:enumeration value="Crookedholm, Moscow, Galston West and Hurlford North" />
      <xs:enumeration value="Newmilns" />
      <xs:enumeration value="Grange/Howard" />
      <xs:enumeration value="Kilmarnock Central South" />
      <xs:enumeration value="Riccarton" />
      <xs:enumeration value="Shortlees" />
      <xs:enumeration value="Bellfield" />
      <xs:enumeration value="Hurlford" />
      <xs:enumeration value="Galston East" />
      <xs:enumeration value="Darvel" />
      <xs:enumeration value="Mauchline" />
      <xs:enumeration value="Catrine, Sorn and Mauchline East" />
      <xs:enumeration value="Muirkirk, Lugar, Logan" />
      <xs:enumeration value="Drongan, Stair and Rankinston" />
      <xs:enumeration value="Ochiltree, Skares, Netherthird and Craigens" />
      <xs:enumeration value="Auchinleck" />
      <xs:enumeration value="Cumnock West" />
      <xs:enumeration value="Cumnock East" />
      <xs:enumeration value="Patna and Dalrymple" />
      <xs:enumeration value="Dalmellington" />
      <xs:enumeration value="New Cumnock" />
      <xs:enumeration value="Barloch" />
      <xs:enumeration value="Clober" />
      <xs:enumeration value="Keystone" />
      <xs:enumeration value="Baljaffray/Mosshead" />
      <xs:enumeration value="Bearsden" />
      <xs:enumeration value="Castlehill/Thorn" />
      <xs:enumeration value="Chapelton" />
      <xs:enumeration value="Westerton" />
      <xs:enumeration value="Kessington" />
      <xs:enumeration value="West Kirkintilloch and Torrance" />
      <xs:enumeration value="Hillhead and Broomhill" />
      <xs:enumeration value="Rosebank and Waterside" />
      <xs:enumeration value="East Harestanes and Twechar" />
      <xs:enumeration value="Kirkintilloch Central" />
      <xs:enumeration value="Lenzie" />
      <xs:enumeration value="South Lenzie" />
      <xs:enumeration value="Campsie" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Kenmure and Baldernock" />
      <xs:enumeration value="Balmuildy and Park" />
      <xs:enumeration value="Cadder/Langbrae" />
      <xs:enumeration value="Auchinairn and Crowhill" />
      <xs:enumeration value="Woodhill West" />
      <xs:enumeration value="Woodhill East" />
      <xs:enumeration value="Musselburgh West" />
      <xs:enumeration value="Musselburgh South" />
      <xs:enumeration value="Musselburgh North" />
      <xs:enumeration value="Musselburgh Central" />
      <xs:enumeration value="Musselburgh East" />
      <xs:enumeration value="Wallyford/Whitecraig" />
      <xs:enumeration value="Prestonpans West" />
      <xs:enumeration value="Prestonpans East" />
      <xs:enumeration value="Cockenzie and Port Seton" />
      <xs:enumeration value="Longniddry" />
      <xs:enumeration value="Tranent West" />
      <xs:enumeration value="Tranent/Macmerry" />
      <xs:enumeration value="Tranent/Elphinstone" />
      <xs:enumeration value="Ormiston/Pencaitland" />
      <xs:enumeration value="Aberlady/Gullane/Dirleton" />
      <xs:enumeration value="Haddington West/Saltoun" />
      <xs:enumeration value="Haddington Central" />
      <xs:enumeration value="Haddington East/Athelstaneford" />
      <xs:enumeration value="East Linton/Gifford" />
      <xs:enumeration value="North Berwick West" />
      <xs:enumeration value="North Berwick East" />
      <xs:enumeration value="Dunbar/West Barns" />
      <xs:enumeration value="Dunbar East" />
      <xs:enumeration value="Liboside" />
      <xs:enumeration value="Barrhead North" />
      <xs:enumeration value="North Neilston and West Arthurlie" />
      <xs:enumeration value="Barrhead Central" />
      <xs:enumeration value="Barrhead East" />
      <xs:enumeration value="Auchenback" />
      <xs:enumeration value="Greenfarm" />
      <xs:enumeration value="Thornliebank" />
      <xs:enumeration value="Giffnock North" />
      <xs:enumeration value="Merrylea Park" />
      <xs:enumeration value="Netherlee" />
      <xs:enumeration value="Crookfur" />
      <xs:enumeration value="Giffnock South" />
      <xs:enumeration value="Stamperland" />
      <xs:enumeration value="Broom" />
      <xs:enumeration value="Kirkhill" />
      <xs:enumeration value="Clarkston" />
      <xs:enumeration value="Busby" />
      <xs:enumeration value="Mearns" />
      <xs:enumeration value="Eaglesham" />
      <xs:enumeration value="Balerno" />
      <xs:enumeration value="Baberton" />
      <xs:enumeration value="Dalmeny/Kirkliston" />
      <xs:enumeration value="Queensferry" />
      <xs:enumeration value="Cramond" />
      <xs:enumeration value="Davidson's Mains" />
      <xs:enumeration value="Muirhouse/Drylaw" />
      <xs:enumeration value="Craigleith" />
      <xs:enumeration value="Pilton" />
      <xs:enumeration value="Granton" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Newhaven" />
      <xs:enumeration value="East Craigs" />
      <xs:enumeration value="N.E. Corstorphine" />
      <xs:enumeration value="Murrayfield" />
      <xs:enumeration value="Dean" />
      <xs:enumeration value="Stockbridge" />
      <xs:enumeration value="New Town" />
      <xs:enumeration value="Broughton" />
      <xs:enumeration value="Calton" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Lorne" />
      <xs:enumeration value="Gyle" />
      <xs:enumeration value="S.E. Corstorphine" />
      <xs:enumeration value="Parkhead" />
      <xs:enumeration value="Craiglockhart" />
      <xs:enumeration value="Stenhouse" />
      <xs:enumeration value="Moat" />
      <xs:enumeration value="Shandon" />
      <xs:enumeration value="Dalry" />
      <xs:enumeration value="Fountainbridge" />
      <xs:enumeration value="Tollcross" />
      <xs:enumeration value="Southside" />
      <xs:enumeration value="Holyrood" />
      <xs:enumeration value="Meadowbank" />
      <xs:enumeration value="Mountcastle" />
      <xs:enumeration value="Leith Links" />
      <xs:enumeration value="Restalrig" />
      <xs:enumeration value="Portobello" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Murray Burn" />
      <xs:enumeration value="Sighthill" />
      <xs:enumeration value="Colinton" />
      <xs:enumeration value="Firrhill" />
      <xs:enumeration value="Merchiston" />
      <xs:enumeration value="North Morningside/Grange" />
      <xs:enumeration value="Marchmont" />
      <xs:enumeration value="Sciennes" />
      <xs:enumeration value="Newington" />
      <xs:enumeration value="Prestonfield" />
      <xs:enumeration value="South Morningside" />
      <xs:enumeration value="Fairmilehead" />
      <xs:enumeration value="Alnwickhill" />
      <xs:enumeration value="Kaimes" />
      <xs:enumeration value="Moredun" />
      <xs:enumeration value="Gilmerton" />
      <xs:enumeration value="Craigmillar" />
      <xs:enumeration value="Duddingston" />
      <xs:enumeration value="Camelon" />
      <xs:enumeration value="Summerford" />
      <xs:enumeration value="Woodlands" />
      <xs:enumeration value="Town Centre" />
      <xs:enumeration value="Hall Glen" />
      <xs:enumeration value="Dawson" />
      <xs:enumeration value="Grahamsford" />
      <xs:enumeration value="Middlefield" />
      <xs:enumeration value="Zetland" />
      <xs:enumeration value="Beancross" />
      <xs:enumeration value="Inchyra" />
      <xs:enumeration value="Dundas/Kerse" />
      <xs:enumeration value="Grange and Blackness" />
      <xs:enumeration value="Dean" />
      <xs:enumeration value="Borrowstoun" />
      <xs:enumeration value="Kinneil and Whitecross" />
      <xs:enumeration value="Forthside" />
      <xs:enumeration value="Kinnaird" />
      <xs:enumeration value="Carrongrange" />
      <xs:enumeration value="Tryst" />
      <xs:enumeration value="Larbert" />
      <xs:enumeration value="Herbertshire" />
      <xs:enumeration value="Denny" />
      <xs:enumeration value="Denny South" />
      <xs:enumeration value="Bonnybridge" />
      <xs:enumeration value="Banknock" />
      <xs:enumeration value="Laurieston" />
      <xs:enumeration value="Polmont" />
      <xs:enumeration value="Redding and Westquarter" />
      <xs:enumeration value="Darnrig" />
      <xs:enumeration value="Reddingmuirhead, Brightons and Rumford" />
      <xs:enumeration value="Avon" />
      <xs:enumeration value="Kincardine, Culross and Low Valleyfield" />
      <xs:enumeration value="Blairhall, High Valleyfield and Torryburn" />
      <xs:enumeration value="Oakley, Saline and Steelend" />
      <xs:enumeration value="Cairneyhill, Carnock and Milesmark" />
      <xs:enumeration value="Crossford and Dunfermline Central" />
      <xs:enumeration value="Baldridgeburn" />
      <xs:enumeration value="Wellwood and Headwell" />
      <xs:enumeration value="Townhill and Bellyeoman" />
      <xs:enumeration value="Garvock and Carnegie" />
      <xs:enumeration value="Halbeath, Hill of Beath and Kingseat" />
      <xs:enumeration value="Woodmill" />
      <xs:enumeration value="Linburn" />
      <xs:enumeration value="Brucefield and Nethertown" />
      <xs:enumeration value="Pitcorthie" />
      <xs:enumeration value="Limekilns and Pitreavie" />
      <xs:enumeration value="Rosyth West" />
      <xs:enumeration value="Rosyth East" />
      <xs:enumeration value="Inverkeithing West and Rosyth South" />
      <xs:enumeration value="Inverkeithing East and North Queensferry" />
      <xs:enumeration value="Dalgety Bay West and Hillend" />
      <xs:enumeration value="Dalgety Bay East" />
      <xs:enumeration value="Crossgates and Mossside" />
      <xs:enumeration value="Cowdenbeath Central" />
      <xs:enumeration value="Oakfield and Cowdenbeath North" />
      <xs:enumeration value="Kelty" />
      <xs:enumeration value="Ballingry and Lochore" />
      <xs:enumeration value="Crosshill and Lochgelly North" />
      <xs:enumeration value="Lumphinnans and Lochgelly South" />
      <xs:enumeration value="Aberdour and Burntisland West" />
      <xs:enumeration value="Auchtertool and Burntisland East" />
      <xs:enumeration value="Kinghorn and Invertiel" />
      <xs:enumeration value="Linktown and Kirkcaldy Central" />
      <xs:enumeration value="Raith and Longbraes" />
      <xs:enumeration value="Bennochy and Valley" />
      <xs:enumeration value="Templehall East" />
      <xs:enumeration value="Templehall West" />
      <xs:enumeration value="Cardenden, Cluny and Chapel" />
      <xs:enumeration value="Kinglassie, Bowhill and Dundonald" />
      <xs:enumeration value="Dunnikier" />
      <xs:enumeration value="Hayfield and Balsusney" />
      <xs:enumeration value="Smeaton and Overton" />
      <xs:enumeration value="Glebe Park, Pathhead and Sinclairtown" />
      <xs:enumeration value="Dysart and Gallatown" />
      <xs:enumeration value="Wemyss and Muiredge" />
      <xs:enumeration value="Buckhaven and Denbeath" />
      <xs:enumeration value="Methilhill" />
      <xs:enumeration value="Methil" />
      <xs:enumeration value="Leven East" />
      <xs:enumeration value="Leven West and Kirkland" />
      <xs:enumeration value="Kennoway" />
      <xs:enumeration value="Windygates, Star and Balgonie" />
      <xs:enumeration value="Markinch and Woodside East" />
      <xs:enumeration value="Auchmuty and Woodside West" />
      <xs:enumeration value="Pitteuchar and Finglassie North" />
      <xs:enumeration value="Thornton, Stenton and Finglassie South" />
      <xs:enumeration value="Caskieberran and Rimbleton" />
      <xs:enumeration value="Newcastle and Tanshall" />
      <xs:enumeration value="South Parks and Macedonia" />
      <xs:enumeration value="Leslie and Whinnyknowe" />
      <xs:enumeration value="Balgeddie and Collydean" />
      <xs:enumeration value="Cadham, Pitcoudie and Balfarg" />
      <xs:enumeration value="Falkland, Freuchie and Strathmiglo" />
      <xs:enumeration value="Auchtermuchty and Ladybank" />
      <xs:enumeration value="Kettle, Springfield and Ceres" />
      <xs:enumeration value="Cupar South" />
      <xs:enumeration value="Cupar North" />
      <xs:enumeration value="Newburgh and Tay Coast" />
      <xs:enumeration value="Newport-on-Tay and Wormit" />
      <xs:enumeration value="Tayport and Motray" />
      <xs:enumeration value="Leuchars, Balmullo and Guardbridge" />
      <xs:enumeration value="Strathkinness and St Andrews West" />
      <xs:enumeration value="St Andrews Central" />
      <xs:enumeration value="St Andrews South" />
      <xs:enumeration value="St Andrews South East" />
      <xs:enumeration value="Crail, Cameron and Kemback" />
      <xs:enumeration value="Anstruther and East Neuk Landward" />
      <xs:enumeration value="Elie, St Monans and Pittenweem" />
      <xs:enumeration value="Largo" />
      <xs:enumeration value="Drumry" />
      <xs:enumeration value="Summerhill" />
      <xs:enumeration value="Blairdardie" />
      <xs:enumeration value="Knightswood Park" />
      <xs:enumeration value="Knightswood South" />
      <xs:enumeration value="Yoker" />
      <xs:enumeration value="Anniesland" />
      <xs:enumeration value="Jordanhill" />
      <xs:enumeration value="Kelvindale" />
      <xs:enumeration value="Scotstoun" />
      <xs:enumeration value="Victoria Park" />
      <xs:enumeration value="Hayburn" />
      <xs:enumeration value="Hyndland" />
      <xs:enumeration value="Hillhead" />
      <xs:enumeration value="Partick" />
      <xs:enumeration value="Kelvingrove" />
      <xs:enumeration value="Anderston" />
      <xs:enumeration value="Woodlands" />
      <xs:enumeration value="North Kelvin" />
      <xs:enumeration value="Wyndford" />
      <xs:enumeration value="Maryhill" />
      <xs:enumeration value="Summerston" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Ashfield" />
      <xs:enumeration value="Firhill" />
      <xs:enumeration value="Keppochhill" />
      <xs:enumeration value="Merchant City" />
      <xs:enumeration value="Royston" />
      <xs:enumeration value="Cowlairs" />
      <xs:enumeration value="Springburn" />
      <xs:enumeration value="Wallacewell" />
      <xs:enumeration value="Milnbank" />
      <xs:enumeration value="Dennistoun" />
      <xs:enumeration value="Calton" />
      <xs:enumeration value="Bridgeton/Dalmarnock" />
      <xs:enumeration value="Parkhead" />
      <xs:enumeration value="Carntyne" />
      <xs:enumeration value="Robroyston" />
      <xs:enumeration value="Gartcraig" />
      <xs:enumeration value="Queenslie" />
      <xs:enumeration value="Greenfield" />
      <xs:enumeration value="Barlanark" />
      <xs:enumeration value="Shettleston" />
      <xs:enumeration value="Tollcross Park" />
      <xs:enumeration value="Braidfauld" />
      <xs:enumeration value="Mount Vernon" />
      <xs:enumeration value="Baillieston" />
      <xs:enumeration value="Garrowhill" />
      <xs:enumeration value="Garthamlock" />
      <xs:enumeration value="Easterhouse" />
      <xs:enumeration value="Drumoyne" />
      <xs:enumeration value="Govan" />
      <xs:enumeration value="Ibrox" />
      <xs:enumeration value="Kingston" />
      <xs:enumeration value="Mosspark" />
      <xs:enumeration value="North Cardonald" />
      <xs:enumeration value="Penilee" />
      <xs:enumeration value="Cardonald" />
      <xs:enumeration value="Pollok" />
      <xs:enumeration value="Crookston" />
      <xs:enumeration value="Nitshill" />
      <xs:enumeration value="Darnley" />
      <xs:enumeration value="Carnwadric" />
      <xs:enumeration value="Maxwell Park" />
      <xs:enumeration value="Pollokshields East" />
      <xs:enumeration value="Hutchesontown" />
      <xs:enumeration value="Govanhill" />
      <xs:enumeration value="Strathbungo" />
      <xs:enumeration value="Battlefield" />
      <xs:enumeration value="Langside" />
      <xs:enumeration value="Pollokshaws" />
      <xs:enumeration value="Newlands" />
      <xs:enumeration value="Cathcart" />
      <xs:enumeration value="Mount Florida" />
      <xs:enumeration value="Toryglen" />
      <xs:enumeration value="King's Park" />
      <xs:enumeration value="Castlemilk" />
      <xs:enumeration value="Carmunnock" />
      <xs:enumeration value="Glenwood" />
      <xs:enumeration value="Caithness North West" />
      <xs:enumeration value="Thurso West" />
      <xs:enumeration value="Thurso Central" />
      <xs:enumeration value="Thurso East" />
      <xs:enumeration value="Caithness Central" />
      <xs:enumeration value="Caithness North East" />
      <xs:enumeration value="Wick" />
      <xs:enumeration value="Wick West" />
      <xs:enumeration value="Pulteneytown" />
      <xs:enumeration value="Caithness South East" />
      <xs:enumeration value="Sutherland North West" />
      <xs:enumeration value="Tongue and Farr" />
      <xs:enumeration value="Sutherland Central" />
      <xs:enumeration value="Golspie and Rogart" />
      <xs:enumeration value="Brora" />
      <xs:enumeration value="Dornoch Firth" />
      <xs:enumeration value="Lochbroom" />
      <xs:enumeration value="Alness and Ardross" />
      <xs:enumeration value="Tain West" />
      <xs:enumeration value="Tain East" />
      <xs:enumeration value="Seaboard" />
      <xs:enumeration value="Invergordon" />
      <xs:enumeration value="Rosskeen and Saltburn" />
      <xs:enumeration value="Gairloch" />
      <xs:enumeration value="Lochcarron" />
      <xs:enumeration value="Ferindonald" />
      <xs:enumeration value="Strathpeffer and Strathconon" />
      <xs:enumeration value="Dingwall South" />
      <xs:enumeration value="Dingwall North" />
      <xs:enumeration value="Muir of Ord" />
      <xs:enumeration value="Conon and Maryburgh" />
      <xs:enumeration value="Knockbain and Killearnan" />
      <xs:enumeration value="Black Isle North" />
      <xs:enumeration value="Avoch Fortrose" />
      <xs:enumeration value="Snizort and Trotternish" />
      <xs:enumeration value="Skye West" />
      <xs:enumeration value="Portree" />
      <xs:enumeration value="Skye Central" />
      <xs:enumeration value="Kyle and Sleat" />
      <xs:enumeration value="Kinlochshiel" />
      <xs:enumeration value="Beauly and Strathglass" />
      <xs:enumeration value="Kirkhill" />
      <xs:enumeration value="Scorguie" />
      <xs:enumeration value="Muirtown" />
      <xs:enumeration value="Merkinch" />
      <xs:enumeration value="Inverness Central" />
      <xs:enumeration value="Culloden" />
      <xs:enumeration value="Ardersier, Croy and Petty" />
      <xs:enumeration value="Loch Ness West" />
      <xs:enumeration value="Inverness West" />
      <xs:enumeration value="Canal" />
      <xs:enumeration value="Ballifeary" />
      <xs:enumeration value="Lochardil" />
      <xs:enumeration value="Hilton" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Crown" />
      <xs:enumeration value="Raigmore" />
      <xs:enumeration value="Loch Ness East" />
      <xs:enumeration value="Culduthel" />
      <xs:enumeration value="Inshes" />
      <xs:enumeration value="Drumossie" />
      <xs:enumeration value="Westhill and Smithton" />
      <xs:enumeration value="Balloch" />
      <xs:enumeration value="Nairn Alltan" />
      <xs:enumeration value="Nairn Ninian" />
      <xs:enumeration value="Nairn Cawdor" />
      <xs:enumeration value="Nairn Auldearn" />
      <xs:enumeration value="Badenoch West" />
      <xs:enumeration value="Badenoch East" />
      <xs:enumeration value="Strathspey South" />
      <xs:enumeration value="Strathspey North East" />
      <xs:enumeration value="Grantown on Spey" />
      <xs:enumeration value="Mallaig and Small Isles" />
      <xs:enumeration value="Kilmallie and Invergarry" />
      <xs:enumeration value="Claggan and Glen Spean" />
      <xs:enumeration value="Ardnamurchan and Morvern" />
      <xs:enumeration value="Caol" />
      <xs:enumeration value="Fort William North" />
      <xs:enumeration value="Fort William South" />
      <xs:enumeration value="Glencoe" />
      <xs:enumeration value="Ward 1" />
      <xs:enumeration value="Ward 2" />
      <xs:enumeration value="Ward 3" />
      <xs:enumeration value="Ward 4" />
      <xs:enumeration value="Ward 5" />
      <xs:enumeration value="Ward 6" />
      <xs:enumeration value="Ward 7" />
      <xs:enumeration value="Ward 8" />
      <xs:enumeration value="Ward 9" />
      <xs:enumeration value="Ward 10" />
      <xs:enumeration value="Ward 11" />
      <xs:enumeration value="Ward 12" />
      <xs:enumeration value="Ward 13" />
      <xs:enumeration value="Ward 14" />
      <xs:enumeration value="Ward 15" />
      <xs:enumeration value="Ward 16" />
      <xs:enumeration value="Ward 17" />
      <xs:enumeration value="Ward 18" />
      <xs:enumeration value="Ward 19" />
      <xs:enumeration value="Ward 20" />
      <xs:enumeration value="Penicuik South West" />
      <xs:enumeration value="Penicuik North" />
      <xs:enumeration value="Penicuik/Roslin" />
      <xs:enumeration value="Penicuik South East" />
      <xs:enumeration value="Bilston/Roslin" />
      <xs:enumeration value="Loanhead" />
      <xs:enumeration value="Poltonhall/Rosewell" />
      <xs:enumeration value="Bonnyrigg North" />
      <xs:enumeration value="Bonnyrigg South" />
      <xs:enumeration value="Newtongrange" />
      <xs:enumeration value="Arniston/Cockpen" />
      <xs:enumeration value="Gorebridge South" />
      <xs:enumeration value="Dalkeith/Newton" />
      <xs:enumeration value="Dalkeith/Eskbank" />
      <xs:enumeration value="Dalkeith/Woodburn" />
      <xs:enumeration value="Newbattle/Pathhead" />
      <xs:enumeration value="Easthouses/Mayfield North" />
      <xs:enumeration value="Mayfield South" />
      <xs:enumeration value="Elgin - Bishopmill West" />
      <xs:enumeration value="Elgin - Bishopmill East" />
      <xs:enumeration value="Elgin - Cathedral" />
      <xs:enumeration value="Elgin - Central West" />
      <xs:enumeration value="New Elgin West" />
      <xs:enumeration value="New Elgin East" />
      <xs:enumeration value="Forres East" />
      <xs:enumeration value="Forres Central" />
      <xs:enumeration value="Finderne" />
      <xs:enumeration value="Forres West and Altyre" />
      <xs:enumeration value="Burghsea" />
      <xs:enumeration value="Heldon and Laich" />
      <xs:enumeration value="Lossiemouth East" />
      <xs:enumeration value="Lossiemouth West" />
      <xs:enumeration value="Lhanbryde and Birnie" />
      <xs:enumeration value="Innes" />
      <xs:enumeration value="Lennox" />
      <xs:enumeration value="Buckie West" />
      <xs:enumeration value="Buckie Central" />
      <xs:enumeration value="Buckie East and Findochty" />
      <xs:enumeration value="Rathford" />
      <xs:enumeration value="Fife - Keith and Strathisla" />
      <xs:enumeration value="Keith" />
      <xs:enumeration value="Rural Keith and Rothes" />
      <xs:enumeration value="Speyside" />
      <xs:enumeration value="Glenlivet" />
      <xs:enumeration value="Irvine West" />
      <xs:enumeration value="Irvine Townhead" />
      <xs:enumeration value="Irvine Vineburgh and Woodlands South" />
      <xs:enumeration value="Irvine North" />
      <xs:enumeration value="Eglinton and Lawthorn" />
      <xs:enumeration value="Dreghorn" />
      <xs:enumeration value="Irvine Landward" />
      <xs:enumeration value="Bourtreehill" />
      <xs:enumeration value="Woodlands North and Girdle Toll" />
      <xs:enumeration value="Kilwinning East" />
      <xs:enumeration value="Kilwinning South" />
      <xs:enumeration value="Kilwinning West" />
      <xs:enumeration value="Stevenston North" />
      <xs:enumeration value="Stevenston South" />
      <xs:enumeration value="Beith" />
      <xs:enumeration value="Dalry" />
      <xs:enumeration value="Garnock East" />
      <xs:enumeration value="Kilbirnie South" />
      <xs:enumeration value="Kilbirnie North" />
      <xs:enumeration value="Saltcoats East" />
      <xs:enumeration value="South Beach" />
      <xs:enumeration value="Saltcoats North" />
      <xs:enumeration value="Ardrossan South" />
      <xs:enumeration value="Ardrossan North" />
      <xs:enumeration value="West Kilbride" />
      <xs:enumeration value="Largs South and Fairlie" />
      <xs:enumeration value="Largs West and Cumbrae" />
      <xs:enumeration value="Largs East" />
      <xs:enumeration value="Largs North and Skelmorlie" />
      <xs:enumeration value="Arran" />
      <xs:enumeration value="Ladywell" />
      <xs:enumeration value="Calder Valley" />
      <xs:enumeration value="Forgewood" />
      <xs:enumeration value="North Motherwell" />
      <xs:enumeration value="New Stevenston and Carfin" />
      <xs:enumeration value="Craigneuk" />
      <xs:enumeration value="Belhaven" />
      <xs:enumeration value="Stewarton" />
      <xs:enumeration value="Cambusnethan" />
      <xs:enumeration value="Coltness" />
      <xs:enumeration value="Watsonville" />
      <xs:enumeration value="Knowetop" />
      <xs:enumeration value="Muirhouse and Netherton" />
      <xs:enumeration value="Pather and Gowkthrapple" />
      <xs:enumeration value="Garrion" />
      <xs:enumeration value="Newmains" />
      <xs:enumeration value="Stane" />
      <xs:enumeration value="Dykehead" />
      <xs:enumeration value="Cleland" />
      <xs:enumeration value="Benhar" />
      <xs:enumeration value="Tannochside" />
      <xs:enumeration value="Fallside" />
      <xs:enumeration value="Viewpark" />
      <xs:enumeration value="Bellshill North" />
      <xs:enumeration value="Orbiston" />
      <xs:enumeration value="Mossend West and Thorndean" />
      <xs:enumeration value="Holytown" />
      <xs:enumeration value="Mossend East and New Stevenston North" />
      <xs:enumeration value="Newarthill" />
      <xs:enumeration value="Hattonrig" />
      <xs:enumeration value="Townhead" />
      <xs:enumeration value="Blairpark" />
      <xs:enumeration value="North Central and Glenboig" />
      <xs:enumeration value="Coatbridge Central" />
      <xs:enumeration value="Sikeside and Carnbroe" />
      <xs:enumeration value="Bargeddie and Langloan" />
      <xs:enumeration value="Kirkwood" />
      <xs:enumeration value="Kirkshaws" />
      <xs:enumeration value="Shawhead" />
      <xs:enumeration value="Old Monkland" />
      <xs:enumeration value="Whinhall" />
      <xs:enumeration value="Academy" />
      <xs:enumeration value="Airdrie Central" />
      <xs:enumeration value="Clarkston" />
      <xs:enumeration value="New Monkland West" />
      <xs:enumeration value="Plains and Caldercruix" />
      <xs:enumeration value="North Cairnhill and Coatdyke" />
      <xs:enumeration value="South East Cairnhill and Gartlea" />
      <xs:enumeration value="Craigneuk and Petersburn" />
      <xs:enumeration value="Calderbank" />
      <xs:enumeration value="Chapelhall" />
      <xs:enumeration value="Salsburgh" />
      <xs:enumeration value="Kildrum and Park" />
      <xs:enumeration value="Seafar and The Village" />
      <xs:enumeration value="Balloch East and Ravenswood" />
      <xs:enumeration value="Balloch West, Blackwood East and Craigmarloch" />
      <xs:enumeration value="Westerwood, Carrickstone and Dullatur" />
      <xs:enumeration value="Abronhill South" />
      <xs:enumeration value="Abronhill Central and North" />
      <xs:enumeration value="Carbrain East" />
      <xs:enumeration value="Carbrain West and Greenfaulds" />
      <xs:enumeration value="Condorrat Central" />
      <xs:enumeration value="Condorrat North and Westfield" />
      <xs:enumeration value="Croy, Kilsyth South and Smithstone" />
      <xs:enumeration value="Queenzieburn and Kilsyth West" />
      <xs:enumeration value="Banton and Kilsyth East" />
      <xs:enumeration value="Moodiesburn East and Blackwood West" />
      <xs:enumeration value="Moodiesburn West and Gartcosh" />
      <xs:enumeration value="Chryston and Auchinloch" />
      <xs:enumeration value="Stepps" />
      <xs:enumeration value="Pickaquoy" />
      <xs:enumeration value="Berstane and Work" />
      <xs:enumeration value="Warrenfield" />
      <xs:enumeration value="Lynnfield" />
      <xs:enumeration value="Brandyquoy" />
      <xs:enumeration value="Papdale" />
      <xs:enumeration value="Scapa and Kirkwall South West" />
      <xs:enumeration value="Shapinsay and Kirkwall Harbour" />
      <xs:enumeration value="Stromness North" />
      <xs:enumeration value="Stromness South, Graemsay and North Hoy" />
      <xs:enumeration value="Orphir, Walls and Flotta" />
      <xs:enumeration value="Firth and Sunnybrae" />
      <xs:enumeration value="Harray and Stenness" />
      <xs:enumeration value="Evie, Rendall, Rousay, Egilsay and Wyre" />
      <xs:enumeration value="Birsay and Dounby" />
      <xs:enumeration value="Sandwick and Stromness Landward" />
      <xs:enumeration value="St Andrew's Deerness and Wideford" />
      <xs:enumeration value="Holm and Burray" />
      <xs:enumeration value="South Ronaldsay" />
      <xs:enumeration value="Sanday, North Ronaldsay and Stronsay" />
      <xs:enumeration value="Papa Westray, Westray and Eday" />
      <xs:enumeration value="Rannoch and Atholl" />
      <xs:enumeration value="Pitlochry" />
      <xs:enumeration value="Rattray and Glenshee" />
      <xs:enumeration value="Alyth and Old Rattray" />
      <xs:enumeration value="Coupar Angus and Meigle" />
      <xs:enumeration value="Rosemount" />
      <xs:enumeration value="Blairgowrie" />
      <xs:enumeration value="Kinclaven and Clunie" />
      <xs:enumeration value="Strathtay and Dunkeld" />
      <xs:enumeration value="Breadalbane" />
      <xs:enumeration value="Comrie" />
      <xs:enumeration value="Crieff North" />
      <xs:enumeration value="Crieff South" />
      <xs:enumeration value="Strathord and Logiealmond" />
      <xs:enumeration value="Strathalmond" />
      <xs:enumeration value="Scone" />
      <xs:enumeration value="Dunsinnan" />
      <xs:enumeration value="East Carse" />
      <xs:enumeration value="Central Carse" />
      <xs:enumeration value="Barnhill and West Carse" />
      <xs:enumeration value="Pictstonhill" />
      <xs:enumeration value="North Inch" />
      <xs:enumeration value="Muirton" />
      <xs:enumeration value="North Muirton" />
      <xs:enumeration value="Hillyland" />
      <xs:enumeration value="Ruthven Park" />
      <xs:enumeration value="North Letham" />
      <xs:enumeration value="South Letham" />
      <xs:enumeration value="Wellshill" />
      <xs:enumeration value="Oakbank" />
      <xs:enumeration value="Craigie" />
      <xs:enumeration value="South Inch" />
      <xs:enumeration value="Moncreiffe and Friarton" />
      <xs:enumeration value="Earn" />
      <xs:enumeration value="Auchterarder Mid Earn" />
      <xs:enumeration value="Strathallan and Glendevon" />
      <xs:enumeration value="Auchterarder Craig Rossie" />
      <xs:enumeration value="Abernethy and Glenfarg" />
      <xs:enumeration value="Milnathort and North Kinross" />
      <xs:enumeration value="Kinross Town" />
      <xs:enumeration value="Kinross-shire" />
      <xs:enumeration value="Shortroods" />
      <xs:enumeration value="St. James" />
      <xs:enumeration value="Ferguslie" />
      <xs:enumeration value="Linwood East" />
      <xs:enumeration value="Linwood West" />
      <xs:enumeration value="Brediland" />
      <xs:enumeration value="Foxbar" />
      <xs:enumeration value="Stanely" />
      <xs:enumeration value="Glenburn South" />
      <xs:enumeration value="Glenburn North" />
      <xs:enumeration value="Paisley Central" />
      <xs:enumeration value="Lounsdale and Millarston" />
      <xs:enumeration value="Castlehead" />
      <xs:enumeration value="Saucel and Hunterhill" />
      <xs:enumeration value="Lochfield" />
      <xs:enumeration value="Seedhill" />
      <xs:enumeration value="Blackhall and Hawkhead" />
      <xs:enumeration value="Gallowhill and Whitehaugh" />
      <xs:enumeration value="Sandyford" />
      <xs:enumeration value="Ralston" />
      <xs:enumeration value="Johnstone Central" />
      <xs:enumeration value="Johnstone Cochranemill" />
      <xs:enumeration value="Johnstone Castle" />
      <xs:enumeration value="Johnstone West" />
      <xs:enumeration value="Elderslie" />
      <xs:enumeration value="Blythswood" />
      <xs:enumeration value="Deanside" />
      <xs:enumeration value="Townhead" />
      <xs:enumeration value="Arkleston and Newmains" />
      <xs:enumeration value="Moorpark" />
      <xs:enumeration value="Lochwinnoch and Howwood" />
      <xs:enumeration value="Bridge of Weir South and Brookfield" />
      <xs:enumeration value="Kilbarchan" />
      <xs:enumeration value="Bridge of Weir North and Craigends" />
      <xs:enumeration value="Houston and Langbank" />
      <xs:enumeration value="Erskine S.E. and Inchinnan" />
      <xs:enumeration value="Parkmains" />
      <xs:enumeration value="Erskine Central" />
      <xs:enumeration value="Erskine West" />
      <xs:enumeration value="Bishopton" />
      <xs:enumeration value="Sound" />
      <xs:enumeration value="Clickimin" />
      <xs:enumeration value="North Central" />
      <xs:enumeration value="Breiwick" />
      <xs:enumeration value="South Central" />
      <xs:enumeration value="Harbour and Bressay" />
      <xs:enumeration value="North" />
      <xs:enumeration value="Upper Sound, Gulberwick and Quarff" />
      <xs:enumeration value="Unst and Island of Fetlar" />
      <xs:enumeration value="Yell" />
      <xs:enumeration value="Northmavine, Muckle Roe and Busta" />
      <xs:enumeration value="Delting West" />
      <xs:enumeration value="Delting East and Lunnasting" />
      <xs:enumeration value="Nesting, Whiteness, Girlsta and Gott" />
      <xs:enumeration value="Scalloway" />
      <xs:enumeration value="Whalsay/Skerries" />
      <xs:enumeration value="Sandsting, Aithsting and Weisdale" />
      <xs:enumeration value="Walls, Sandness and Clousta" />
      <xs:enumeration value="Burra/Trondra" />
      <xs:enumeration value="Cunningsburgh and Sandwick" />
      <xs:enumeration value="Sandwick, Levenwick and Bigton" />
      <xs:enumeration value="Dunrossness" />
      <xs:enumeration value="Troon North" />
      <xs:enumeration value="Troon West" />
      <xs:enumeration value="Troon East" />
      <xs:enumeration value="Troon South" />
      <xs:enumeration value="Prestwick St Ninian's" />
      <xs:enumeration value="Prestwick St Cuthbert's and Monkton" />
      <xs:enumeration value="Prestwick St Nicholas'" />
      <xs:enumeration value="Prestwick Kingcase" />
      <xs:enumeration value="Prestwick Toll" />
      <xs:enumeration value="Ayr Newton" />
      <xs:enumeration value="Ayr Lochside" />
      <xs:enumeration value="Ayr Whitletts" />
      <xs:enumeration value="Ayr Craigie" />
      <xs:enumeration value="Ayr Central" />
      <xs:enumeration value="Ayr Fort" />
      <xs:enumeration value="Ayr Old Belmont" />
      <xs:enumeration value="Ayr Forehill" />
      <xs:enumeration value="Ayr Masonhill" />
      <xs:enumeration value="Ayr Belmont" />
      <xs:enumeration value="Ayr Doonfoot and Seafield" />
      <xs:enumeration value="Ayr Rozelle" />
      <xs:enumeration value="Dundonald and Loans" />
      <xs:enumeration value="Tarbolton Symington Craigie" />
      <xs:enumeration value="Annbank Mossblown St Quivox" />
      <xs:enumeration value="Coylton and Minishant" />
      <xs:enumeration value="North Carrick and Maybole West" />
      <xs:enumeration value="North Carrick and Maybole East" />
      <xs:enumeration value="South Carrick" />
      <xs:enumeration value="Girvan Ailsa" />
      <xs:enumeration value="Girvan Glendoune" />
      <xs:enumeration value="Lanark North" />
      <xs:enumeration value="Lanark South" />
      <xs:enumeration value="Lesmahagow" />
      <xs:enumeration value="Blackwood" />
      <xs:enumeration value="Clyde Valley" />
      <xs:enumeration value="Biggar/Symington and Black Mount" />
      <xs:enumeration value="Duneaton/Carmichael" />
      <xs:enumeration value="Carstairs/Carnwath" />
      <xs:enumeration value="Douglas" />
      <xs:enumeration value="Carluke/Whitehill" />
      <xs:enumeration value="Carluke/Crawforddyke" />
      <xs:enumeration value="Forth" />
      <xs:enumeration value="Law/Carluke" />
      <xs:enumeration value="Long Calderwood" />
      <xs:enumeration value="Calderglen" />
      <xs:enumeration value="Blacklaw" />
      <xs:enumeration value="Morrishall" />
      <xs:enumeration value="Maxwellton" />
      <xs:enumeration value="East Mains" />
      <xs:enumeration value="West Mains" />
      <xs:enumeration value="Duncanrig" />
      <xs:enumeration value="Westwoodhill" />
      <xs:enumeration value="Headhouse" />
      <xs:enumeration value="Heatheryknowe" />
      <xs:enumeration value="Greenhills" />
      <xs:enumeration value="Whitehills" />
      <xs:enumeration value="Hairmyres/Crosshouse" />
      <xs:enumeration value="Mossneuk/Kittoch" />
      <xs:enumeration value="Stewartfield" />
      <xs:enumeration value="Lindsay" />
      <xs:enumeration value="Avondale North" />
      <xs:enumeration value="Avondale South" />
      <xs:enumeration value="Blantyre West" />
      <xs:enumeration value="Coatshill/Low Blantyre" />
      <xs:enumeration value="Burnbank/Blantyre" />
      <xs:enumeration value="High Blantyre" />
      <xs:enumeration value="Hamilton Centre North" />
      <xs:enumeration value="Whitehill" />
      <xs:enumeration value="Bothwell South" />
      <xs:enumeration value="Uddingston South/Bothwell" />
      <xs:enumeration value="Uddingston" />
      <xs:enumeration value="Hillhouse" />
      <xs:enumeration value="Udston" />
      <xs:enumeration value="Wellhall/Earnock" />
      <xs:enumeration value="Earnock" />
      <xs:enumeration value="Woodhead/Meikle Earnock" />
      <xs:enumeration value="Hamilton Centre/Ferniegair" />
      <xs:enumeration value="Low Waters" />
      <xs:enumeration value="Silvertonhill" />
      <xs:enumeration value="Cadzow" />
      <xs:enumeration value="Dalserf" />
      <xs:enumeration value="Larkhall East" />
      <xs:enumeration value="Larkhall West" />
      <xs:enumeration value="Larkhall South" />
      <xs:enumeration value="Stonehouse" />
      <xs:enumeration value="Rutherglen West" />
      <xs:enumeration value="Stonelaw" />
      <xs:enumeration value="Bankhead" />
      <xs:enumeration value="Spittal/Blairbeth" />
      <xs:enumeration value="Burgh" />
      <xs:enumeration value="Cairns" />
      <xs:enumeration value="Hallside" />
      <xs:enumeration value="Cambuslang Central" />
      <xs:enumeration value="Cathkin/Springhall" />
      <xs:enumeration value="Fernhill" />
      <xs:enumeration value="Kirkhill/Whitlawburn" />
      <xs:enumeration value="Eastfield" />
      <xs:enumeration value="Bridge of Allan" />
      <xs:enumeration value="Logie" />
      <xs:enumeration value="Wallace" />
      <xs:enumeration value="Raploch" />
      <xs:enumeration value="Town Centre" />
      <xs:enumeration value="Argyll" />
      <xs:enumeration value="King's Park and Cambusbarron" />
      <xs:enumeration value="Torbrex" />
      <xs:enumeration value="Broomridge" />
      <xs:enumeration value="Borestone" />
      <xs:enumeration value="Bannockburn West" />
      <xs:enumeration value="Bannockburn East" />
      <xs:enumeration value="Polmaise" />
      <xs:enumeration value="Sauchenford" />
      <xs:enumeration value="Dunblane West" />
      <xs:enumeration value="Dunblane East" />
      <xs:enumeration value="Highland" />
      <xs:enumeration value="Teith" />
      <xs:enumeration value="Trossachs" />
      <xs:enumeration value="Campsies" />
      <xs:enumeration value="Strathendrick" />
      <xs:enumeration value="Blane Valley" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Kingsfield" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Boghall" />
      <xs:enumeration value="Oatridge" />
      <xs:enumeration value="Armadale West" />
      <xs:enumeration value="Armadale Central" />
      <xs:enumeration value="Easton" />
      <xs:enumeration value="Newland" />
      <xs:enumeration value="Durhamtoun" />
      <xs:enumeration value="Deans" />
      <xs:enumeration value="Knightsridge" />
      <xs:enumeration value="Ladywell" />
      <xs:enumeration value="Kirkton" />
      <xs:enumeration value="Carmondean" />
      <xs:enumeration value="Howden" />
      <xs:enumeration value="Craigshill" />
      <xs:enumeration value="Dedridge" />
      <xs:enumeration value="Murieston" />
      <xs:enumeration value="Polkemmet" />
      <xs:enumeration value="Croftmalloch" />
      <xs:enumeration value="Almond" />
      <xs:enumeration value="Blackburn" />
      <xs:enumeration value="Houstoun" />
      <xs:enumeration value="Calderwood" />
      <xs:enumeration value="Middleton" />
      <xs:enumeration value="Strathbrock" />
      <xs:enumeration value="Fauldhouse" />
      <xs:enumeration value="Breich Valley" />
      <xs:enumeration value="Limefield" />
      <xs:enumeration value="East Calder" />
      <xs:enumeration value="Linhouse" />
      <xs:enumeration value="Port of Ness" />
      <xs:enumeration value="Dell" />
      <xs:enumeration value="Barvas and Arnol" />
      <xs:enumeration value="Shawbost" />
      <xs:enumeration value="Carloway" />
      <xs:enumeration value="Uig" />
      <xs:enumeration value="Gress" />
      <xs:enumeration value="Coll" />
      <xs:enumeration value="Blackwater" />
      <xs:enumeration value="Laxdale" />
      <xs:enumeration value="Coulregrein" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Manor Park" />
      <xs:enumeration value="Goathill" />
      <xs:enumeration value="Bayhead" />
      <xs:enumeration value="Newton" />
      <xs:enumeration value="Plasterfield" />
      <xs:enumeration value="Braighe" />
      <xs:enumeration value="Knock and Bayble" />
      <xs:enumeration value="Tiumpan" />
      <xs:enumeration value="North Lochs" />
      <xs:enumeration value="Lochs" />
      <xs:enumeration value="Harris West" />
      <xs:enumeration value="Harris East" />
      <xs:enumeration value="Paible" />
      <xs:enumeration value="Lochmaddy" />
      <xs:enumeration value="North Benbecula" />
      <xs:enumeration value="Eochar" />
      <xs:enumeration value="Loch Eynort" />
      <xs:enumeration value="Daliburgh and Eriskay" />
      <xs:enumeration value="Barra and Vatersay" />
      <xs:enumeration value="Ampthill" />
      <xs:enumeration value="Arlesey" />
      <xs:enumeration value="Aspley Guise" />
      <xs:enumeration value="Biggleswade Holme" />
      <xs:enumeration value="Biggleswade Ivel" />
      <xs:enumeration value="Biggleswade Stratton" />
      <xs:enumeration value="Clifton and Meppershall" />
      <xs:enumeration value="Cranfield" />
      <xs:enumeration value="Flitton, Greenfield and Pulloxhill" />
      <xs:enumeration value="Flitwick East" />
      <xs:enumeration value="Flitwick West" />
      <xs:enumeration value="Harlington" />
      <xs:enumeration value="Houghton, Haynes, Southill and Old Warden" />
      <xs:enumeration value="Langford and Henlow Village" />
      <xs:enumeration value="Marston" />
      <xs:enumeration value="Maulden and Clophill" />
      <xs:enumeration value="Northill and Blunham" />
      <xs:enumeration value="Potton and Wensley" />
      <xs:enumeration value="Sandy Ivel" />
      <xs:enumeration value="Sandy Pinnacle" />
      <xs:enumeration value="Shefford, Campton and Gravenhurst" />
      <xs:enumeration value="Shillington, Stondon and Henlow Camp" />
      <xs:enumeration value="Silsoe" />
      <xs:enumeration value="Stotfold" />
      <xs:enumeration value="Westoning and Tingrith" />
      <xs:enumeration value="Woburn" />
      <xs:enumeration value="Brickhill" />
      <xs:enumeration value="Bromham" />
      <xs:enumeration value="Carlton" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Cauldwell" />
      <xs:enumeration value="Clapham" />
      <xs:enumeration value="De Parys" />
      <xs:enumeration value="Eastcotts" />
      <xs:enumeration value="Goldington" />
      <xs:enumeration value="Great Barford" />
      <xs:enumeration value="Harpur" />
      <xs:enumeration value="Harrold" />
      <xs:enumeration value="Kempston East" />
      <xs:enumeration value="Kempston North" />
      <xs:enumeration value="Kempston South" />
      <xs:enumeration value="Kingsbrook" />
      <xs:enumeration value="Newnham" />
      <xs:enumeration value="Oakley" />
      <xs:enumeration value="Putnoe" />
      <xs:enumeration value="Queen's Park" />
      <xs:enumeration value="Riseley" />
      <xs:enumeration value="Roxton" />
      <xs:enumeration value="Sharnbrook" />
      <xs:enumeration value="Turvey" />
      <xs:enumeration value="Wilshamstead" />
      <xs:enumeration value="Wootton" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Barton-le-Clay" />
      <xs:enumeration value="Caddington, Hyde and Slip End" />
      <xs:enumeration value="Chiltern" />
      <xs:enumeration value="Dunstable Central" />
      <xs:enumeration value="Eaton Bray" />
      <xs:enumeration value="Grovebury" />
      <xs:enumeration value="Heath and Reach" />
      <xs:enumeration value="Houghton Hall" />
      <xs:enumeration value="Icknield" />
      <xs:enumeration value="Kensworth and Totternhoe" />
      <xs:enumeration value="Linslade" />
      <xs:enumeration value="Manshead" />
      <xs:enumeration value="Northfields" />
      <xs:enumeration value="Parkside" />
      <xs:enumeration value="Planets" />
      <xs:enumeration value="Plantation" />
      <xs:enumeration value="Southcott" />
      <xs:enumeration value="Stanbridge" />
      <xs:enumeration value="Streatley" />
      <xs:enumeration value="Tithe Farm" />
      <xs:enumeration value="Toddington" />
      <xs:enumeration value="Watling" />
      <xs:enumeration value="Aston Clinton" />
      <xs:enumeration value="Aylesbury Central" />
      <xs:enumeration value="Bedgrove" />
      <xs:enumeration value="Bierton" />
      <xs:enumeration value="Brill" />
      <xs:enumeration value="Buckingham North" />
      <xs:enumeration value="Buckingham South" />
      <xs:enumeration value="Cheddington" />
      <xs:enumeration value="Coldharbour" />
      <xs:enumeration value="Edlesborough" />
      <xs:enumeration value="Elmhurst and Watermead" />
      <xs:enumeration value="Gatehouse" />
      <xs:enumeration value="Great Brickhill" />
      <xs:enumeration value="Great Horwood" />
      <xs:enumeration value="Grendon Underwood" />
      <xs:enumeration value="Haddenham" />
      <xs:enumeration value="Long Crendon" />
      <xs:enumeration value="Luffield Abbey" />
      <xs:enumeration value="Mandeville and Elm Farm" />
      <xs:enumeration value="Marsh Gibbon" />
      <xs:enumeration value="Newton Longville" />
      <xs:enumeration value="Oakfield" />
      <xs:enumeration value="Pitstone" />
      <xs:enumeration value="Quainton" />
      <xs:enumeration value="Quarrendon" />
      <xs:enumeration value="Southcourt" />
      <xs:enumeration value="Steeple Claydon" />
      <xs:enumeration value="Stewkley" />
      <xs:enumeration value="Tingewick" />
      <xs:enumeration value="Waddesdon" />
      <xs:enumeration value="Walton Court and Hawkslade" />
      <xs:enumeration value="Weedon" />
      <xs:enumeration value="Wendover" />
      <xs:enumeration value="Wing" />
      <xs:enumeration value="Wingrave" />
      <xs:enumeration value="Winslow" />
      <xs:enumeration value="Amersham Common" />
      <xs:enumeration value="Amersham-on-the-Hill" />
      <xs:enumeration value="Amersham Town" />
      <xs:enumeration value="Asheridge Vale and Lowndes" />
      <xs:enumeration value="Ashley Green, Latimer and Chenies" />
      <xs:enumeration value="Austenwood" />
      <xs:enumeration value="Ballinger, South Heath and Chartridge" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Chalfont Common" />
      <xs:enumeration value="Chalfont St Giles" />
      <xs:enumeration value="Chesham Bois and Weedon Hill" />
      <xs:enumeration value="Cholesbury, The Lee and Bellingdon" />
      <xs:enumeration value="Gold Hill" />
      <xs:enumeration value="Great Missenden" />
      <xs:enumeration value="Hilltop and Townsend" />
      <xs:enumeration value="Holmer Green" />
      <xs:enumeration value="Little Chalfont" />
      <xs:enumeration value="Little Missenden" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="Penn and Coleshill" />
      <xs:enumeration value="Prestwood and Heath End" />
      <xs:enumeration value="Ridgeway" />
      <xs:enumeration value="St Mary's and Waterside" />
      <xs:enumeration value="Seer Green" />
      <xs:enumeration value="Vale" />
      <xs:enumeration value="Beaconsfield North" />
      <xs:enumeration value="Beaconsfield South" />
      <xs:enumeration value="Beaconsfield West" />
      <xs:enumeration value="Burnham Beeches" />
      <xs:enumeration value="Burnham Church" />
      <xs:enumeration value="Burnham Lent Rise" />
      <xs:enumeration value="Denham North" />
      <xs:enumeration value="Denham South" />
      <xs:enumeration value="Dorney and Burnham South" />
      <xs:enumeration value="Farnham Royal" />
      <xs:enumeration value="Gerrards Cross East and Denham South West" />
      <xs:enumeration value="Gerrards Cross North" />
      <xs:enumeration value="Gerrards Cross South" />
      <xs:enumeration value="Hedgerley and Fulmer" />
      <xs:enumeration value="Iver Heath" />
      <xs:enumeration value="Iver Village and Richings Park" />
      <xs:enumeration value="Stoke Poges" />
      <xs:enumeration value="Taplow" />
      <xs:enumeration value="Wexham and Iver West" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Bledlow and Bradenham" />
      <xs:enumeration value="Booker and Cressex" />
      <xs:enumeration value="Bourne End-cum-Hedsor" />
      <xs:enumeration value="Bowerdean" />
      <xs:enumeration value="Chiltern Rise" />
      <xs:enumeration value="Disraeli" />
      <xs:enumeration value="Downley and Plomer Hill" />
      <xs:enumeration value="Flackwell Heath and Little Marlow" />
      <xs:enumeration value="Greater Hughenden" />
      <xs:enumeration value="Greater Marlow" />
      <xs:enumeration value="Hambleden Valley" />
      <xs:enumeration value="Hazlemere North" />
      <xs:enumeration value="Hazlemere South" />
      <xs:enumeration value="Icknield" />
      <xs:enumeration value="Lacey Green, Speen and the Hampdens" />
      <xs:enumeration value="Marlow North and West" />
      <xs:enumeration value="Marlow South East" />
      <xs:enumeration value="Micklefield" />
      <xs:enumeration value="Oakridge and Castlefield" />
      <xs:enumeration value="Ryemead" />
      <xs:enumeration value="Sands" />
      <xs:enumeration value="Stokenchurch and Radnage" />
      <xs:enumeration value="Terriers and Amersham Hill" />
      <xs:enumeration value="Totteridge" />
      <xs:enumeration value="The Risboroughs" />
      <xs:enumeration value="The Wooburns" />
      <xs:enumeration value="Tylers Green and Loudwater" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Arbury" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Cherry Hinton" />
      <xs:enumeration value="Coleridge" />
      <xs:enumeration value="East Chesterton" />
      <xs:enumeration value="King's Hedges" />
      <xs:enumeration value="Market" />
      <xs:enumeration value="Newnham" />
      <xs:enumeration value="Petersfield" />
      <xs:enumeration value="Queen Edith's" />
      <xs:enumeration value="Romsey" />
      <xs:enumeration value="Trumpington" />
      <xs:enumeration value="West Chesterton" />
      <xs:enumeration value="Bottisham" />
      <xs:enumeration value="Burwell" />
      <xs:enumeration value="Cheveley" />
      <xs:enumeration value="Downham Villages" />
      <xs:enumeration value="Dullingham Villages" />
      <xs:enumeration value="Ely East" />
      <xs:enumeration value="Ely North" />
      <xs:enumeration value="Ely South" />
      <xs:enumeration value="Ely West" />
      <xs:enumeration value="Fordham Villages" />
      <xs:enumeration value="Haddenham" />
      <xs:enumeration value="Isleham" />
      <xs:enumeration value="Littleport East" />
      <xs:enumeration value="Littleport West" />
      <xs:enumeration value="Soham North" />
      <xs:enumeration value="Soham South" />
      <xs:enumeration value="Stretham" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="The Swaffhams" />
      <xs:enumeration value="Bassenhally" />
      <xs:enumeration value="Benwick, Coates and Eastrea" />
      <xs:enumeration value="Birch" />
      <xs:enumeration value="Clarkson" />
      <xs:enumeration value="Delph" />
      <xs:enumeration value="Doddington" />
      <xs:enumeration value="Elm and Christchurch" />
      <xs:enumeration value="Hill" />
      <xs:enumeration value="Kingsmoor" />
      <xs:enumeration value="Kirkgate" />
      <xs:enumeration value="Lattersey" />
      <xs:enumeration value="Manea" />
      <xs:enumeration value="March East" />
      <xs:enumeration value="March North" />
      <xs:enumeration value="March West" />
      <xs:enumeration value="Medworth" />
      <xs:enumeration value="Parson Drove and Wisbech St Mary" />
      <xs:enumeration value="Peckover" />
      <xs:enumeration value="Roman Bank" />
      <xs:enumeration value="St Andrews" />
      <xs:enumeration value="St Marys" />
      <xs:enumeration value="Slade Lode" />
      <xs:enumeration value="Staithe" />
      <xs:enumeration value="The Mills" />
      <xs:enumeration value="Waterlees" />
      <xs:enumeration value="Wenneye" />
      <xs:enumeration value="Wimblington" />
      <xs:enumeration value="Alconbury and The Stukeleys" />
      <xs:enumeration value="Brampton" />
      <xs:enumeration value="Buckden" />
      <xs:enumeration value="Earith" />
      <xs:enumeration value="Ellington" />
      <xs:enumeration value="Elton and Folksworth" />
      <xs:enumeration value="Fenstanton" />
      <xs:enumeration value="Godmanchester" />
      <xs:enumeration value="Gransden and The Offords" />
      <xs:enumeration value="Huntingdon East" />
      <xs:enumeration value="Huntingdon North" />
      <xs:enumeration value="Huntingdon West" />
      <xs:enumeration value="Kimbolton and Staughton" />
      <xs:enumeration value="Little Paxton" />
      <xs:enumeration value="Ramsey" />
      <xs:enumeration value="St Ives East" />
      <xs:enumeration value="St Ives South" />
      <xs:enumeration value="St Ives West" />
      <xs:enumeration value="St Neots Eaton Ford" />
      <xs:enumeration value="St Neots Eaton Socon" />
      <xs:enumeration value="St Neots Eynesbury" />
      <xs:enumeration value="St Neots Priory Park" />
      <xs:enumeration value="Sawtry" />
      <xs:enumeration value="Somersham" />
      <xs:enumeration value="Stilton" />
      <xs:enumeration value="The Hemingfords" />
      <xs:enumeration value="Upwood and The Raveleys" />
      <xs:enumeration value="Warboys and Bury" />
      <xs:enumeration value="Yaxley and Farcet" />
      <xs:enumeration value="Balsham" />
      <xs:enumeration value="Bar Hill" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Bassingbourn" />
      <xs:enumeration value="Bourn" />
      <xs:enumeration value="Caldecote" />
      <xs:enumeration value="Comberton" />
      <xs:enumeration value="Cottenham" />
      <xs:enumeration value="Duxford" />
      <xs:enumeration value="Fowlmere and Foxton" />
      <xs:enumeration value="Fulbourn" />
      <xs:enumeration value="Gamlingay" />
      <xs:enumeration value="Girton" />
      <xs:enumeration value="Hardwick" />
      <xs:enumeration value="Harston and Hauxton" />
      <xs:enumeration value="Haslingfield and The Eversdens" />
      <xs:enumeration value="Histon and Impington" />
      <xs:enumeration value="Linton" />
      <xs:enumeration value="Longstanton" />
      <xs:enumeration value="Melbourn" />
      <xs:enumeration value="Meldreth" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Orwell and Barrington" />
      <xs:enumeration value="Papworth and Elsworth" />
      <xs:enumeration value="Sawston" />
      <xs:enumeration value="Swavesey" />
      <xs:enumeration value="Teversham" />
      <xs:enumeration value="The Abingtons" />
      <xs:enumeration value="The Mordens" />
      <xs:enumeration value="The Shelfords and Stapleford" />
      <xs:enumeration value="The Wilbrahams" />
      <xs:enumeration value="Waterbeach" />
      <xs:enumeration value="Whittlesford" />
      <xs:enumeration value="Willingham and Over" />
      <xs:enumeration value="Barrow" />
      <xs:enumeration value="Blacon Hall" />
      <xs:enumeration value="Blacon Lodge" />
      <xs:enumeration value="Boughton" />
      <xs:enumeration value="Boughton Heath" />
      <xs:enumeration value="Christleton" />
      <xs:enumeration value="City &amp; St Anne's" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Curzon &amp; Westminster" />
      <xs:enumeration value="Dodleston" />
      <xs:enumeration value="Elton" />
      <xs:enumeration value="Farndon" />
      <xs:enumeration value="Handbridge &amp; St Mary's" />
      <xs:enumeration value="Hoole All Saints" />
      <xs:enumeration value="Hoole Groves" />
      <xs:enumeration value="Huntington" />
      <xs:enumeration value="Kelsall" />
      <xs:enumeration value="Lache Park" />
      <xs:enumeration value="Malpas" />
      <xs:enumeration value="Mickle Trafford" />
      <xs:enumeration value="Mollington" />
      <xs:enumeration value="Newton Brook" />
      <xs:enumeration value="Newton St Michaels" />
      <xs:enumeration value="Saughall" />
      <xs:enumeration value="Tarvin" />
      <xs:enumeration value="Tattenhall" />
      <xs:enumeration value="Tilston" />
      <xs:enumeration value="Upton Grange" />
      <xs:enumeration value="Upton Westlea" />
      <xs:enumeration value="Vicars Cross" />
      <xs:enumeration value="Waverton" />
      <xs:enumeration value="Alsager Central" />
      <xs:enumeration value="Alsager East" />
      <xs:enumeration value="Alsager West" />
      <xs:enumeration value="Astbury" />
      <xs:enumeration value="Brereton" />
      <xs:enumeration value="Buglawton" />
      <xs:enumeration value="Congleton Central" />
      <xs:enumeration value="Congleton North" />
      <xs:enumeration value="Congleton North West" />
      <xs:enumeration value="Congleton South" />
      <xs:enumeration value="Congleton West" />
      <xs:enumeration value="Dane Valley" />
      <xs:enumeration value="Holmes Chapel" />
      <xs:enumeration value="Lawton" />
      <xs:enumeration value="Middlewich Cledford" />
      <xs:enumeration value="Middlewich Kinderton" />
      <xs:enumeration value="Odd Rode" />
      <xs:enumeration value="Sandbach East" />
      <xs:enumeration value="Sandbach North" />
      <xs:enumeration value="Sandbach West" />
      <xs:enumeration value="Acton" />
      <xs:enumeration value="Alexandra" />
      <xs:enumeration value="Audlem" />
      <xs:enumeration value="Barony Weaver" />
      <xs:enumeration value="Birchin" />
      <xs:enumeration value="Bunbury" />
      <xs:enumeration value="Coppenhall" />
      <xs:enumeration value="Delamere" />
      <xs:enumeration value="Englesea" />
      <xs:enumeration value="Grosvenor" />
      <xs:enumeration value="Haslington" />
      <xs:enumeration value="Leighton" />
      <xs:enumeration value="Maw Green" />
      <xs:enumeration value="Minshull" />
      <xs:enumeration value="Peckforton" />
      <xs:enumeration value="St Barnabas" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Shavington" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Waldron" />
      <xs:enumeration value="Wellington" />
      <xs:enumeration value="Wells Green" />
      <xs:enumeration value="Willaston" />
      <xs:enumeration value="Wistaston Green" />
      <xs:enumeration value="Wrenbury" />
      <xs:enumeration value="Wybunbury" />
      <xs:enumeration value="Burton &amp; Ness" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Groves" />
      <xs:enumeration value="Ledsham" />
      <xs:enumeration value="Little Neston" />
      <xs:enumeration value="Neston" />
      <xs:enumeration value="Parkgate" />
      <xs:enumeration value="Pooltown" />
      <xs:enumeration value="Rivacre" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Rossmore" />
      <xs:enumeration value="Stanlow &amp; Wolverham" />
      <xs:enumeration value="Strawberry Fields" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Sutton Green &amp; Manor" />
      <xs:enumeration value="Westminster" />
      <xs:enumeration value="Whitby" />
      <xs:enumeration value="Willaston &amp; Thornton" />
      <xs:enumeration value="Alderley Edge" />
      <xs:enumeration value="Bollington Central" />
      <xs:enumeration value="Bollington East" />
      <xs:enumeration value="Bollington West" />
      <xs:enumeration value="Chelford" />
      <xs:enumeration value="Dean Row" />
      <xs:enumeration value="Disley &amp; Lyme Handley" />
      <xs:enumeration value="Fulshaw" />
      <xs:enumeration value="Gawsworth" />
      <xs:enumeration value="Handforth" />
      <xs:enumeration value="Henbury" />
      <xs:enumeration value="High Legh" />
      <xs:enumeration value="Hough" />
      <xs:enumeration value="Knutsford Bexton" />
      <xs:enumeration value="Knutsford Nether" />
      <xs:enumeration value="Knutsford Norbury Booths" />
      <xs:enumeration value="Knutsford Over" />
      <xs:enumeration value="Lacey Green" />
      <xs:enumeration value="Macclesfield Bollinbrook" />
      <xs:enumeration value="Macclesfield Broken Cross" />
      <xs:enumeration value="Macclesfield Central" />
      <xs:enumeration value="Macclesfield East" />
      <xs:enumeration value="Macclesfield Hurdsfield" />
      <xs:enumeration value="Macclesfield Ivy" />
      <xs:enumeration value="Macclesfield Ryles" />
      <xs:enumeration value="Macclesfield South" />
      <xs:enumeration value="Macclesfield Tytherington" />
      <xs:enumeration value="Macclesfield West" />
      <xs:enumeration value="Mere" />
      <xs:enumeration value="Mobberley" />
      <xs:enumeration value="Morley &amp; Styal" />
      <xs:enumeration value="Plumley" />
      <xs:enumeration value="Poynton Central" />
      <xs:enumeration value="Poynton East" />
      <xs:enumeration value="Poynton West" />
      <xs:enumeration value="Prestbury" />
      <xs:enumeration value="Rainow" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Barnton" />
      <xs:enumeration value="Cogshall" />
      <xs:enumeration value="Cuddington &amp; Oakmere" />
      <xs:enumeration value="Davenham &amp; Moulton" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Frodsham North" />
      <xs:enumeration value="Frodsham South" />
      <xs:enumeration value="Hartford &amp; Whitegate" />
      <xs:enumeration value="Helsby" />
      <xs:enumeration value="Kingsley" />
      <xs:enumeration value="Leftwich &amp; Kingsmead" />
      <xs:enumeration value="Lostock &amp; Wincham" />
      <xs:enumeration value="Mara" />
      <xs:enumeration value="Milton Weaver" />
      <xs:enumeration value="Northwich Castle" />
      <xs:enumeration value="Northwich Winnington" />
      <xs:enumeration value="Northwich Witton" />
      <xs:enumeration value="Rudheath &amp; South Witton" />
      <xs:enumeration value="Seven Oaks &amp; Marston" />
      <xs:enumeration value="Shakerley" />
      <xs:enumeration value="Tarporley &amp; Oulton" />
      <xs:enumeration value="Weaverham" />
      <xs:enumeration value="Winsford Dene" />
      <xs:enumeration value="Winsford Gravel" />
      <xs:enumeration value="Winsford Over" />
      <xs:enumeration value="Winsford Swanlow" />
      <xs:enumeration value="Winsford Verdin" />
      <xs:enumeration value="Winsford Wharton" />
      <xs:enumeration value="Callington" />
      <xs:enumeration value="Calstock" />
      <xs:enumeration value="Deviock and Sheviock" />
      <xs:enumeration value="Dobwalls and District" />
      <xs:enumeration value="Duloe, Lansallos and Pelynt" />
      <xs:enumeration value="Landrake and St Dominick" />
      <xs:enumeration value="Lanteglos and St Veep" />
      <xs:enumeration value="Liskeard North" />
      <xs:enumeration value="Liskeard South" />
      <xs:enumeration value="Looe and St Martin" />
      <xs:enumeration value="Lynher" />
      <xs:enumeration value="Menheniot and St Ive" />
      <xs:enumeration value="Millbrook" />
      <xs:enumeration value="Rame Peninsula" />
      <xs:enumeration value="St Cleer and St Neot" />
      <xs:enumeration value="St Germans" />
      <xs:enumeration value="Saltash Burraton" />
      <xs:enumeration value="Saltash Essa" />
      <xs:enumeration value="Saltash Pill" />
      <xs:enumeration value="Saltash St Stephens" />
      <xs:enumeration value="Torpoint East" />
      <xs:enumeration value="Torpoint West" />
      <xs:enumeration value="Arwenack" />
      <xs:enumeration value="Boscawen" />
      <xs:enumeration value="Boslowick" />
      <xs:enumeration value="Carland" />
      <xs:enumeration value="Feock and Kea" />
      <xs:enumeration value="Kenwyn and Chacewater" />
      <xs:enumeration value="Moresk" />
      <xs:enumeration value="Mount Hawke" />
      <xs:enumeration value="Mylor" />
      <xs:enumeration value="Newlyn and Goonhavern" />
      <xs:enumeration value="Penryn" />
      <xs:enumeration value="Penwerris" />
      <xs:enumeration value="Perranporth" />
      <xs:enumeration value="Probus" />
      <xs:enumeration value="Roseland" />
      <xs:enumeration value="St Agnes" />
      <xs:enumeration value="Tregolls" />
      <xs:enumeration value="Trehaverne and Gloweth" />
      <xs:enumeration value="Trescobeas" />
      <xs:enumeration value="Breage and Crowan" />
      <xs:enumeration value="Camborne North" />
      <xs:enumeration value="Camborne South" />
      <xs:enumeration value="Camborne West" />
      <xs:enumeration value="Constantine, Gweek and Mawnan" />
      <xs:enumeration value="Grade-Ruan and Landewednack" />
      <xs:enumeration value="Helston North" />
      <xs:enumeration value="Helston South" />
      <xs:enumeration value="Illogan North" />
      <xs:enumeration value="Illogan South" />
      <xs:enumeration value="Mabe and Budock" />
      <xs:enumeration value="Meneage" />
      <xs:enumeration value="Mullion" />
      <xs:enumeration value="Porthleven and Sithney" />
      <xs:enumeration value="Redruth North" />
      <xs:enumeration value="Redruth South" />
      <xs:enumeration value="St Day, Lanner and Carharrack" />
      <xs:enumeration value="St Keverne" />
      <xs:enumeration value="Stithians" />
      <xs:enumeration value="Wendron" />
      <xs:enumeration value="Allan" />
      <xs:enumeration value="Altarnun" />
      <xs:enumeration value="Blisland and St Breward" />
      <xs:enumeration value="Bodmin St Mary's" />
      <xs:enumeration value="Bodmin St Petroc" />
      <xs:enumeration value="Bude" />
      <xs:enumeration value="Camelford" />
      <xs:enumeration value="Camelot" />
      <xs:enumeration value="Grenville" />
      <xs:enumeration value="Lanivet" />
      <xs:enumeration value="Launceston" />
      <xs:enumeration value="Marhamchurch" />
      <xs:enumeration value="North Petherwin" />
      <xs:enumeration value="Padstow and District" />
      <xs:enumeration value="Poughill and Stratton" />
      <xs:enumeration value="St Endellion and St Kew" />
      <xs:enumeration value="St Minver" />
      <xs:enumeration value="South Petherwin" />
      <xs:enumeration value="Stokeclimsland" />
      <xs:enumeration value="Tremaine" />
      <xs:enumeration value="Valency" />
      <xs:enumeration value="Wadebridge" />
      <xs:enumeration value="Week St Mary and Whitstone" />
      <xs:enumeration value="Goldsithney" />
      <xs:enumeration value="Gulval and Heamoor" />
      <xs:enumeration value="Gwinear, Gwithian and Hayle East" />
      <xs:enumeration value="Hayle North" />
      <xs:enumeration value="Hayle South" />
      <xs:enumeration value="Lelant and Carbis Bay" />
      <xs:enumeration value="Ludgvan and Towednack" />
      <xs:enumeration value="Madron and Zennor" />
      <xs:enumeration value="Marazion and Perranuthnoe" />
      <xs:enumeration value="Morvah, Pendeen and St Just" />
      <xs:enumeration value="Penzance Central" />
      <xs:enumeration value="Penzance East" />
      <xs:enumeration value="Penzance Promenade" />
      <xs:enumeration value="Penzance South" />
      <xs:enumeration value="St Buryan" />
      <xs:enumeration value="St Erth and St Hilary" />
      <xs:enumeration value="St Ives North" />
      <xs:enumeration value="St Ives South" />
      <xs:enumeration value="Bethel" />
      <xs:enumeration value="Crinnis" />
      <xs:enumeration value="Edgcumbe North" />
      <xs:enumeration value="Edgcumbe South" />
      <xs:enumeration value="Fowey and Tywardreath" />
      <xs:enumeration value="Gannel" />
      <xs:enumeration value="Gover" />
      <xs:enumeration value="Lostwithiel" />
      <xs:enumeration value="Mevagissey" />
      <xs:enumeration value="Mount Charles" />
      <xs:enumeration value="Poltair" />
      <xs:enumeration value="Rialton" />
      <xs:enumeration value="Rock" />
      <xs:enumeration value="St Blaise" />
      <xs:enumeration value="St Columb" />
      <xs:enumeration value="St Enoder" />
      <xs:enumeration value="St Ewe" />
      <xs:enumeration value="St Stephen" />
      <xs:enumeration value="Treverbyn" />
      <xs:enumeration value="Bryher" />
      <xs:enumeration value="St. Agnes" />
      <xs:enumeration value="St. Martin's" />
      <xs:enumeration value="St. Mary's" />
      <xs:enumeration value="Tresco" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Aspatria" />
      <xs:enumeration value="Boltons" />
      <xs:enumeration value="Broughton St Bridget's" />
      <xs:enumeration value="Christchurch" />
      <xs:enumeration value="Clifton" />
      <xs:enumeration value="Crummock" />
      <xs:enumeration value="Dalton" />
      <xs:enumeration value="Derwent Valley" />
      <xs:enumeration value="Ellen" />
      <xs:enumeration value="Ellenborough" />
      <xs:enumeration value="Ewanrigg" />
      <xs:enumeration value="Flimby" />
      <xs:enumeration value="Harrington" />
      <xs:enumeration value="Holme" />
      <xs:enumeration value="Keswick" />
      <xs:enumeration value="Marsh" />
      <xs:enumeration value="Moorclose" />
      <xs:enumeration value="Moss Bay" />
      <xs:enumeration value="Netherhall" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Seaton" />
      <xs:enumeration value="Silloth" />
      <xs:enumeration value="Solway" />
      <xs:enumeration value="Stainburn" />
      <xs:enumeration value="Wampool" />
      <xs:enumeration value="Warnell" />
      <xs:enumeration value="Waver" />
      <xs:enumeration value="Wharrels" />
      <xs:enumeration value="Wigton" />
      <xs:enumeration value="Barrow Island" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Dalton North" />
      <xs:enumeration value="Dalton South" />
      <xs:enumeration value="Hawcoat" />
      <xs:enumeration value="Hindpool" />
      <xs:enumeration value="Newbarns" />
      <xs:enumeration value="Ormsgill" />
      <xs:enumeration value="Parkside" />
      <xs:enumeration value="Risedale" />
      <xs:enumeration value="Roosecote" />
      <xs:enumeration value="Walney North" />
      <xs:enumeration value="Walney South" />
      <xs:enumeration value="Belah" />
      <xs:enumeration value="Belle Vue" />
      <xs:enumeration value="Botcherby" />
      <xs:enumeration value="Brampton" />
      <xs:enumeration value="Burgh" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Currock" />
      <xs:enumeration value="Dalston" />
      <xs:enumeration value="Denton Holme" />
      <xs:enumeration value="Great Corby and Geltsdale" />
      <xs:enumeration value="Harraby" />
      <xs:enumeration value="Hayton" />
      <xs:enumeration value="Irthing" />
      <xs:enumeration value="Longtown &amp; Rockcliffe" />
      <xs:enumeration value="Lyne" />
      <xs:enumeration value="Morton" />
      <xs:enumeration value="St Aidans" />
      <xs:enumeration value="Stanwix Rural" />
      <xs:enumeration value="Stanwix Urban" />
      <xs:enumeration value="Upperby" />
      <xs:enumeration value="Wetheral" />
      <xs:enumeration value="Yewdale" />
      <xs:enumeration value="Arlecdon" />
      <xs:enumeration value="Beckermet" />
      <xs:enumeration value="Bootle" />
      <xs:enumeration value="Bransty" />
      <xs:enumeration value="Cleator Moor North" />
      <xs:enumeration value="Cleator Moor South" />
      <xs:enumeration value="Distington" />
      <xs:enumeration value="Egremont North" />
      <xs:enumeration value="Egremont South" />
      <xs:enumeration value="Ennerdale" />
      <xs:enumeration value="Frizington" />
      <xs:enumeration value="Gosforth" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Haverigg" />
      <xs:enumeration value="Hensingham" />
      <xs:enumeration value="Hillcrest" />
      <xs:enumeration value="Holborn Hill" />
      <xs:enumeration value="Kells" />
      <xs:enumeration value="Millom Without" />
      <xs:enumeration value="Mirehouse" />
      <xs:enumeration value="Moresby" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="St Bees" />
      <xs:enumeration value="Sandwith" />
      <xs:enumeration value="Seascale" />
      <xs:enumeration value="Alston Moor" />
      <xs:enumeration value="Appleby (Appleby)" />
      <xs:enumeration value="Appleby (Bongate)" />
      <xs:enumeration value="Askham" />
      <xs:enumeration value="Brough" />
      <xs:enumeration value="Crosby Ravensworth" />
      <xs:enumeration value="Dacre" />
      <xs:enumeration value="Eamont" />
      <xs:enumeration value="Greystoke" />
      <xs:enumeration value="Hartside" />
      <xs:enumeration value="Hesket" />
      <xs:enumeration value="Kirkby Stephen" />
      <xs:enumeration value="Kirkby Thore" />
      <xs:enumeration value="Kirkoswald" />
      <xs:enumeration value="Langwathby" />
      <xs:enumeration value="Lazonby" />
      <xs:enumeration value="Long Marton" />
      <xs:enumeration value="Morland" />
      <xs:enumeration value="Orton with Tebay" />
      <xs:enumeration value="Penrith Carleton" />
      <xs:enumeration value="Penrith East" />
      <xs:enumeration value="Penrith North" />
      <xs:enumeration value="Penrith Pategill" />
      <xs:enumeration value="Penrith South" />
      <xs:enumeration value="Penrith West" />
      <xs:enumeration value="Ravenstonedale" />
      <xs:enumeration value="Shap" />
      <xs:enumeration value="Skelton" />
      <xs:enumeration value="Ullswater" />
      <xs:enumeration value="Warcop" />
      <xs:enumeration value="Arnside &amp; Beetham" />
      <xs:enumeration value="Broughton" />
      <xs:enumeration value="Burneside" />
      <xs:enumeration value="Burton &amp; Holme" />
      <xs:enumeration value="Cartmel" />
      <xs:enumeration value="Coniston" />
      <xs:enumeration value="Crake Valley" />
      <xs:enumeration value="Crooklands" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Hawkshead" />
      <xs:enumeration value="Holker" />
      <xs:enumeration value="Kendal Castle" />
      <xs:enumeration value="Kendal Far Cross" />
      <xs:enumeration value="Kendal Fell" />
      <xs:enumeration value="Kendal Glebelands" />
      <xs:enumeration value="Kendal Heron Hill" />
      <xs:enumeration value="Kendal Highgate" />
      <xs:enumeration value="Kendal Kirkland" />
      <xs:enumeration value="Kendal Mintsfeet" />
      <xs:enumeration value="Kendal Nether" />
      <xs:enumeration value="Kendal Oxenholme" />
      <xs:enumeration value="Kendal Parks" />
      <xs:enumeration value="Kendal Stonecross" />
      <xs:enumeration value="Kendal Strickland" />
      <xs:enumeration value="Kendal Underley" />
      <xs:enumeration value="Kirkby Lonsdale" />
      <xs:enumeration value="Lakes Ambleside" />
      <xs:enumeration value="Lakes Grasmere" />
      <xs:enumeration value="Levens" />
      <xs:enumeration value="Low Furness &amp; Swarthmoor" />
      <xs:enumeration value="Lyth Valley" />
      <xs:enumeration value="Milnthorpe" />
      <xs:enumeration value="Natland" />
      <xs:enumeration value="Sedbergh" />
      <xs:enumeration value="Staveley-in-Cartmel" />
      <xs:enumeration value="Staveley-in-Westmorland" />
      <xs:enumeration value="Ulverston Central" />
      <xs:enumeration value="Ulverston East" />
      <xs:enumeration value="Ulverston North" />
      <xs:enumeration value="Ulverston South" />
      <xs:enumeration value="Ulverston Town" />
      <xs:enumeration value="Ulverston West" />
      <xs:enumeration value="Whinfell" />
      <xs:enumeration value="Windermere Applethwaite" />
      <xs:enumeration value="Windermere Bowness North" />
      <xs:enumeration value="Windermere Bowness South" />
      <xs:enumeration value="Windermere Town" />
      <xs:enumeration value="Alfreton" />
      <xs:enumeration value="Alport" />
      <xs:enumeration value="Belper Central" />
      <xs:enumeration value="Belper East" />
      <xs:enumeration value="Belper North" />
      <xs:enumeration value="Belper South" />
      <xs:enumeration value="Codnor and Waingroves" />
      <xs:enumeration value="Crich" />
      <xs:enumeration value="Duffield" />
      <xs:enumeration value="Heage and Ambergate" />
      <xs:enumeration value="Heanor and Loscoe" />
      <xs:enumeration value="Heanor East" />
      <xs:enumeration value="Heanor West" />
      <xs:enumeration value="Ironville and Riddings" />
      <xs:enumeration value="Kilburn, Denby and Holbrook" />
      <xs:enumeration value="Langley Mill and Aldercar" />
      <xs:enumeration value="Ripley" />
      <xs:enumeration value="Ripley and Marehay" />
      <xs:enumeration value="Shipley Park, Horsley and Horsley Woodhouse" />
      <xs:enumeration value="Somercotes" />
      <xs:enumeration value="South West Parishes" />
      <xs:enumeration value="Swanwick" />
      <xs:enumeration value="Wingfield" />
      <xs:enumeration value="Barlborough" />
      <xs:enumeration value="Blackwell" />
      <xs:enumeration value="Bolsover North West" />
      <xs:enumeration value="Bolsover South" />
      <xs:enumeration value="Bolsover West" />
      <xs:enumeration value="Clowne North" />
      <xs:enumeration value="Clowne South" />
      <xs:enumeration value="Elmton-with-Creswell" />
      <xs:enumeration value="Pinxton" />
      <xs:enumeration value="Pleasley" />
      <xs:enumeration value="Scarcliffe" />
      <xs:enumeration value="Shirebrook East" />
      <xs:enumeration value="Shirebrook Langwith" />
      <xs:enumeration value="Shirebrook North West" />
      <xs:enumeration value="Shirebrook South East" />
      <xs:enumeration value="Shirebrook South West" />
      <xs:enumeration value="South Normanton East" />
      <xs:enumeration value="South Normanton West" />
      <xs:enumeration value="Tibshelf" />
      <xs:enumeration value="Whitwell" />
      <xs:enumeration value="Barrow Hill and New Whittington" />
      <xs:enumeration value="Brimington North" />
      <xs:enumeration value="Brimington South" />
      <xs:enumeration value="Brockwell" />
      <xs:enumeration value="Dunston" />
      <xs:enumeration value="Hasland" />
      <xs:enumeration value="Hollingwood and Inkersall" />
      <xs:enumeration value="Holmebrook" />
      <xs:enumeration value="Linacre" />
      <xs:enumeration value="Loundsley Green" />
      <xs:enumeration value="Lowgates and Woodthorpe" />
      <xs:enumeration value="Middlecroft and Poolsbrook" />
      <xs:enumeration value="Moor" />
      <xs:enumeration value="Old Whittington" />
      <xs:enumeration value="Rother" />
      <xs:enumeration value="St Helen's" />
      <xs:enumeration value="St Leonard's" />
      <xs:enumeration value="Walton" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Ashbourne North" />
      <xs:enumeration value="Ashbourne South" />
      <xs:enumeration value="Bakewell" />
      <xs:enumeration value="Bradwell" />
      <xs:enumeration value="Brailsford" />
      <xs:enumeration value="Calver" />
      <xs:enumeration value="Carsington Water" />
      <xs:enumeration value="Chatsworth" />
      <xs:enumeration value="Clifton and Bradley" />
      <xs:enumeration value="Darley Dale" />
      <xs:enumeration value="Dovedale and Parwich" />
      <xs:enumeration value="Doveridge and Sudbury" />
      <xs:enumeration value="Hartington and Taddington" />
      <xs:enumeration value="Hathersage and Eyam" />
      <xs:enumeration value="Hulland" />
      <xs:enumeration value="Lathkill and Bradford" />
      <xs:enumeration value="Litton and Longstone" />
      <xs:enumeration value="Masson" />
      <xs:enumeration value="Matlock All Saints" />
      <xs:enumeration value="Matlock St Giles" />
      <xs:enumeration value="Norbury" />
      <xs:enumeration value="Stanton" />
      <xs:enumeration value="Tideswell" />
      <xs:enumeration value="Winster and South Darley" />
      <xs:enumeration value="Wirksworth" />
      <xs:enumeration value="Abbotsford" />
      <xs:enumeration value="Breaston" />
      <xs:enumeration value="Cotmanhay" />
      <xs:enumeration value="Derby Road East" />
      <xs:enumeration value="Derby Road West" />
      <xs:enumeration value="Draycott" />
      <xs:enumeration value="Hallam Fields" />
      <xs:enumeration value="Ilkeston Central" />
      <xs:enumeration value="Ilkeston North" />
      <xs:enumeration value="Kirk Hallam" />
      <xs:enumeration value="Little Eaton and Breadsall" />
      <xs:enumeration value="Little Hallam" />
      <xs:enumeration value="Long Eaton Central" />
      <xs:enumeration value="Nottingham Road" />
      <xs:enumeration value="Ockbrook And Borrowash" />
      <xs:enumeration value="Old Park" />
      <xs:enumeration value="Sandiacre North" />
      <xs:enumeration value="Sandiacre South" />
      <xs:enumeration value="Sawley" />
      <xs:enumeration value="Stanley" />
      <xs:enumeration value="West Hallam and Dale Abbey" />
      <xs:enumeration value="Wilsthorpe" />
      <xs:enumeration value="Barms" />
      <xs:enumeration value="Blackbrook" />
      <xs:enumeration value="Burbage" />
      <xs:enumeration value="Buxton Central" />
      <xs:enumeration value="Chapel East" />
      <xs:enumeration value="Chapel West" />
      <xs:enumeration value="Corbar" />
      <xs:enumeration value="Cote Heath" />
      <xs:enumeration value="Dinting" />
      <xs:enumeration value="Gamesley" />
      <xs:enumeration value="Hadfield North" />
      <xs:enumeration value="Hadfield South" />
      <xs:enumeration value="Hayfield" />
      <xs:enumeration value="Hope Valley" />
      <xs:enumeration value="Howard Town" />
      <xs:enumeration value="Limestone Peak" />
      <xs:enumeration value="New Mills East" />
      <xs:enumeration value="New Mills West" />
      <xs:enumeration value="Old Glossop" />
      <xs:enumeration value="Padfield" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="Sett" />
      <xs:enumeration value="Simmondley" />
      <xs:enumeration value="Stone Bench" />
      <xs:enumeration value="Temple" />
      <xs:enumeration value="Tintwistle" />
      <xs:enumeration value="Whaley Bridge" />
      <xs:enumeration value="Whitfield" />
      <xs:enumeration value="Ashover" />
      <xs:enumeration value="Barlow and Holmesfield" />
      <xs:enumeration value="Brampton and Walton" />
      <xs:enumeration value="Clay Cross North" />
      <xs:enumeration value="Clay Cross South" />
      <xs:enumeration value="Coal Aston" />
      <xs:enumeration value="Dronfield North" />
      <xs:enumeration value="Dronfield South" />
      <xs:enumeration value="Dronfield Woodhouse" />
      <xs:enumeration value="Eckington North" />
      <xs:enumeration value="Eckington South" />
      <xs:enumeration value="Gosforth Valley" />
      <xs:enumeration value="Grassmoor" />
      <xs:enumeration value="Holmewood and Heath" />
      <xs:enumeration value="Killamarsh East" />
      <xs:enumeration value="Killamarsh West" />
      <xs:enumeration value="North Wingfield Central" />
      <xs:enumeration value="Pilsley and Morton" />
      <xs:enumeration value="Renishaw" />
      <xs:enumeration value="Ridgeway and Marsh Lane" />
      <xs:enumeration value="Shirland" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Tupton" />
      <xs:enumeration value="Unstone" />
      <xs:enumeration value="Wingerworth" />
      <xs:enumeration value="Aston" />
      <xs:enumeration value="Church Gresley" />
      <xs:enumeration value="Etwall" />
      <xs:enumeration value="Hartshorne and Ticknall" />
      <xs:enumeration value="Hatton" />
      <xs:enumeration value="Hilton" />
      <xs:enumeration value="Linton" />
      <xs:enumeration value="Melbourne" />
      <xs:enumeration value="Midway" />
      <xs:enumeration value="Newhall and Stanton" />
      <xs:enumeration value="North West" />
      <xs:enumeration value="Repton" />
      <xs:enumeration value="Seales" />
      <xs:enumeration value="Stenson" />
      <xs:enumeration value="Swadlincote" />
      <xs:enumeration value="Willington and Findern" />
      <xs:enumeration value="Woodville" />
      <xs:enumeration value="Axminster Rural" />
      <xs:enumeration value="Axminster Town" />
      <xs:enumeration value="Beer and Branscombe" />
      <xs:enumeration value="Broadclyst" />
      <xs:enumeration value="Budleigh" />
      <xs:enumeration value="Clyst Valley" />
      <xs:enumeration value="Coly Valley" />
      <xs:enumeration value="Dunkeswell" />
      <xs:enumeration value="Exe Valley" />
      <xs:enumeration value="Exmouth Brixington" />
      <xs:enumeration value="Exmouth Halsdon" />
      <xs:enumeration value="Exmouth Littleham" />
      <xs:enumeration value="Exmouth Town" />
      <xs:enumeration value="Exmouth Withycombe Raleigh" />
      <xs:enumeration value="Feniton and Buckerell" />
      <xs:enumeration value="Honiton St Michael's" />
      <xs:enumeration value="Honiton St Paul's" />
      <xs:enumeration value="Newbridges" />
      <xs:enumeration value="Newton Poppleford and Harpford" />
      <xs:enumeration value="Otterhead" />
      <xs:enumeration value="Ottery St Mary Rural" />
      <xs:enumeration value="Ottery St Mary Town" />
      <xs:enumeration value="Raleigh" />
      <xs:enumeration value="Seaton" />
      <xs:enumeration value="Sidmouth Rural" />
      <xs:enumeration value="Sidmouth Sidford" />
      <xs:enumeration value="Sidmouth Town" />
      <xs:enumeration value="Tale Vale" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Whimple" />
      <xs:enumeration value="Woodbury and Lympstone" />
      <xs:enumeration value="Yarty" />
      <xs:enumeration value="Alphington" />
      <xs:enumeration value="Cowick" />
      <xs:enumeration value="Duryard" />
      <xs:enumeration value="Exwick" />
      <xs:enumeration value="Heavitree" />
      <xs:enumeration value="Mincinglake" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="Pennsylvania" />
      <xs:enumeration value="Pinhoe" />
      <xs:enumeration value="Polsloe" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="St David's" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="St Leonard's" />
      <xs:enumeration value="St Loyes" />
      <xs:enumeration value="St Thomas" />
      <xs:enumeration value="Topsham" />
      <xs:enumeration value="Whipton &amp; Barton" />
      <xs:enumeration value="Boniface" />
      <xs:enumeration value="Bradninch" />
      <xs:enumeration value="Cadbury" />
      <xs:enumeration value="Canonsleigh" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Clare and Shuttern" />
      <xs:enumeration value="Cranmore" />
      <xs:enumeration value="Cullompton North" />
      <xs:enumeration value="Cullompton Outer" />
      <xs:enumeration value="Cullompton South" />
      <xs:enumeration value="Halberton" />
      <xs:enumeration value="Lawrence" />
      <xs:enumeration value="Lower Culm" />
      <xs:enumeration value="Lowman" />
      <xs:enumeration value="Newbrooke" />
      <xs:enumeration value="Sandford and Creedy" />
      <xs:enumeration value="Silverton" />
      <xs:enumeration value="Taw" />
      <xs:enumeration value="Taw Vale" />
      <xs:enumeration value="Upper Culm" />
      <xs:enumeration value="Upper Yeo" />
      <xs:enumeration value="Way" />
      <xs:enumeration value="Westexe" />
      <xs:enumeration value="Yeo" />
      <xs:enumeration value="Bickington and Roundswell" />
      <xs:enumeration value="Bishop's Nympton" />
      <xs:enumeration value="Bratton Fleming" />
      <xs:enumeration value="Braunton East" />
      <xs:enumeration value="Braunton West" />
      <xs:enumeration value="Central Town" />
      <xs:enumeration value="Chittlehampton" />
      <xs:enumeration value="Chulmleigh" />
      <xs:enumeration value="Combe Martin" />
      <xs:enumeration value="Forches and Whiddon Valley" />
      <xs:enumeration value="Fremington" />
      <xs:enumeration value="Georgeham and Mortehoe" />
      <xs:enumeration value="Heanton Punchardon" />
      <xs:enumeration value="Ilfracombe Central" />
      <xs:enumeration value="Ilfracombe East" />
      <xs:enumeration value="Ilfracombe West" />
      <xs:enumeration value="Instow" />
      <xs:enumeration value="Landkey, Swimbridge and Taw" />
      <xs:enumeration value="Longbridge" />
      <xs:enumeration value="Lynton and Lynmouth" />
      <xs:enumeration value="Marwood" />
      <xs:enumeration value="Newport" />
      <xs:enumeration value="North Molton" />
      <xs:enumeration value="Pilton" />
      <xs:enumeration value="South Molton" />
      <xs:enumeration value="Witheridge" />
      <xs:enumeration value="Yeo Valley" />
      <xs:enumeration value="Allington and Loddiswell" />
      <xs:enumeration value="Avon and Harbourne" />
      <xs:enumeration value="Bickleigh and Shaugh" />
      <xs:enumeration value="Charterlands" />
      <xs:enumeration value="Cornwood and Sparkwell" />
      <xs:enumeration value="Dartington" />
      <xs:enumeration value="Dartmouth and Kingswear" />
      <xs:enumeration value="Dartmouth Townstal" />
      <xs:enumeration value="East Dart" />
      <xs:enumeration value="Eastmoor" />
      <xs:enumeration value="Erme Valley" />
      <xs:enumeration value="Ivybridge Central" />
      <xs:enumeration value="Ivybridge Filham" />
      <xs:enumeration value="Ivybridge Woodlands" />
      <xs:enumeration value="Kingsbridge East" />
      <xs:enumeration value="Kingsbridge North" />
      <xs:enumeration value="Marldon" />
      <xs:enumeration value="Newton and Noss" />
      <xs:enumeration value="Salcombe and Malborough" />
      <xs:enumeration value="Saltstone" />
      <xs:enumeration value="Skerries" />
      <xs:enumeration value="South Brent" />
      <xs:enumeration value="Stokenham" />
      <xs:enumeration value="Thurlestone" />
      <xs:enumeration value="Totnes Bridgetown" />
      <xs:enumeration value="Totnes Town" />
      <xs:enumeration value="Wembury and Brixton" />
      <xs:enumeration value="West Dart" />
      <xs:enumeration value="Westville and Alvington" />
      <xs:enumeration value="Yealmpton" />
      <xs:enumeration value="Ambrook" />
      <xs:enumeration value="Ashburton and Buckfastleigh" />
      <xs:enumeration value="Bishopsteignton" />
      <xs:enumeration value="Bovey" />
      <xs:enumeration value="Bradley" />
      <xs:enumeration value="Buckland and Milber" />
      <xs:enumeration value="Bushell" />
      <xs:enumeration value="Chudleigh" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Dawlish Central and North East" />
      <xs:enumeration value="Dawlish South West" />
      <xs:enumeration value="Haytor" />
      <xs:enumeration value="Ipplepen" />
      <xs:enumeration value="Kenn Valley" />
      <xs:enumeration value="Kenton with Starcross" />
      <xs:enumeration value="Kerswell-with-Combe" />
      <xs:enumeration value="Kingsteignton East" />
      <xs:enumeration value="Kingsteignton West" />
      <xs:enumeration value="Moorland" />
      <xs:enumeration value="Shaldon and Stokeinteignhead" />
      <xs:enumeration value="Teignbridge North" />
      <xs:enumeration value="Teignmouth Central" />
      <xs:enumeration value="Teignmouth East" />
      <xs:enumeration value="Teignmouth West" />
      <xs:enumeration value="Teign Valley" />
      <xs:enumeration value="Appledore" />
      <xs:enumeration value="Bideford East" />
      <xs:enumeration value="Bideford North" />
      <xs:enumeration value="Bideford South" />
      <xs:enumeration value="Broadheath" />
      <xs:enumeration value="Clinton" />
      <xs:enumeration value="Clovelly Bay" />
      <xs:enumeration value="Coham Bridge" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Hartland and Bradworthy" />
      <xs:enumeration value="Holsworthy" />
      <xs:enumeration value="Kenwith" />
      <xs:enumeration value="Monkleigh and Littleham" />
      <xs:enumeration value="Northam" />
      <xs:enumeration value="Orchard Hill" />
      <xs:enumeration value="Shebbear and Langtree" />
      <xs:enumeration value="Tamarside" />
      <xs:enumeration value="Three Moors" />
      <xs:enumeration value="Torrington" />
      <xs:enumeration value="Two Rivers" />
      <xs:enumeration value="Waldon" />
      <xs:enumeration value="Westward Ho!" />
      <xs:enumeration value="Winkleigh" />
      <xs:enumeration value="Bere Ferrers" />
      <xs:enumeration value="Bridestowe" />
      <xs:enumeration value="Buckland Monachorum" />
      <xs:enumeration value="Burrator" />
      <xs:enumeration value="Chagford" />
      <xs:enumeration value="Drewsteignton" />
      <xs:enumeration value="Exbourne" />
      <xs:enumeration value="Hatherleigh" />
      <xs:enumeration value="Lew Valley" />
      <xs:enumeration value="Lydford" />
      <xs:enumeration value="Mary Tavy" />
      <xs:enumeration value="Milton Ford" />
      <xs:enumeration value="North Tawton" />
      <xs:enumeration value="Okehampton East" />
      <xs:enumeration value="Okehampton West" />
      <xs:enumeration value="Tamarside" />
      <xs:enumeration value="Tavistock North" />
      <xs:enumeration value="Tavistock South" />
      <xs:enumeration value="Tavistock South West" />
      <xs:enumeration value="South Tawton" />
      <xs:enumeration value="Thrushel" />
      <xs:enumeration value="Walkham" />
      <xs:enumeration value="Burton and Winkton" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Highcliffe" />
      <xs:enumeration value="Jumpers" />
      <xs:enumeration value="Mudeford and Friars Cliff" />
      <xs:enumeration value="North Highcliffe and Walkford" />
      <xs:enumeration value="Portfield" />
      <xs:enumeration value="Purewell and Stanpit" />
      <xs:enumeration value="St Catherine's and Hurn" />
      <xs:enumeration value="Town Centre" />
      <xs:enumeration value="West Highcliffe" />
      <xs:enumeration value="Alderholt" />
      <xs:enumeration value="Ameysford" />
      <xs:enumeration value="Colehill East" />
      <xs:enumeration value="Colehill West" />
      <xs:enumeration value="Corfe Mullen Central" />
      <xs:enumeration value="Corfe Mullen North" />
      <xs:enumeration value="Corfe Mullen South" />
      <xs:enumeration value="Crane" />
      <xs:enumeration value="Ferndown Central" />
      <xs:enumeration value="Ferndown Links" />
      <xs:enumeration value="Handley Vale" />
      <xs:enumeration value="Holt" />
      <xs:enumeration value="Longham" />
      <xs:enumeration value="Parley" />
      <xs:enumeration value="St Leonards and St Ives East" />
      <xs:enumeration value="St Leonards and St Ives West" />
      <xs:enumeration value="Stapehill" />
      <xs:enumeration value="Stour" />
      <xs:enumeration value="Three Cross and Potterne" />
      <xs:enumeration value="Verwood Dewlands" />
      <xs:enumeration value="Verwood Newtown" />
      <xs:enumeration value="Verwood Stephen's Castle" />
      <xs:enumeration value="West Moors" />
      <xs:enumeration value="Wimborne Minster" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Blackmore" />
      <xs:enumeration value="Blandford Damory Down" />
      <xs:enumeration value="Blandford Hilltop" />
      <xs:enumeration value="Blandford Langton St Leonards" />
      <xs:enumeration value="Blandford Old Town" />
      <xs:enumeration value="Blandford Station" />
      <xs:enumeration value="Bourton and District" />
      <xs:enumeration value="Bulbarrow" />
      <xs:enumeration value="Cranborne Chase" />
      <xs:enumeration value="Gillingham Town" />
      <xs:enumeration value="Hill Forts" />
      <xs:enumeration value="Lodbourne" />
      <xs:enumeration value="Lydden Vale" />
      <xs:enumeration value="Marnhull" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Motcombe and Ham" />
      <xs:enumeration value="Portman" />
      <xs:enumeration value="Riversdale" />
      <xs:enumeration value="Shaftesbury Central" />
      <xs:enumeration value="Shaftesbury Christy's" />
      <xs:enumeration value="Shaftesbury Grosvenor" />
      <xs:enumeration value="Shaftesbury Underhill" />
      <xs:enumeration value="Stour Valley" />
      <xs:enumeration value="The Beacon" />
      <xs:enumeration value="The Lower Tarrants" />
      <xs:enumeration value="The Stours" />
      <xs:enumeration value="Wyke" />
      <xs:enumeration value="Bere Regis" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Creech Barrow" />
      <xs:enumeration value="Langton" />
      <xs:enumeration value="Lytchett Matravers" />
      <xs:enumeration value="Lytchett Minster and Upton East" />
      <xs:enumeration value="Lytchett Minster and Upton West" />
      <xs:enumeration value="St. Martin" />
      <xs:enumeration value="Swanage North" />
      <xs:enumeration value="Swanage South" />
      <xs:enumeration value="Wareham" />
      <xs:enumeration value="West Purbeck" />
      <xs:enumeration value="Winfrith" />
      <xs:enumeration value="Wool" />
      <xs:enumeration value="Beaminster" />
      <xs:enumeration value="Bradford Abbas" />
      <xs:enumeration value="Bradpole" />
      <xs:enumeration value="Bridport North" />
      <xs:enumeration value="Bridport South and Bothenhampton" />
      <xs:enumeration value="Broadmayne" />
      <xs:enumeration value="Broadwindsor" />
      <xs:enumeration value="Burton Bradstock" />
      <xs:enumeration value="Cam Vale" />
      <xs:enumeration value="Charminster and Cerne Valley" />
      <xs:enumeration value="Charmouth" />
      <xs:enumeration value="Chesil Bank" />
      <xs:enumeration value="Chickerell" />
      <xs:enumeration value="Chideock and Symondsbury" />
      <xs:enumeration value="Dorchester East" />
      <xs:enumeration value="Dorchester North" />
      <xs:enumeration value="Dorchester South" />
      <xs:enumeration value="Dorchester West" />
      <xs:enumeration value="Frome Valley" />
      <xs:enumeration value="Halstock" />
      <xs:enumeration value="Loders" />
      <xs:enumeration value="Lyme Regis" />
      <xs:enumeration value="Maiden Newton" />
      <xs:enumeration value="Marshwood Vale" />
      <xs:enumeration value="Netherbury" />
      <xs:enumeration value="Owermoigne" />
      <xs:enumeration value="Piddle Valley" />
      <xs:enumeration value="Puddletown" />
      <xs:enumeration value="Queen Thorne" />
      <xs:enumeration value="Sherborne East" />
      <xs:enumeration value="Sherborne West" />
      <xs:enumeration value="Winterborne St Martin" />
      <xs:enumeration value="Yetminster" />
      <xs:enumeration value="Littlemoor" />
      <xs:enumeration value="Melcombe Regis" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Radipole" />
      <xs:enumeration value="Tophill East" />
      <xs:enumeration value="Tophill West" />
      <xs:enumeration value="Underhill" />
      <xs:enumeration value="Upwey and Broadwey" />
      <xs:enumeration value="Westham East" />
      <xs:enumeration value="Westham North" />
      <xs:enumeration value="Westham West" />
      <xs:enumeration value="Wey Valley" />
      <xs:enumeration value="Weymouth East" />
      <xs:enumeration value="Weymouth West" />
      <xs:enumeration value="Wyke Regis" />
      <xs:enumeration value="Bournmoor" />
      <xs:enumeration value="Chester Central" />
      <xs:enumeration value="Chester East" />
      <xs:enumeration value="Chester North" />
      <xs:enumeration value="Chester South" />
      <xs:enumeration value="Chester West" />
      <xs:enumeration value="Edmondsley and Waldridge" />
      <xs:enumeration value="Grange Villa and West Pelton" />
      <xs:enumeration value="Kimblesworth and Plawsworth" />
      <xs:enumeration value="Lumley" />
      <xs:enumeration value="North Lodge" />
      <xs:enumeration value="Ouston" />
      <xs:enumeration value="Pelton" />
      <xs:enumeration value="Pelton Fell" />
      <xs:enumeration value="Sacriston" />
      <xs:enumeration value="Urpeth" />
      <xs:enumeration value="Annfield Plain" />
      <xs:enumeration value="Benfieldside" />
      <xs:enumeration value="Blackhill" />
      <xs:enumeration value="Burnhope" />
      <xs:enumeration value="Burnopfield" />
      <xs:enumeration value="Castleside" />
      <xs:enumeration value="Catchgate" />
      <xs:enumeration value="Consett East" />
      <xs:enumeration value="Consett North" />
      <xs:enumeration value="Consett South" />
      <xs:enumeration value="Cornsay" />
      <xs:enumeration value="Craghead and South Stanley" />
      <xs:enumeration value="Delves Lane" />
      <xs:enumeration value="Dipton" />
      <xs:enumeration value="Ebchester and Medomsley" />
      <xs:enumeration value="Esh" />
      <xs:enumeration value="Havannah" />
      <xs:enumeration value="Lanchester" />
      <xs:enumeration value="Leadgate" />
      <xs:enumeration value="South Moor" />
      <xs:enumeration value="Stanley Hall" />
      <xs:enumeration value="Tanfield" />
      <xs:enumeration value="Bearpark and Witton Gilbert" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Brancepeth, Langley Moor and Meadowfield" />
      <xs:enumeration value="Brandon" />
      <xs:enumeration value="Carrville and Gilesgate Moor" />
      <xs:enumeration value="Cassop-cum-Quarrington" />
      <xs:enumeration value="Coxhoe" />
      <xs:enumeration value="Crossgate and Framwelgate" />
      <xs:enumeration value="Deerness" />
      <xs:enumeration value="Elvet" />
      <xs:enumeration value="Framwellgate Moor" />
      <xs:enumeration value="Neville's Cross" />
      <xs:enumeration value="New Brancepeth and Ushaw Moor" />
      <xs:enumeration value="Newton Hall North" />
      <xs:enumeration value="Newton Hall South" />
      <xs:enumeration value="Pelaw and Gilesgate" />
      <xs:enumeration value="Pittington and West Rainton" />
      <xs:enumeration value="St Nicholas" />
      <xs:enumeration value="Shadforth and Sherburn" />
      <xs:enumeration value="Shincliffe" />
      <xs:enumeration value="Acre Rigg" />
      <xs:enumeration value="Blackhalls" />
      <xs:enumeration value="Dawdon" />
      <xs:enumeration value="Dene House" />
      <xs:enumeration value="Deneside" />
      <xs:enumeration value="Easington Colliery" />
      <xs:enumeration value="Easington Village and South Hetton" />
      <xs:enumeration value="Eden Hill" />
      <xs:enumeration value="Haswell and Shotton" />
      <xs:enumeration value="Horden North" />
      <xs:enumeration value="Horden South" />
      <xs:enumeration value="Howletch" />
      <xs:enumeration value="Hutton Henry" />
      <xs:enumeration value="Murton East" />
      <xs:enumeration value="Murton West" />
      <xs:enumeration value="Passfield" />
      <xs:enumeration value="Seaham Harbour" />
      <xs:enumeration value="Seaham North" />
      <xs:enumeration value="Thornley and Wheatley Hill" />
      <xs:enumeration value="Wingate" />
      <xs:enumeration value="Bishop Middleham and Cornforth" />
      <xs:enumeration value="Broom" />
      <xs:enumeration value="Byerley" />
      <xs:enumeration value="Chilton" />
      <xs:enumeration value="Ferryhill" />
      <xs:enumeration value="Fishburn and Old Trimdon" />
      <xs:enumeration value="Greenfield Middridge" />
      <xs:enumeration value="Low Spennymoor and Tudhoe Grange" />
      <xs:enumeration value="Middlestone" />
      <xs:enumeration value="Neville and Simpasture" />
      <xs:enumeration value="New Trimdon and Trimdon Grange" />
      <xs:enumeration value="Sedgefield" />
      <xs:enumeration value="Shafto St Marys" />
      <xs:enumeration value="Spennymoor" />
      <xs:enumeration value="Sunnydale" />
      <xs:enumeration value="Thickley" />
      <xs:enumeration value="Tudhoe" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Woodham" />
      <xs:enumeration value="Barnard Castle East" />
      <xs:enumeration value="Barnard Castle North" />
      <xs:enumeration value="Barnard Castle West" />
      <xs:enumeration value="Barningham and Ovington" />
      <xs:enumeration value="Cockfield" />
      <xs:enumeration value="Cotherstone with Lartington" />
      <xs:enumeration value="Eggleston" />
      <xs:enumeration value="Etherley" />
      <xs:enumeration value="Evenwood, Ramshaw and Lands" />
      <xs:enumeration value="Gainford and Winston" />
      <xs:enumeration value="Greta" />
      <xs:enumeration value="Hamsterley and South Bedburn" />
      <xs:enumeration value="Ingleton" />
      <xs:enumeration value="Lynesack" />
      <xs:enumeration value="Middleton-in-Teesdale" />
      <xs:enumeration value="Romaldkirk" />
      <xs:enumeration value="Staindrop" />
      <xs:enumeration value="Startforth" />
      <xs:enumeration value="Streatlam and Whorlton" />
      <xs:enumeration value="Bishop Auckland Town" />
      <xs:enumeration value="Cockton Hill" />
      <xs:enumeration value="Coundon" />
      <xs:enumeration value="Crook North" />
      <xs:enumeration value="Crook South" />
      <xs:enumeration value="Dene Valley" />
      <xs:enumeration value="Escomb" />
      <xs:enumeration value="Henknowle" />
      <xs:enumeration value="Howden" />
      <xs:enumeration value="Hunwick" />
      <xs:enumeration value="St John's Chapel" />
      <xs:enumeration value="Stanhope" />
      <xs:enumeration value="Tow Law and Stanley" />
      <xs:enumeration value="West Auckland" />
      <xs:enumeration value="Wheatbottom and Helmington Row" />
      <xs:enumeration value="Willington Central" />
      <xs:enumeration value="Willington West End" />
      <xs:enumeration value="Wolsingham and Witton-le-Wear" />
      <xs:enumeration value="Woodhouse Close" />
      <xs:enumeration value="Devonshire" />
      <xs:enumeration value="Hampden Park" />
      <xs:enumeration value="Langney" />
      <xs:enumeration value="Meads" />
      <xs:enumeration value="Old Town" />
      <xs:enumeration value="Ratton" />
      <xs:enumeration value="St Anthony's" />
      <xs:enumeration value="Sovereign" />
      <xs:enumeration value="Upperton" />
      <xs:enumeration value="Ashdown" />
      <xs:enumeration value="Baird" />
      <xs:enumeration value="Braybrooke" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Central St Leonards" />
      <xs:enumeration value="Conquest" />
      <xs:enumeration value="Gensing" />
      <xs:enumeration value="Hollington" />
      <xs:enumeration value="Maze Hill" />
      <xs:enumeration value="Old Hastings" />
      <xs:enumeration value="Ore" />
      <xs:enumeration value="St Helens" />
      <xs:enumeration value="Silverhill" />
      <xs:enumeration value="Tressell" />
      <xs:enumeration value="West St Leonards" />
      <xs:enumeration value="Wishing Tree" />
      <xs:enumeration value="Barcombe and Hamsey" />
      <xs:enumeration value="Chailey and Wivelsfield" />
      <xs:enumeration value="Ditchling and Westmeston" />
      <xs:enumeration value="East Saltdean and Telscombe Cliffs" />
      <xs:enumeration value="Kingston" />
      <xs:enumeration value="Lewes Bridge" />
      <xs:enumeration value="Lewes Castle" />
      <xs:enumeration value="Lewes Priory" />
      <xs:enumeration value="Newhaven Denton and Meeching" />
      <xs:enumeration value="Newhaven Valley" />
      <xs:enumeration value="Newick" />
      <xs:enumeration value="Ouse Valley and Ringmer" />
      <xs:enumeration value="Peacehaven East" />
      <xs:enumeration value="Peacehaven North" />
      <xs:enumeration value="Peacehaven West" />
      <xs:enumeration value="Plumpton, Streat, East Chiltington and St John (Without)" />
      <xs:enumeration value="Seaford Central" />
      <xs:enumeration value="Seaford East" />
      <xs:enumeration value="Seaford North" />
      <xs:enumeration value="Seaford South" />
      <xs:enumeration value="Seaford West" />
      <xs:enumeration value="Battle Town" />
      <xs:enumeration value="Brede Valley" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Collington" />
      <xs:enumeration value="Crowhurst" />
      <xs:enumeration value="Darwell" />
      <xs:enumeration value="Eastern Rother" />
      <xs:enumeration value="Ewhurst and Sedlescombe" />
      <xs:enumeration value="Kewhurst" />
      <xs:enumeration value="Marsham" />
      <xs:enumeration value="Old Town" />
      <xs:enumeration value="Rother Levels" />
      <xs:enumeration value="Rye" />
      <xs:enumeration value="Sackville" />
      <xs:enumeration value="St Marks" />
      <xs:enumeration value="St Michaels" />
      <xs:enumeration value="St Stephens" />
      <xs:enumeration value="Salehurst" />
      <xs:enumeration value="Sidley" />
      <xs:enumeration value="Ticehurst and Etchingham" />
      <xs:enumeration value="Alfriston" />
      <xs:enumeration value="Buxted and Maresfield" />
      <xs:enumeration value="Chiddingly and East Hoathly" />
      <xs:enumeration value="Cross in Hand/Five Ashes" />
      <xs:enumeration value="Crowborough East" />
      <xs:enumeration value="Crowborough Jarvis Brook" />
      <xs:enumeration value="Crowborough North" />
      <xs:enumeration value="Crowborough St. Johns" />
      <xs:enumeration value="Crowborough West" />
      <xs:enumeration value="Danehill/Fletching/Nutley" />
      <xs:enumeration value="East Dean" />
      <xs:enumeration value="Forest Row" />
      <xs:enumeration value="Framfield" />
      <xs:enumeration value="Frant/Withyham" />
      <xs:enumeration value="Hailsham Central and North" />
      <xs:enumeration value="Hailsham East" />
      <xs:enumeration value="Hailsham South and West" />
      <xs:enumeration value="Hartfield" />
      <xs:enumeration value="Heathfield East" />
      <xs:enumeration value="Heathfield North and Central" />
      <xs:enumeration value="Hellingly" />
      <xs:enumeration value="Herstmonceux" />
      <xs:enumeration value="Horam" />
      <xs:enumeration value="Mayfield" />
      <xs:enumeration value="Ninfield and Hooe with Wartling" />
      <xs:enumeration value="Pevensey and Westham" />
      <xs:enumeration value="Polegate North" />
      <xs:enumeration value="Polegate South" />
      <xs:enumeration value="Rotherfield" />
      <xs:enumeration value="Uckfield Central" />
      <xs:enumeration value="Uckfield New Town" />
      <xs:enumeration value="Uckfield North" />
      <xs:enumeration value="Uckfield Ridgewood" />
      <xs:enumeration value="Wadhurst" />
      <xs:enumeration value="Willingdon" />
      <xs:enumeration value="Billericay East" />
      <xs:enumeration value="Billericay West" />
      <xs:enumeration value="Burstead" />
      <xs:enumeration value="Crouch" />
      <xs:enumeration value="Fryerns" />
      <xs:enumeration value="Laindon Park" />
      <xs:enumeration value="Langdon Hills" />
      <xs:enumeration value="Lee Chapel North" />
      <xs:enumeration value="Nethermayne" />
      <xs:enumeration value="Pitsea North West" />
      <xs:enumeration value="Pitsea South East" />
      <xs:enumeration value="St Martin's" />
      <xs:enumeration value="Vange" />
      <xs:enumeration value="Wickford Castledon" />
      <xs:enumeration value="Wickford North" />
      <xs:enumeration value="Wickford Park" />
      <xs:enumeration value="Black Notley and Terling" />
      <xs:enumeration value="Bocking Blackwater" />
      <xs:enumeration value="Bocking North" />
      <xs:enumeration value="Bocking South" />
      <xs:enumeration value="Bradwell, Silver End and Rivenhall" />
      <xs:enumeration value="Braintree Central" />
      <xs:enumeration value="Braintree East" />
      <xs:enumeration value="Braintree South" />
      <xs:enumeration value="Bumpstead" />
      <xs:enumeration value="Coggeshall and North Feering" />
      <xs:enumeration value="Cressing and Stisted" />
      <xs:enumeration value="Gosfield and Greenstead Green" />
      <xs:enumeration value="Great Notley and Braintree West" />
      <xs:enumeration value="Halstead St Andrew's" />
      <xs:enumeration value="Halstead Trinity" />
      <xs:enumeration value="Hatfield Peverel" />
      <xs:enumeration value="Hedingham and Maplestead" />
      <xs:enumeration value="Kelvedon" />
      <xs:enumeration value="Panfield" />
      <xs:enumeration value="Rayne" />
      <xs:enumeration value="Stour Valley North" />
      <xs:enumeration value="Stour Valley South" />
      <xs:enumeration value="The Three Colnes" />
      <xs:enumeration value="Three Fields" />
      <xs:enumeration value="Upper Colne" />
      <xs:enumeration value="Witham Chipping Hill and Central" />
      <xs:enumeration value="Witham North" />
      <xs:enumeration value="Witham South" />
      <xs:enumeration value="Witham West" />
      <xs:enumeration value="Yeldham" />
      <xs:enumeration value="Brentwood North" />
      <xs:enumeration value="Brentwood South" />
      <xs:enumeration value="Brentwood West" />
      <xs:enumeration value="Brizes and Doddinghurst" />
      <xs:enumeration value="Herongate, Ingrave and West Horndon" />
      <xs:enumeration value="Hutton Central" />
      <xs:enumeration value="Hutton East" />
      <xs:enumeration value="Hutton North" />
      <xs:enumeration value="Hutton South" />
      <xs:enumeration value="Ingatestone, Fryerning and Mountnessing" />
      <xs:enumeration value="Pilgrims Hatch" />
      <xs:enumeration value="Shenfield" />
      <xs:enumeration value="South Weald" />
      <xs:enumeration value="Tipps Cross" />
      <xs:enumeration value="Warley" />
      <xs:enumeration value="Appleton" />
      <xs:enumeration value="Boyce" />
      <xs:enumeration value="Canvey Island Central" />
      <xs:enumeration value="Canvey Island East" />
      <xs:enumeration value="Canvey Island North" />
      <xs:enumeration value="Canvey Island South" />
      <xs:enumeration value="Canvey Island West" />
      <xs:enumeration value="Canvey Island Winter Gardens" />
      <xs:enumeration value="Cedar Hall" />
      <xs:enumeration value="St George's" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Bicknacre and East and West Hanningfield" />
      <xs:enumeration value="Boreham and The Leighs" />
      <xs:enumeration value="Broomfield and The Walthams" />
      <xs:enumeration value="Chelmer Village and Beaulieu Park" />
      <xs:enumeration value="Chelmsford Rural West" />
      <xs:enumeration value="Galleywood" />
      <xs:enumeration value="Goat Hall" />
      <xs:enumeration value="Great Baddow East" />
      <xs:enumeration value="Great Baddow West" />
      <xs:enumeration value="Little Baddow, Danbury and Sandon" />
      <xs:enumeration value="Marconi" />
      <xs:enumeration value="Moulsham and Central" />
      <xs:enumeration value="Moulsham Lodge" />
      <xs:enumeration value="Patching Hall" />
      <xs:enumeration value="Rettendon and Runwell" />
      <xs:enumeration value="St Andrews" />
      <xs:enumeration value="South Hanningfield, Stock and Margaretting" />
      <xs:enumeration value="South Woodham-Chetwood and Collingwood" />
      <xs:enumeration value="South Woodham-Elmwood and Woodville" />
      <xs:enumeration value="Springfield North" />
      <xs:enumeration value="The Lawns" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Waterhouse Farm" />
      <xs:enumeration value="Writtle" />
      <xs:enumeration value="Berechurch" />
      <xs:enumeration value="Birch and Winstree" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Christ Church" />
      <xs:enumeration value="Copford and West Stanway" />
      <xs:enumeration value="Dedham and Langham" />
      <xs:enumeration value="East Donyland" />
      <xs:enumeration value="Fordham and Stour" />
      <xs:enumeration value="Great Tey" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Highwoods" />
      <xs:enumeration value="Lexden" />
      <xs:enumeration value="Marks Tey" />
      <xs:enumeration value="Mile End" />
      <xs:enumeration value="New Town" />
      <xs:enumeration value="Prettygate" />
      <xs:enumeration value="Pyefleet" />
      <xs:enumeration value="St Andrew's" />
      <xs:enumeration value="St Anne's" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="Shrub End" />
      <xs:enumeration value="Stanway" />
      <xs:enumeration value="Tiptree" />
      <xs:enumeration value="West Bergholt and Eight Ash Green" />
      <xs:enumeration value="West Mersea" />
      <xs:enumeration value="Wivenhoe Cross" />
      <xs:enumeration value="Wivenhoe Quay" />
      <xs:enumeration value="Broadley Common, Epping Upland and Nazeing" />
      <xs:enumeration value="Buckhurst Hill East" />
      <xs:enumeration value="Buckhurst Hill West" />
      <xs:enumeration value="Chigwell Row" />
      <xs:enumeration value="Chigwell Village" />
      <xs:enumeration value="Chipping Ongar, Greensted and Marden Ash" />
      <xs:enumeration value="Epping Hemnall" />
      <xs:enumeration value="Epping Lindsey and Thornwood Common" />
      <xs:enumeration value="Grange Hill" />
      <xs:enumeration value="Hastingwood, Matching and Sheering Village" />
      <xs:enumeration value="High Ongar, Willingale and The Rodings" />
      <xs:enumeration value="Lambourne" />
      <xs:enumeration value="Loughton Alderton" />
      <xs:enumeration value="Loughton Broadway" />
      <xs:enumeration value="Loughton Fairmead" />
      <xs:enumeration value="Loughton Forest" />
      <xs:enumeration value="Loughton Roding" />
      <xs:enumeration value="Loughton St John's" />
      <xs:enumeration value="Loughton St Mary's" />
      <xs:enumeration value="Lower Nazeing" />
      <xs:enumeration value="Lower Sheering" />
      <xs:enumeration value="Moreton and Fyfield" />
      <xs:enumeration value="North Weald Bassett" />
      <xs:enumeration value="Passingford" />
      <xs:enumeration value="Roydon" />
      <xs:enumeration value="Shelley" />
      <xs:enumeration value="Theydon Bois" />
      <xs:enumeration value="Waltham Abbey High Beach" />
      <xs:enumeration value="Waltham Abbey Honey Lane" />
      <xs:enumeration value="Waltham Abbey North East" />
      <xs:enumeration value="Waltham Abbey Paternoster" />
      <xs:enumeration value="Waltham Abbey South West" />
      <xs:enumeration value="Bush Fair" />
      <xs:enumeration value="Church Langley" />
      <xs:enumeration value="Great Parndon" />
      <xs:enumeration value="Harlow Common" />
      <xs:enumeration value="Little Parndon and Hare Street" />
      <xs:enumeration value="Mark Hall" />
      <xs:enumeration value="Netteswell" />
      <xs:enumeration value="Old Harlow" />
      <xs:enumeration value="Staple Tye" />
      <xs:enumeration value="Sumners and Kingsmoor" />
      <xs:enumeration value="Toddbrook" />
      <xs:enumeration value="Althorne" />
      <xs:enumeration value="Burnham-on-Crouch North" />
      <xs:enumeration value="Burnham-on-Crouch South" />
      <xs:enumeration value="Great Totham" />
      <xs:enumeration value="Heybridge East" />
      <xs:enumeration value="Heybridge West" />
      <xs:enumeration value="Maldon East" />
      <xs:enumeration value="Maldon North" />
      <xs:enumeration value="Maldon South" />
      <xs:enumeration value="Maldon West" />
      <xs:enumeration value="Mayland" />
      <xs:enumeration value="Purleigh" />
      <xs:enumeration value="Southminster" />
      <xs:enumeration value="Tillingham" />
      <xs:enumeration value="Tollesbury" />
      <xs:enumeration value="Tolleshunt D'Arcy" />
      <xs:enumeration value="Wickham Bishops and Woodham" />
      <xs:enumeration value="Ashingdon and Canewdon" />
      <xs:enumeration value="Barling and Sutton" />
      <xs:enumeration value="Downhall and Rawreth" />
      <xs:enumeration value="Foulness and Great Wakering" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Hawkwell North" />
      <xs:enumeration value="Hawkwell South" />
      <xs:enumeration value="Hawkwell West" />
      <xs:enumeration value="Hockley Central" />
      <xs:enumeration value="Hockley North" />
      <xs:enumeration value="Hockley West" />
      <xs:enumeration value="Hullbridge" />
      <xs:enumeration value="Lodge" />
      <xs:enumeration value="Rayleigh Central" />
      <xs:enumeration value="Rochford" />
      <xs:enumeration value="Sweyne Park" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Wheatley" />
      <xs:enumeration value="Whitehouse" />
      <xs:enumeration value="Alresford" />
      <xs:enumeration value="Alton Park" />
      <xs:enumeration value="Ardleigh and Little Bromley" />
      <xs:enumeration value="Beaumont and Thorpe" />
      <xs:enumeration value="Bockings Elm" />
      <xs:enumeration value="Bradfield, Wrabness and Wix" />
      <xs:enumeration value="Brightlingsea" />
      <xs:enumeration value="Burrsville" />
      <xs:enumeration value="Frinton" />
      <xs:enumeration value="Golf Green" />
      <xs:enumeration value="Great and Little Oakley" />
      <xs:enumeration value="Great Bentley" />
      <xs:enumeration value="Hamford" />
      <xs:enumeration value="Harwich East" />
      <xs:enumeration value="Harwich East Central" />
      <xs:enumeration value="Harwich West" />
      <xs:enumeration value="Harwich West Central" />
      <xs:enumeration value="Haven" />
      <xs:enumeration value="Holland and Kirby" />
      <xs:enumeration value="Homelands" />
      <xs:enumeration value="Lawford" />
      <xs:enumeration value="Little Clacton and Weeley" />
      <xs:enumeration value="Manningtree, Mistley, Little Bentley and Tendring" />
      <xs:enumeration value="Peter Bruff" />
      <xs:enumeration value="Pier" />
      <xs:enumeration value="Ramsey and Parkeston" />
      <xs:enumeration value="Rush Green" />
      <xs:enumeration value="St Bartholomews" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="St Johns" />
      <xs:enumeration value="St Marys" />
      <xs:enumeration value="St Osyth and Point Clear" />
      <xs:enumeration value="St Pauls" />
      <xs:enumeration value="Thorrington, Frating, Elmstead and Great Bromley" />
      <xs:enumeration value="Walton" />
      <xs:enumeration value="Ashdon" />
      <xs:enumeration value="Barnston and High Easter" />
      <xs:enumeration value="Birchanger" />
      <xs:enumeration value="Broad Oak and the Hallingburys" />
      <xs:enumeration value="Clavering" />
      <xs:enumeration value="Elsenham and Henham" />
      <xs:enumeration value="Felsted" />
      <xs:enumeration value="Great Dunmow North" />
      <xs:enumeration value="Great Dunmow South" />
      <xs:enumeration value="Hatfield Heath" />
      <xs:enumeration value="Littlebury" />
      <xs:enumeration value="Newport" />
      <xs:enumeration value="Saffron Walden Audley" />
      <xs:enumeration value="Saffron Walden Castle" />
      <xs:enumeration value="Saffron Walden Shire" />
      <xs:enumeration value="Stansted North" />
      <xs:enumeration value="Stansted South" />
      <xs:enumeration value="Stebbing" />
      <xs:enumeration value="Stort Valley" />
      <xs:enumeration value="Takeley and the Canfields" />
      <xs:enumeration value="Thaxted" />
      <xs:enumeration value="The Chesterfords" />
      <xs:enumeration value="The Eastons" />
      <xs:enumeration value="The Rodings" />
      <xs:enumeration value="The Sampfords" />
      <xs:enumeration value="Wenden Lofts" />
      <xs:enumeration value="Wimbish and Debden" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Battledown" />
      <xs:enumeration value="Benhall and The Reddings" />
      <xs:enumeration value="Charlton Kings" />
      <xs:enumeration value="Charlton Park" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Hesters Way" />
      <xs:enumeration value="Lansdown" />
      <xs:enumeration value="Leckhampton" />
      <xs:enumeration value="Oakley" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Pittville" />
      <xs:enumeration value="Prestbury" />
      <xs:enumeration value="St Mark's" />
      <xs:enumeration value="St Paul's" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Springbank" />
      <xs:enumeration value="Swindon Village" />
      <xs:enumeration value="Up Hatherley" />
      <xs:enumeration value="Warden Hill" />
      <xs:enumeration value="Ampney-Coln" />
      <xs:enumeration value="Avening" />
      <xs:enumeration value="Beacon-Stow" />
      <xs:enumeration value="Blockley" />
      <xs:enumeration value="Bourton-on-the-Water" />
      <xs:enumeration value="Campden-Vale" />
      <xs:enumeration value="Chedworth" />
      <xs:enumeration value="Churn Valley" />
      <xs:enumeration value="Cirencester Beeches" />
      <xs:enumeration value="Cirencester Chesterton" />
      <xs:enumeration value="Cirencester Park" />
      <xs:enumeration value="Cirencester Stratton-Whiteway" />
      <xs:enumeration value="Cirencester Watermoor" />
      <xs:enumeration value="Ermin" />
      <xs:enumeration value="Fairford" />
      <xs:enumeration value="Fosseridge" />
      <xs:enumeration value="Grumbolds Ash" />
      <xs:enumeration value="Hampton" />
      <xs:enumeration value="Kempsford-Lechlade" />
      <xs:enumeration value="Moreton-in-Marsh" />
      <xs:enumeration value="Northleach" />
      <xs:enumeration value="Rissingtons" />
      <xs:enumeration value="Riversmeet" />
      <xs:enumeration value="Sandywell" />
      <xs:enumeration value="Tetbury" />
      <xs:enumeration value="Thames Head" />
      <xs:enumeration value="Three Rivers" />
      <xs:enumeration value="Water Park" />
      <xs:enumeration value="Alvington, Aylburton and West Lydney" />
      <xs:enumeration value="Awre" />
      <xs:enumeration value="Berry Hill" />
      <xs:enumeration value="Blaisdon and Longhope" />
      <xs:enumeration value="Bream" />
      <xs:enumeration value="Bromesberrow and Dymock" />
      <xs:enumeration value="Christchurch and English Bicknor" />
      <xs:enumeration value="Churcham and Huntley" />
      <xs:enumeration value="Cinderford East" />
      <xs:enumeration value="Cinderford West" />
      <xs:enumeration value="Coleford Central" />
      <xs:enumeration value="Coleford East" />
      <xs:enumeration value="Hartpury" />
      <xs:enumeration value="Hewelsfield and Woolaston" />
      <xs:enumeration value="Littledean and Ruspidge" />
      <xs:enumeration value="Lydbrook and Ruardean" />
      <xs:enumeration value="Lydney East" />
      <xs:enumeration value="Lydney North" />
      <xs:enumeration value="Mitcheldean and Drybrook" />
      <xs:enumeration value="Newent Central" />
      <xs:enumeration value="Newland and St Briavels" />
      <xs:enumeration value="Newnham and Westbury" />
      <xs:enumeration value="Oxenhall and Newent North East" />
      <xs:enumeration value="Pillowell" />
      <xs:enumeration value="Redmarley" />
      <xs:enumeration value="Tibberton" />
      <xs:enumeration value="Tidenham" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Barnwood" />
      <xs:enumeration value="Barton and Tredworth" />
      <xs:enumeration value="Elmbridge" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Hucclecote" />
      <xs:enumeration value="Kingsholm and Wotton" />
      <xs:enumeration value="Longlevens" />
      <xs:enumeration value="Matson and Robinswood" />
      <xs:enumeration value="Moreland" />
      <xs:enumeration value="Podsmead" />
      <xs:enumeration value="Quedgeley Fieldcourt" />
      <xs:enumeration value="Quedgeley Severn Vale" />
      <xs:enumeration value="Tuffley" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="Amberley and Woodchester" />
      <xs:enumeration value="Berkeley" />
      <xs:enumeration value="Bisley" />
      <xs:enumeration value="Cainscross" />
      <xs:enumeration value="Cam East" />
      <xs:enumeration value="Cam West" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Chalford" />
      <xs:enumeration value="Coaley and Uley" />
      <xs:enumeration value="Dursley" />
      <xs:enumeration value="Eastington and Standish" />
      <xs:enumeration value="Farmhill and Paganhill" />
      <xs:enumeration value="Hardwicke" />
      <xs:enumeration value="Kingswood" />
      <xs:enumeration value="Minchinhampton" />
      <xs:enumeration value="Nailsworth" />
      <xs:enumeration value="Over Stroud" />
      <xs:enumeration value="Painswick" />
      <xs:enumeration value="Rodborough" />
      <xs:enumeration value="Severn" />
      <xs:enumeration value="Slade" />
      <xs:enumeration value="Stonehouse" />
      <xs:enumeration value="The Stanleys" />
      <xs:enumeration value="Thrupp" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Uplands" />
      <xs:enumeration value="Upton St Leonards" />
      <xs:enumeration value="Vale" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Wotton-under-Edge" />
      <xs:enumeration value="Ashchurch with Walton Cardiff" />
      <xs:enumeration value="Badgeworth" />
      <xs:enumeration value="Brockworth" />
      <xs:enumeration value="Churchdown Brookfield" />
      <xs:enumeration value="Churchdown St John's" />
      <xs:enumeration value="Cleeve Grange" />
      <xs:enumeration value="Cleeve Hill" />
      <xs:enumeration value="Cleeve St Michael's" />
      <xs:enumeration value="Cleeve West" />
      <xs:enumeration value="Coombe Hill" />
      <xs:enumeration value="Highnam with Haw Bridge" />
      <xs:enumeration value="Hucclecote" />
      <xs:enumeration value="Innsworth with Down Hatherley" />
      <xs:enumeration value="Isbourne" />
      <xs:enumeration value="Northway" />
      <xs:enumeration value="Oxenton Hill" />
      <xs:enumeration value="Shurdington" />
      <xs:enumeration value="Tewkesbury Newtown" />
      <xs:enumeration value="Tewkesbury Prior's Park" />
      <xs:enumeration value="Tewkesbury Town with Mitton" />
      <xs:enumeration value="Twyning" />
      <xs:enumeration value="Winchcombe" />
      <xs:enumeration value="Basing" />
      <xs:enumeration value="Baughurst" />
      <xs:enumeration value="Brighton Hill North" />
      <xs:enumeration value="Brighton Hill South" />
      <xs:enumeration value="Brookvale and Kings Furlong" />
      <xs:enumeration value="Buckskin" />
      <xs:enumeration value="Burghclere" />
      <xs:enumeration value="Calleva" />
      <xs:enumeration value="Chineham" />
      <xs:enumeration value="East Woodhay" />
      <xs:enumeration value="Eastrop" />
      <xs:enumeration value="Grove" />
      <xs:enumeration value="Hatch Warren and Beggarwood" />
      <xs:enumeration value="Highclere and Bourne" />
      <xs:enumeration value="Kempshott" />
      <xs:enumeration value="Kingsclere" />
      <xs:enumeration value="Norden" />
      <xs:enumeration value="Oakley and North Waltham" />
      <xs:enumeration value="Overton, Laverstoke and Steventon" />
      <xs:enumeration value="Pamber" />
      <xs:enumeration value="Popley East" />
      <xs:enumeration value="Popley West" />
      <xs:enumeration value="Rooksdown" />
      <xs:enumeration value="Sherborne St John" />
      <xs:enumeration value="South Ham" />
      <xs:enumeration value="Tadley North" />
      <xs:enumeration value="Tadley South" />
      <xs:enumeration value="Upton Grey and The Candovers" />
      <xs:enumeration value="Whitchurch" />
      <xs:enumeration value="Winklebury" />
      <xs:enumeration value="Alton Amery" />
      <xs:enumeration value="Alton Ashdell" />
      <xs:enumeration value="Alton Eastbrooke" />
      <xs:enumeration value="Alton Westbrooke" />
      <xs:enumeration value="Alton Whitedown" />
      <xs:enumeration value="Alton Wooteys" />
      <xs:enumeration value="Binsted and Bentley" />
      <xs:enumeration value="Bramshott and Liphook" />
      <xs:enumeration value="Clanfield and Finchdean" />
      <xs:enumeration value="Downland" />
      <xs:enumeration value="East Meon" />
      <xs:enumeration value="Four Marks and Medstead" />
      <xs:enumeration value="Froxfield and Steep" />
      <xs:enumeration value="Grayshott" />
      <xs:enumeration value="Headley" />
      <xs:enumeration value="Holybourne and Froyle" />
      <xs:enumeration value="Horndean Catherington and Lovedean" />
      <xs:enumeration value="Horndean Downs" />
      <xs:enumeration value="Horndean Hazleton and Blendworth" />
      <xs:enumeration value="Horndean Kings" />
      <xs:enumeration value="Horndean Murray" />
      <xs:enumeration value="Lindford" />
      <xs:enumeration value="Liss" />
      <xs:enumeration value="Petersfield Bell Hill" />
      <xs:enumeration value="Petersfield Causeway" />
      <xs:enumeration value="Petersfield Heath" />
      <xs:enumeration value="Petersfield Rother" />
      <xs:enumeration value="Petersfield St Marys" />
      <xs:enumeration value="Petersfield St Peters" />
      <xs:enumeration value="Ropley and Tisted" />
      <xs:enumeration value="Rowlands Castle" />
      <xs:enumeration value="Selborne" />
      <xs:enumeration value="The Hangers and Forest" />
      <xs:enumeration value="Whitehill Chase" />
      <xs:enumeration value="Whitehill Deadwater" />
      <xs:enumeration value="Whitehill Hogmoor" />
      <xs:enumeration value="Whitehill Pinewood" />
      <xs:enumeration value="Whitehill Walldown" />
      <xs:enumeration value="Bishopstoke East" />
      <xs:enumeration value="Bishopstoke West" />
      <xs:enumeration value="Botley" />
      <xs:enumeration value="Bursledon and Old Netley" />
      <xs:enumeration value="Chandler's Ford East" />
      <xs:enumeration value="Chandler's Ford West" />
      <xs:enumeration value="Eastleigh Central" />
      <xs:enumeration value="Eastleigh North" />
      <xs:enumeration value="Eastleigh South" />
      <xs:enumeration value="Fair Oak and Horton Heath" />
      <xs:enumeration value="Hamble-le-Rice and Butlocks Heath" />
      <xs:enumeration value="Hedge End Grange Park" />
      <xs:enumeration value="Hedge End St John's" />
      <xs:enumeration value="Hedge End Wildern" />
      <xs:enumeration value="Hiltingbury East" />
      <xs:enumeration value="Hiltingbury West" />
      <xs:enumeration value="Netley Abbey" />
      <xs:enumeration value="West End North" />
      <xs:enumeration value="West End South" />
      <xs:enumeration value="Fareham East" />
      <xs:enumeration value="Fareham North" />
      <xs:enumeration value="Fareham North-West" />
      <xs:enumeration value="Fareham South" />
      <xs:enumeration value="Fareham West" />
      <xs:enumeration value="Hill Head" />
      <xs:enumeration value="Locks Heath" />
      <xs:enumeration value="Park Gate" />
      <xs:enumeration value="Portchester East" />
      <xs:enumeration value="Portchester West" />
      <xs:enumeration value="Sarisbury" />
      <xs:enumeration value="Stubbington" />
      <xs:enumeration value="Titchfield" />
      <xs:enumeration value="Titchfield Common" />
      <xs:enumeration value="Warsash" />
      <xs:enumeration value="Alverstoke" />
      <xs:enumeration value="Anglesey" />
      <xs:enumeration value="Bridgemary North" />
      <xs:enumeration value="Bridgemary South" />
      <xs:enumeration value="Brockhurst" />
      <xs:enumeration value="Christchurch" />
      <xs:enumeration value="Elson" />
      <xs:enumeration value="Forton" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Hardway" />
      <xs:enumeration value="Lee East" />
      <xs:enumeration value="Lee West" />
      <xs:enumeration value="Leesland" />
      <xs:enumeration value="Peel Common" />
      <xs:enumeration value="Privett" />
      <xs:enumeration value="Rowner and Holbrook" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Blackwater and Hawley" />
      <xs:enumeration value="Church Crookham East" />
      <xs:enumeration value="Church Crookham West" />
      <xs:enumeration value="Crondall" />
      <xs:enumeration value="Eversley" />
      <xs:enumeration value="Fleet Central" />
      <xs:enumeration value="Fleet Courtmoor" />
      <xs:enumeration value="Fleet North" />
      <xs:enumeration value="Fleet Pondtail" />
      <xs:enumeration value="Fleet West" />
      <xs:enumeration value="Frogmore and Darby Green" />
      <xs:enumeration value="Hartley Wintney" />
      <xs:enumeration value="Hook" />
      <xs:enumeration value="Long Sutton" />
      <xs:enumeration value="Odiham" />
      <xs:enumeration value="Yateley East" />
      <xs:enumeration value="Yateley North" />
      <xs:enumeration value="Yateley West" />
      <xs:enumeration value="Barncroft" />
      <xs:enumeration value="Battins" />
      <xs:enumeration value="Bedhampton" />
      <xs:enumeration value="Bondfields" />
      <xs:enumeration value="Cowplain" />
      <xs:enumeration value="Emsworth" />
      <xs:enumeration value="Hart Plain" />
      <xs:enumeration value="Hayling East" />
      <xs:enumeration value="Hayling West" />
      <xs:enumeration value="Purbrook" />
      <xs:enumeration value="St Faith's" />
      <xs:enumeration value="Stakes" />
      <xs:enumeration value="Warren Park" />
      <xs:enumeration value="Waterloo" />
      <xs:enumeration value="Ashurst, Copythorne South and Netley Marsh" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Bashley" />
      <xs:enumeration value="Becton" />
      <xs:enumeration value="Boldre and Sway" />
      <xs:enumeration value="Bramshaw, Copythorne North and Minstead" />
      <xs:enumeration value="Bransgore and Burley" />
      <xs:enumeration value="Brockenhurst and Forest South East" />
      <xs:enumeration value="Buckland" />
      <xs:enumeration value="Butts Ash and Dibden Purlieu" />
      <xs:enumeration value="Dibden and Hythe East" />
      <xs:enumeration value="Downlands and Forest" />
      <xs:enumeration value="Fawley, Blackfield and Langley" />
      <xs:enumeration value="Fernhill" />
      <xs:enumeration value="Fordingbridge" />
      <xs:enumeration value="Forest North West" />
      <xs:enumeration value="Furzedown and Hardley" />
      <xs:enumeration value="Holbury and North Blackfield" />
      <xs:enumeration value="Hordle" />
      <xs:enumeration value="Hythe West and Langdown" />
      <xs:enumeration value="Lymington Town" />
      <xs:enumeration value="Lyndhurst" />
      <xs:enumeration value="Marchwood" />
      <xs:enumeration value="Milford" />
      <xs:enumeration value="Milton" />
      <xs:enumeration value="Pennington" />
      <xs:enumeration value="Ringwood East and Sopley" />
      <xs:enumeration value="Ringwood North" />
      <xs:enumeration value="Ringwood South" />
      <xs:enumeration value="Totton Central" />
      <xs:enumeration value="Totton East" />
      <xs:enumeration value="Totton North" />
      <xs:enumeration value="Totton South" />
      <xs:enumeration value="Totton West" />
      <xs:enumeration value="Cove and Southwood" />
      <xs:enumeration value="Empress" />
      <xs:enumeration value="Fernhill" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Heron Wood" />
      <xs:enumeration value="Knellwood" />
      <xs:enumeration value="Manor Park" />
      <xs:enumeration value="Mayfield" />
      <xs:enumeration value="North Town" />
      <xs:enumeration value="Rowhill" />
      <xs:enumeration value="St. John's" />
      <xs:enumeration value="St. Mark's" />
      <xs:enumeration value="Wellington" />
      <xs:enumeration value="Westheath" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Alamein" />
      <xs:enumeration value="Ampfield and Braishfield" />
      <xs:enumeration value="Amport" />
      <xs:enumeration value="Anna" />
      <xs:enumeration value="Blackwater" />
      <xs:enumeration value="Bourne Valley" />
      <xs:enumeration value="Broughton and Stockbridge" />
      <xs:enumeration value="Charlton" />
      <xs:enumeration value="Chilworth, Nursling and Rownhams" />
      <xs:enumeration value="Cupernham" />
      <xs:enumeration value="Dun Valley" />
      <xs:enumeration value="Harewood" />
      <xs:enumeration value="Harroway" />
      <xs:enumeration value="Kings Somborne and Michelmersh" />
      <xs:enumeration value="Millway" />
      <xs:enumeration value="North Baddesley" />
      <xs:enumeration value="Over Wallop" />
      <xs:enumeration value="Penton Bellinger" />
      <xs:enumeration value="Romsey Extra" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Tadburn" />
      <xs:enumeration value="Valley Park" />
      <xs:enumeration value="Winton" />
      <xs:enumeration value="Bishops Waltham" />
      <xs:enumeration value="Boarhunt and Southwick" />
      <xs:enumeration value="Cheriton and Bishops Sutton" />
      <xs:enumeration value="Colden Common and Twyford" />
      <xs:enumeration value="Compton and Otterbourne" />
      <xs:enumeration value="Denmead" />
      <xs:enumeration value="Droxford, Soberton and Hambledon" />
      <xs:enumeration value="Itchen Valley" />
      <xs:enumeration value="Kings Worthy" />
      <xs:enumeration value="Littleton and Harestock" />
      <xs:enumeration value="Olivers Battery and Badger Farm" />
      <xs:enumeration value="Owslebury and Curdridge" />
      <xs:enumeration value="St Barnabas" />
      <xs:enumeration value="St Bartholomew" />
      <xs:enumeration value="St John and All Saints" />
      <xs:enumeration value="St Luke" />
      <xs:enumeration value="St Michael" />
      <xs:enumeration value="St Paul" />
      <xs:enumeration value="Shedfield" />
      <xs:enumeration value="Sparsholt" />
      <xs:enumeration value="Swanmore and Newtown" />
      <xs:enumeration value="The Alresfords" />
      <xs:enumeration value="Upper Meon Valley" />
      <xs:enumeration value="Whiteley" />
      <xs:enumeration value="Wickham" />
      <xs:enumeration value="Wonston and Micheldever" />
      <xs:enumeration value="Broxbourne" />
      <xs:enumeration value="Bury Green" />
      <xs:enumeration value="Cheshunt Central" />
      <xs:enumeration value="Cheshunt North" />
      <xs:enumeration value="Flamstead End" />
      <xs:enumeration value="Goffs Oak" />
      <xs:enumeration value="Hoddesdon North" />
      <xs:enumeration value="Hoddesdon Town" />
      <xs:enumeration value="Rosedale" />
      <xs:enumeration value="Rye Park" />
      <xs:enumeration value="Theobalds" />
      <xs:enumeration value="Waltham Cross" />
      <xs:enumeration value="Wormley &amp; Turnford" />
      <xs:enumeration value="Adeyfield East" />
      <xs:enumeration value="Adeyfield West" />
      <xs:enumeration value="Aldbury and Wigginton" />
      <xs:enumeration value="Apsley" />
      <xs:enumeration value="Ashridge" />
      <xs:enumeration value="Bennetts End" />
      <xs:enumeration value="Berkhamsted Castle" />
      <xs:enumeration value="Berkhamsted East" />
      <xs:enumeration value="Berkhamsted West" />
      <xs:enumeration value="Bovingdon, Flaunden &amp; Chipperfield" />
      <xs:enumeration value="Boxmoor" />
      <xs:enumeration value="Chaulden &amp; Shrubhill" />
      <xs:enumeration value="Corner Hall" />
      <xs:enumeration value="Gadebridge" />
      <xs:enumeration value="Grove Hill" />
      <xs:enumeration value="Hemel Hempstead Central" />
      <xs:enumeration value="Highfield &amp; St Pauls" />
      <xs:enumeration value="Kings Langley" />
      <xs:enumeration value="Leverstock Green" />
      <xs:enumeration value="Nash Mills" />
      <xs:enumeration value="Northchurch" />
      <xs:enumeration value="Tring Central" />
      <xs:enumeration value="Tring East" />
      <xs:enumeration value="Tring West" />
      <xs:enumeration value="Warners End" />
      <xs:enumeration value="Watling" />
      <xs:enumeration value="Woodhall" />
      <xs:enumeration value="Bishop's Stortford All Saints" />
      <xs:enumeration value="Bishop's Stortford Central" />
      <xs:enumeration value="Bishop's Stortford Meads" />
      <xs:enumeration value="Bishop's Stortford Silverleys" />
      <xs:enumeration value="Bishop's Stortford South" />
      <xs:enumeration value="Braughing" />
      <xs:enumeration value="Buntingford" />
      <xs:enumeration value="Datchworth &amp; Aston" />
      <xs:enumeration value="Great Amwell" />
      <xs:enumeration value="Hertford Bengeo" />
      <xs:enumeration value="Hertford Castle" />
      <xs:enumeration value="Hertford Heath" />
      <xs:enumeration value="Hertford Kingsmead" />
      <xs:enumeration value="Hertford Rural North" />
      <xs:enumeration value="Hertford Rural South" />
      <xs:enumeration value="Hertford Sele" />
      <xs:enumeration value="Hunsdon" />
      <xs:enumeration value="Little Hadham" />
      <xs:enumeration value="Mundens and Cottered" />
      <xs:enumeration value="Much Hadham" />
      <xs:enumeration value="Puckeridge" />
      <xs:enumeration value="Sawbridgeworth" />
      <xs:enumeration value="Stanstead Abbots" />
      <xs:enumeration value="Thundridge &amp; Standon" />
      <xs:enumeration value="Walkern" />
      <xs:enumeration value="Ware Chadwell" />
      <xs:enumeration value="Ware Christchurch" />
      <xs:enumeration value="Ware St Mary's" />
      <xs:enumeration value="Ware Trinity" />
      <xs:enumeration value="Watton-at-Stone" />
      <xs:enumeration value="Aldenham East" />
      <xs:enumeration value="Aldenham West" />
      <xs:enumeration value="Borehamwood Brookmeadow" />
      <xs:enumeration value="Borehamwood Cowley Hill" />
      <xs:enumeration value="Borehamwood Hillside" />
      <xs:enumeration value="Borehamwood Kenilworth" />
      <xs:enumeration value="Bushey Heath" />
      <xs:enumeration value="Bushey North" />
      <xs:enumeration value="Bushey Park" />
      <xs:enumeration value="Bushey St James" />
      <xs:enumeration value="Elstree" />
      <xs:enumeration value="Potters Bar Furzefield" />
      <xs:enumeration value="Potters Bar Oakmere" />
      <xs:enumeration value="Potters Bar Parkfield" />
      <xs:enumeration value="Shenley" />
      <xs:enumeration value="Arbury" />
      <xs:enumeration value="Baldock East" />
      <xs:enumeration value="Baldock Town" />
      <xs:enumeration value="Cadwell" />
      <xs:enumeration value="Codicote" />
      <xs:enumeration value="Ermine" />
      <xs:enumeration value="Graveley &amp; Wymondley" />
      <xs:enumeration value="Hitchin Bearton" />
      <xs:enumeration value="Hitchin Highbury" />
      <xs:enumeration value="Hitchin Oughton" />
      <xs:enumeration value="Hitchin Priory" />
      <xs:enumeration value="Hitchin Walsworth" />
      <xs:enumeration value="Hitchwood" />
      <xs:enumeration value="Hoo" />
      <xs:enumeration value="Kimpton" />
      <xs:enumeration value="Knebworth" />
      <xs:enumeration value="Letchworth East" />
      <xs:enumeration value="Letchworth Grange" />
      <xs:enumeration value="Letchworth South East" />
      <xs:enumeration value="Letchworth South West" />
      <xs:enumeration value="Letchworth Wilbury" />
      <xs:enumeration value="Offa" />
      <xs:enumeration value="Royston Heath" />
      <xs:enumeration value="Royston Meridian" />
      <xs:enumeration value="Royston Palace" />
      <xs:enumeration value="Weston and Sandon" />
      <xs:enumeration value="Ashley" />
      <xs:enumeration value="Batchwood" />
      <xs:enumeration value="Clarence" />
      <xs:enumeration value="Colney Heath" />
      <xs:enumeration value="Cunningham" />
      <xs:enumeration value="Harpenden East" />
      <xs:enumeration value="Harpenden North" />
      <xs:enumeration value="Harpenden South" />
      <xs:enumeration value="Harpenden West" />
      <xs:enumeration value="London Colney" />
      <xs:enumeration value="Marshalswick North" />
      <xs:enumeration value="Marshalswick South" />
      <xs:enumeration value="Park Street" />
      <xs:enumeration value="Redbourn" />
      <xs:enumeration value="St Peters" />
      <xs:enumeration value="St Stephen" />
      <xs:enumeration value="Sandridge" />
      <xs:enumeration value="Sopwell" />
      <xs:enumeration value="Verulam" />
      <xs:enumeration value="Wheathampstead" />
      <xs:enumeration value="Bandley Hill" />
      <xs:enumeration value="Bedwell" />
      <xs:enumeration value="Chells" />
      <xs:enumeration value="Longmeadow" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Martins Wood" />
      <xs:enumeration value="Old Town" />
      <xs:enumeration value="Pin Green" />
      <xs:enumeration value="Roebuck" />
      <xs:enumeration value="St Nicholas" />
      <xs:enumeration value="Shephall" />
      <xs:enumeration value="Symonds Green" />
      <xs:enumeration value="Woodfield" />
      <xs:enumeration value="Abbots Langley" />
      <xs:enumeration value="Ashridge" />
      <xs:enumeration value="Bedmond &amp; Primrose Hill" />
      <xs:enumeration value="Carpenders Park" />
      <xs:enumeration value="Chorleywood East" />
      <xs:enumeration value="Chorleywood West" />
      <xs:enumeration value="Croxley Green" />
      <xs:enumeration value="Croxley Green North" />
      <xs:enumeration value="Croxley Green South" />
      <xs:enumeration value="Hayling" />
      <xs:enumeration value="Langleybury" />
      <xs:enumeration value="Leavesden" />
      <xs:enumeration value="Maple Cross &amp; Mill End" />
      <xs:enumeration value="Moor Park &amp; Eastbury" />
      <xs:enumeration value="Northwick" />
      <xs:enumeration value="Oxhey Hall" />
      <xs:enumeration value="Penn" />
      <xs:enumeration value="Rickmansworth" />
      <xs:enumeration value="Rickmansworth West" />
      <xs:enumeration value="Sarratt" />
      <xs:enumeration value="Callowland" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Holywell" />
      <xs:enumeration value="Leggatts" />
      <xs:enumeration value="Meriden" />
      <xs:enumeration value="Nascot" />
      <xs:enumeration value="Oxhey" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Stanborough" />
      <xs:enumeration value="Tudor" />
      <xs:enumeration value="Vicarage" />
      <xs:enumeration value="Woodside" />
      <xs:enumeration value="Brookmans Park and Little Heath" />
      <xs:enumeration value="Haldens" />
      <xs:enumeration value="Handside" />
      <xs:enumeration value="Hatfield Central" />
      <xs:enumeration value="Hatfield East" />
      <xs:enumeration value="Hatfield North" />
      <xs:enumeration value="Hatfield South" />
      <xs:enumeration value="Hatfield West" />
      <xs:enumeration value="Hollybush" />
      <xs:enumeration value="Howlands" />
      <xs:enumeration value="Northaw" />
      <xs:enumeration value="Panshanger" />
      <xs:enumeration value="Peartree" />
      <xs:enumeration value="Sherrards" />
      <xs:enumeration value="Welham Green" />
      <xs:enumeration value="Welwyn North" />
      <xs:enumeration value="Welwyn South" />
      <xs:enumeration value="Aylesford Green" />
      <xs:enumeration value="Beaver" />
      <xs:enumeration value="Biddenden" />
      <xs:enumeration value="Bockhanger" />
      <xs:enumeration value="Boughton Aluph and Eastwell" />
      <xs:enumeration value="Bybrook" />
      <xs:enumeration value="Charing" />
      <xs:enumeration value="Downs North" />
      <xs:enumeration value="Downs West" />
      <xs:enumeration value="Godinton" />
      <xs:enumeration value="Great Chart with Singleton North" />
      <xs:enumeration value="Highfield" />
      <xs:enumeration value="Isle of Oxney" />
      <xs:enumeration value="Kennington" />
      <xs:enumeration value="Little Burton Farm" />
      <xs:enumeration value="Norman" />
      <xs:enumeration value="North Willesborough" />
      <xs:enumeration value="Park Farm North" />
      <xs:enumeration value="Park Farm South" />
      <xs:enumeration value="Rolvenden and Tenterden West" />
      <xs:enumeration value="St Michaels" />
      <xs:enumeration value="Saxon Shore" />
      <xs:enumeration value="Singleton South" />
      <xs:enumeration value="South Willesborough" />
      <xs:enumeration value="Stanhope" />
      <xs:enumeration value="Stour" />
      <xs:enumeration value="Tenterden North" />
      <xs:enumeration value="Tenterden South" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Washford" />
      <xs:enumeration value="Weald Central" />
      <xs:enumeration value="Weald East" />
      <xs:enumeration value="Weald North" />
      <xs:enumeration value="Weald South" />
      <xs:enumeration value="Wye" />
      <xs:enumeration value="Barham Downs" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Blean Forest" />
      <xs:enumeration value="Chartham and Stone Street" />
      <xs:enumeration value="Chestfield and Swalecliffe" />
      <xs:enumeration value="Gorrell" />
      <xs:enumeration value="Greenhill and Eddington" />
      <xs:enumeration value="Harbledown" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Herne and Broomfield" />
      <xs:enumeration value="Heron" />
      <xs:enumeration value="Little Stour" />
      <xs:enumeration value="Marshside" />
      <xs:enumeration value="North Nailbourne" />
      <xs:enumeration value="Northgate" />
      <xs:enumeration value="Reculver" />
      <xs:enumeration value="St Stephens" />
      <xs:enumeration value="Seasalter" />
      <xs:enumeration value="Sturry North" />
      <xs:enumeration value="Sturry South" />
      <xs:enumeration value="Tankerton" />
      <xs:enumeration value="West Bay" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="Wincheap" />
      <xs:enumeration value="Bean and Darenth" />
      <xs:enumeration value="Brent" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Greenhithe" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Joyce Green" />
      <xs:enumeration value="Joydens Wood" />
      <xs:enumeration value="Littlebrook" />
      <xs:enumeration value="Longfield, New Barn and Southfleet" />
      <xs:enumeration value="Newtown" />
      <xs:enumeration value="Princes" />
      <xs:enumeration value="Stone" />
      <xs:enumeration value="Sutton-at-Hone and Hawley" />
      <xs:enumeration value="Swanscombe" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="West Hill" />
      <xs:enumeration value="Wilmington" />
      <xs:enumeration value="Aylesham" />
      <xs:enumeration value="Buckland" />
      <xs:enumeration value="Capel-le-Ferne" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Eastry" />
      <xs:enumeration value="Eythorne and Shepherdswell" />
      <xs:enumeration value="Little Stour and Ashstone" />
      <xs:enumeration value="Lydden and Temple Ewell" />
      <xs:enumeration value="Maxton, Elms Vale and Priory" />
      <xs:enumeration value="Middle Deal and Sholden" />
      <xs:enumeration value="Mill Hill" />
      <xs:enumeration value="North Deal" />
      <xs:enumeration value="Ringwould" />
      <xs:enumeration value="River" />
      <xs:enumeration value="St Margaret's-at-Cliffe" />
      <xs:enumeration value="St Radigunds" />
      <xs:enumeration value="Sandwich" />
      <xs:enumeration value="Tower Hamlets" />
      <xs:enumeration value="Town and Pier" />
      <xs:enumeration value="Walmer" />
      <xs:enumeration value="Whitfield" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Chalk" />
      <xs:enumeration value="Coldharbour" />
      <xs:enumeration value="Higham" />
      <xs:enumeration value="Istead Rise" />
      <xs:enumeration value="Meopham North" />
      <xs:enumeration value="Meopham South and Vigo" />
      <xs:enumeration value="Northfleet North" />
      <xs:enumeration value="Northfleet South" />
      <xs:enumeration value="Painters Ash" />
      <xs:enumeration value="Pelham" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Riverview" />
      <xs:enumeration value="Shorne, Cobham and Luddesdown" />
      <xs:enumeration value="Singlewell" />
      <xs:enumeration value="Westcourt" />
      <xs:enumeration value="Whitehill" />
      <xs:enumeration value="Woodlands" />
      <xs:enumeration value="Allington" />
      <xs:enumeration value="Barming" />
      <xs:enumeration value="Bearsted" />
      <xs:enumeration value="Boughton Monchelsea and Chart Sutton" />
      <xs:enumeration value="Boxley" />
      <xs:enumeration value="Bridge" />
      <xs:enumeration value="Coxheath and Hunton" />
      <xs:enumeration value="Detling and Thurnham" />
      <xs:enumeration value="Downswood and Otham" />
      <xs:enumeration value="East" />
      <xs:enumeration value="Fant" />
      <xs:enumeration value="Harrietsham and Lenham" />
      <xs:enumeration value="Headcorn" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="High Street" />
      <xs:enumeration value="Leeds" />
      <xs:enumeration value="Loose" />
      <xs:enumeration value="Marden and Yalding" />
      <xs:enumeration value="North" />
      <xs:enumeration value="North Downs" />
      <xs:enumeration value="Park Wood" />
      <xs:enumeration value="Shepway North" />
      <xs:enumeration value="Shepway South" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Staplehurst" />
      <xs:enumeration value="Sutton Valence and Langley" />
      <xs:enumeration value="Ash" />
      <xs:enumeration value="Brasted, Chevening and Sundridge" />
      <xs:enumeration value="Cowden and Hever" />
      <xs:enumeration value="Crockenhill and Well Hill" />
      <xs:enumeration value="Dunton Green and Riverhead" />
      <xs:enumeration value="Edenbridge North and East" />
      <xs:enumeration value="Edenbridge South and West" />
      <xs:enumeration value="Eynsford" />
      <xs:enumeration value="Farningham, Horton Kirby and South Darenth" />
      <xs:enumeration value="Fawkham and West Kingsdown" />
      <xs:enumeration value="Halstead, Knockholt and Badgers Mount" />
      <xs:enumeration value="Hartley and Hodsoll Street" />
      <xs:enumeration value="Hextable" />
      <xs:enumeration value="Kemsing" />
      <xs:enumeration value="Leigh and Chiddingstone Causeway" />
      <xs:enumeration value="Otford and Shoreham" />
      <xs:enumeration value="Penshurst, Fordcombe and Chiddingstone" />
      <xs:enumeration value="Seal and Weald" />
      <xs:enumeration value="Sevenoaks Eastern" />
      <xs:enumeration value="Sevenoaks Kippington" />
      <xs:enumeration value="Sevenoaks Northern" />
      <xs:enumeration value="Sevenoaks Town and St John's" />
      <xs:enumeration value="Swanley Christchurch and Swanley Village" />
      <xs:enumeration value="Swanley St Mary's" />
      <xs:enumeration value="Swanley White Oak" />
      <xs:enumeration value="Westerham and Crockham Hill" />
      <xs:enumeration value="Dymchurch and St Mary's Bay" />
      <xs:enumeration value="Elham and Stelling Minnis" />
      <xs:enumeration value="Folkestone Cheriton" />
      <xs:enumeration value="Folkestone East" />
      <xs:enumeration value="Folkestone Foord" />
      <xs:enumeration value="Folkestone Harbour" />
      <xs:enumeration value="Folkestone Harvey Central" />
      <xs:enumeration value="Folkestone Harvey West" />
      <xs:enumeration value="Folkestone Morehall" />
      <xs:enumeration value="Folkestone Park" />
      <xs:enumeration value="Folkestone Sandgate" />
      <xs:enumeration value="Hythe Central" />
      <xs:enumeration value="Hythe East" />
      <xs:enumeration value="Hythe West" />
      <xs:enumeration value="Lydd" />
      <xs:enumeration value="Lympne and Stanford" />
      <xs:enumeration value="New Romney Coast" />
      <xs:enumeration value="New Romney Town" />
      <xs:enumeration value="North Downs East" />
      <xs:enumeration value="North Downs West" />
      <xs:enumeration value="Romney Marsh" />
      <xs:enumeration value="Tolsford" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Borden" />
      <xs:enumeration value="Boughton and Courtenay" />
      <xs:enumeration value="Chalkwell" />
      <xs:enumeration value="Davington Priory" />
      <xs:enumeration value="East Downs" />
      <xs:enumeration value="Grove" />
      <xs:enumeration value="Hartlip, Newington and Upchurch" />
      <xs:enumeration value="Iwade and Lower Halstow" />
      <xs:enumeration value="Kemsley" />
      <xs:enumeration value="Leysdown and Warden" />
      <xs:enumeration value="Milton Regis" />
      <xs:enumeration value="Minster Cliffs" />
      <xs:enumeration value="Murston" />
      <xs:enumeration value="Queenborough and Halfway" />
      <xs:enumeration value="Roman" />
      <xs:enumeration value="St Ann's" />
      <xs:enumeration value="St Michaels" />
      <xs:enumeration value="Sheerness East" />
      <xs:enumeration value="Sheerness West" />
      <xs:enumeration value="Sheppey Central" />
      <xs:enumeration value="Teynham and Lynsted" />
      <xs:enumeration value="Watling" />
      <xs:enumeration value="West Downs" />
      <xs:enumeration value="Woodstock" />
      <xs:enumeration value="Beacon Road" />
      <xs:enumeration value="Birchington North" />
      <xs:enumeration value="Birchington South" />
      <xs:enumeration value="Bradstowe" />
      <xs:enumeration value="Central Harbour" />
      <xs:enumeration value="Cliffsend and Pegwell" />
      <xs:enumeration value="Cliftonville East" />
      <xs:enumeration value="Cliftonville West" />
      <xs:enumeration value="Dane Valley" />
      <xs:enumeration value="Eastcliff" />
      <xs:enumeration value="Garlinge" />
      <xs:enumeration value="Kingsgate" />
      <xs:enumeration value="Margate Central" />
      <xs:enumeration value="Nethercourt" />
      <xs:enumeration value="Newington" />
      <xs:enumeration value="Northwood" />
      <xs:enumeration value="St Peters" />
      <xs:enumeration value="Salmestone" />
      <xs:enumeration value="Sir Moses Montefiore" />
      <xs:enumeration value="Thanet Villages" />
      <xs:enumeration value="Viking" />
      <xs:enumeration value="Westbrook" />
      <xs:enumeration value="Westgate-on-Sea" />
      <xs:enumeration value="Aylesford" />
      <xs:enumeration value="Blue Bell Hill and Walderslade" />
      <xs:enumeration value="Borough Green and Long Mill" />
      <xs:enumeration value="Burham, Eccles and Wouldham" />
      <xs:enumeration value="Cage Green" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Ditton" />
      <xs:enumeration value="Downs" />
      <xs:enumeration value="East Malling" />
      <xs:enumeration value="East Peckham and Golden Green" />
      <xs:enumeration value="Hadlow, Mereworth and West Peckham" />
      <xs:enumeration value="Higham" />
      <xs:enumeration value="Hildenborough" />
      <xs:enumeration value="Ightham" />
      <xs:enumeration value="Judd" />
      <xs:enumeration value="Kings Hill" />
      <xs:enumeration value="Larkfield North" />
      <xs:enumeration value="Larkfield South" />
      <xs:enumeration value="Medway" />
      <xs:enumeration value="Snodland East" />
      <xs:enumeration value="Snodland West" />
      <xs:enumeration value="Trench" />
      <xs:enumeration value="Vauxhall" />
      <xs:enumeration value="Wateringbury" />
      <xs:enumeration value="West Malling and Leybourne" />
      <xs:enumeration value="Wrotham" />
      <xs:enumeration value="Benenden and Cranbrook" />
      <xs:enumeration value="Brenchley and Horsmonden" />
      <xs:enumeration value="Broadwater" />
      <xs:enumeration value="Capel" />
      <xs:enumeration value="Culverden" />
      <xs:enumeration value="Frittenden and Sissinghurst" />
      <xs:enumeration value="Goudhurst and Lamberhurst" />
      <xs:enumeration value="Hawkhurst and Sandhurst" />
      <xs:enumeration value="Paddock Wood East" />
      <xs:enumeration value="Paddock Wood West" />
      <xs:enumeration value="Pantiles and St Mark's" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Pembury" />
      <xs:enumeration value="Rusthall" />
      <xs:enumeration value="St James'" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="Sherwood" />
      <xs:enumeration value="Southborough and High Brooms" />
      <xs:enumeration value="Southborough North" />
      <xs:enumeration value="Speldhurst and Bidborough" />
      <xs:enumeration value="Bank Hall" />
      <xs:enumeration value="Briercliffe" />
      <xs:enumeration value="Brunshaw" />
      <xs:enumeration value="Cliviger with Worsthorne" />
      <xs:enumeration value="Coal Clough with Deerplay" />
      <xs:enumeration value="Daneshouse with Stoneyholme" />
      <xs:enumeration value="Gannow" />
      <xs:enumeration value="Gawthorpe" />
      <xs:enumeration value="Hapton with Park" />
      <xs:enumeration value="Lanehead" />
      <xs:enumeration value="Queensgate" />
      <xs:enumeration value="Rosegrove with Lowerhouse" />
      <xs:enumeration value="Rosehill with Burnley Wood" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Whittlefield with Ightenhill" />
      <xs:enumeration value="Adlington and Anderton" />
      <xs:enumeration value="Astley and Buckshaw" />
      <xs:enumeration value="Brindle and Hoghton" />
      <xs:enumeration value="Chisnall" />
      <xs:enumeration value="Chorley East" />
      <xs:enumeration value="Chorley North East" />
      <xs:enumeration value="Chorley North West" />
      <xs:enumeration value="Chorley South East" />
      <xs:enumeration value="Chorley South West" />
      <xs:enumeration value="Clayton-le-Woods and Whittle-le-Woods" />
      <xs:enumeration value="Clayton-le-Woods North" />
      <xs:enumeration value="Clayton-le-Woods West and Cuerden" />
      <xs:enumeration value="Coppull" />
      <xs:enumeration value="Eccleston and Mawdesley" />
      <xs:enumeration value="Euxton North" />
      <xs:enumeration value="Euxton South" />
      <xs:enumeration value="Heath Charnock and Rivington" />
      <xs:enumeration value="Lostock" />
      <xs:enumeration value="Pennine" />
      <xs:enumeration value="Wheelton and Withnell" />
      <xs:enumeration value="Ansdell" />
      <xs:enumeration value="Ashton" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Clifton" />
      <xs:enumeration value="Elswick and Little Eccleston" />
      <xs:enumeration value="Fairhaven" />
      <xs:enumeration value="Freckleton East" />
      <xs:enumeration value="Freckleton West" />
      <xs:enumeration value="Heyhouses" />
      <xs:enumeration value="Kilnhouse" />
      <xs:enumeration value="Kirkham North" />
      <xs:enumeration value="Kirkham South" />
      <xs:enumeration value="Medlar-with-Wesham" />
      <xs:enumeration value="Newton and Treales" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Ribby-with-Wrea" />
      <xs:enumeration value="St Johns" />
      <xs:enumeration value="St Leonards" />
      <xs:enumeration value="Singleton and Greenhalgh" />
      <xs:enumeration value="Staining and Weeton" />
      <xs:enumeration value="Warton and Westby" />
      <xs:enumeration value="Altham" />
      <xs:enumeration value="Barnfield" />
      <xs:enumeration value="Baxenden" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="Clayton-le-Moors" />
      <xs:enumeration value="Huncoat" />
      <xs:enumeration value="Immanuel" />
      <xs:enumeration value="Milnshaw" />
      <xs:enumeration value="Netherton" />
      <xs:enumeration value="Overton" />
      <xs:enumeration value="Peel" />
      <xs:enumeration value="Rishton" />
      <xs:enumeration value="St Andrew's" />
      <xs:enumeration value="St Oswald's" />
      <xs:enumeration value="Spring Hill" />
      <xs:enumeration value="Bare" />
      <xs:enumeration value="Bolton-le-Sands" />
      <xs:enumeration value="Bulk" />
      <xs:enumeration value="Carnforth" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Duke's" />
      <xs:enumeration value="Ellel" />
      <xs:enumeration value="Halton-with-Aughton" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Heysham Central" />
      <xs:enumeration value="Heysham North" />
      <xs:enumeration value="Heysham South" />
      <xs:enumeration value="John O'Gaunt" />
      <xs:enumeration value="Kellet" />
      <xs:enumeration value="Lower Lune Valley" />
      <xs:enumeration value="Overton" />
      <xs:enumeration value="Poulton" />
      <xs:enumeration value="Scotforth East" />
      <xs:enumeration value="Scotforth West" />
      <xs:enumeration value="Silverdale" />
      <xs:enumeration value="Skerton East" />
      <xs:enumeration value="Skerton West" />
      <xs:enumeration value="Slyne-with-Hest" />
      <xs:enumeration value="Torrisholme" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Upper Lune Valley" />
      <xs:enumeration value="Warton" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="Barrowford" />
      <xs:enumeration value="Blacko and Higherford" />
      <xs:enumeration value="Boulsworth" />
      <xs:enumeration value="Bradley" />
      <xs:enumeration value="Brierfield" />
      <xs:enumeration value="Clover Hill" />
      <xs:enumeration value="Coates" />
      <xs:enumeration value="Craven" />
      <xs:enumeration value="Earby" />
      <xs:enumeration value="Foulridge" />
      <xs:enumeration value="Higham and Pendleside" />
      <xs:enumeration value="Horsfield" />
      <xs:enumeration value="Marsden" />
      <xs:enumeration value="Old Laund Booth" />
      <xs:enumeration value="Reedley" />
      <xs:enumeration value="Southfield" />
      <xs:enumeration value="Vivary Bridge" />
      <xs:enumeration value="Walverden" />
      <xs:enumeration value="Waterside" />
      <xs:enumeration value="Whitefield" />
      <xs:enumeration value="Ashton" />
      <xs:enumeration value="Brookfield" />
      <xs:enumeration value="Cadley" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Deepdale" />
      <xs:enumeration value="Fishwick" />
      <xs:enumeration value="Garrison" />
      <xs:enumeration value="Greyfriars" />
      <xs:enumeration value="Ingol" />
      <xs:enumeration value="Larches" />
      <xs:enumeration value="Lea" />
      <xs:enumeration value="Moor Park" />
      <xs:enumeration value="Preston Rural East" />
      <xs:enumeration value="Preston Rural North" />
      <xs:enumeration value="Ribbleton" />
      <xs:enumeration value="Riversway" />
      <xs:enumeration value="St George's" />
      <xs:enumeration value="St Matthew's" />
      <xs:enumeration value="Sharoe Green" />
      <xs:enumeration value="Town Centre" />
      <xs:enumeration value="Tulketh" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Aighton, Bailey and Chaigley" />
      <xs:enumeration value="Alston and Hothersall" />
      <xs:enumeration value="Billington and Old Langho" />
      <xs:enumeration value="Bowland, Newton and Slaidburn" />
      <xs:enumeration value="Chatburn" />
      <xs:enumeration value="Chipping" />
      <xs:enumeration value="Clayton-le-Dale with Ramsgreave" />
      <xs:enumeration value="Derby and Thornley" />
      <xs:enumeration value="Dilworth" />
      <xs:enumeration value="Edisford and Low Moor" />
      <xs:enumeration value="Gisburn, Rimington" />
      <xs:enumeration value="Langho" />
      <xs:enumeration value="Littlemoor" />
      <xs:enumeration value="Mellor" />
      <xs:enumeration value="Primrose" />
      <xs:enumeration value="Read and Simonstone" />
      <xs:enumeration value="Ribchester" />
      <xs:enumeration value="Sabden" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Salthill" />
      <xs:enumeration value="Waddington and West Bradford" />
      <xs:enumeration value="Whalley" />
      <xs:enumeration value="Wilpshire" />
      <xs:enumeration value="Wiswell and Pendleton" />
      <xs:enumeration value="Cribden" />
      <xs:enumeration value="Eden" />
      <xs:enumeration value="Facit and Shawforth" />
      <xs:enumeration value="Goodshaw" />
      <xs:enumeration value="Greenfield" />
      <xs:enumeration value="Greensclough" />
      <xs:enumeration value="Hareholme" />
      <xs:enumeration value="Healey and Whitworth" />
      <xs:enumeration value="Helmshore" />
      <xs:enumeration value="Irwell" />
      <xs:enumeration value="Longholme" />
      <xs:enumeration value="Stacksteads" />
      <xs:enumeration value="Whitewell" />
      <xs:enumeration value="Worsley" />
      <xs:enumeration value="Bamber Bridge East" />
      <xs:enumeration value="Bamber Bridge North" />
      <xs:enumeration value="Bamber Bridge West" />
      <xs:enumeration value="Broad Oak" />
      <xs:enumeration value="Charnock" />
      <xs:enumeration value="Coupe Green and Gregson Lane" />
      <xs:enumeration value="Earnshaw Bridge" />
      <xs:enumeration value="Farington East" />
      <xs:enumeration value="Farington West" />
      <xs:enumeration value="Golden Hill" />
      <xs:enumeration value="Howick and Priory" />
      <xs:enumeration value="Kingsfold" />
      <xs:enumeration value="Leyland Central" />
      <xs:enumeration value="Leyland St. Ambrose" />
      <xs:enumeration value="Leyland St. Mary's" />
      <xs:enumeration value="Little Hoole and Much Hoole" />
      <xs:enumeration value="Longton and Hutton West" />
      <xs:enumeration value="Lostock Hall" />
      <xs:enumeration value="Lowerhouse" />
      <xs:enumeration value="Middleforth" />
      <xs:enumeration value="Moss Side" />
      <xs:enumeration value="New Longton and Hutton East" />
      <xs:enumeration value="Samlesbury and Walton" />
      <xs:enumeration value="Seven Stars" />
      <xs:enumeration value="Tardy Gate" />
      <xs:enumeration value="Walton-le-Dale" />
      <xs:enumeration value="Whitefield" />
      <xs:enumeration value="Ashurst" />
      <xs:enumeration value="Aughton and Downholland" />
      <xs:enumeration value="Aughton Park" />
      <xs:enumeration value="Bickerstaffe" />
      <xs:enumeration value="Birch Green" />
      <xs:enumeration value="Burscough East" />
      <xs:enumeration value="Burscough West" />
      <xs:enumeration value="Derby" />
      <xs:enumeration value="Digmoor" />
      <xs:enumeration value="Halsall" />
      <xs:enumeration value="Hesketh-with-Becconsall" />
      <xs:enumeration value="Knowsley" />
      <xs:enumeration value="Moorside" />
      <xs:enumeration value="Newburgh" />
      <xs:enumeration value="North Meols" />
      <xs:enumeration value="Parbold" />
      <xs:enumeration value="Rufford" />
      <xs:enumeration value="Scarisbrick" />
      <xs:enumeration value="Scott" />
      <xs:enumeration value="Skelmersdale North" />
      <xs:enumeration value="Skelmersdale South" />
      <xs:enumeration value="Tanhouse" />
      <xs:enumeration value="Tarleton" />
      <xs:enumeration value="Up Holland" />
      <xs:enumeration value="Wrightington" />
      <xs:enumeration value="Bourne" />
      <xs:enumeration value="Breck" />
      <xs:enumeration value="Brock" />
      <xs:enumeration value="Cabus" />
      <xs:enumeration value="Calder" />
      <xs:enumeration value="Carleton" />
      <xs:enumeration value="Catterall" />
      <xs:enumeration value="Cleveleys Park" />
      <xs:enumeration value="Garstang" />
      <xs:enumeration value="Great Eccleston" />
      <xs:enumeration value="Hambleton and Stalmine-with-Staynall" />
      <xs:enumeration value="Hardhorn" />
      <xs:enumeration value="High Cross" />
      <xs:enumeration value="Jubilee" />
      <xs:enumeration value="Mount" />
      <xs:enumeration value="Norcross" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Pharos" />
      <xs:enumeration value="Pilling" />
      <xs:enumeration value="Preesall" />
      <xs:enumeration value="Rossall" />
      <xs:enumeration value="Staina" />
      <xs:enumeration value="Tithebarn" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Warren" />
      <xs:enumeration value="Wyresdale" />
      <xs:enumeration value="Blaby South" />
      <xs:enumeration value="Cosby with South Whetstone" />
      <xs:enumeration value="Countesthorpe" />
      <xs:enumeration value="Croft Hill" />
      <xs:enumeration value="Ellis" />
      <xs:enumeration value="Enderby and St John's" />
      <xs:enumeration value="Fairestone" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Millfield" />
      <xs:enumeration value="Muxloe" />
      <xs:enumeration value="Narborough and Littlethorpe" />
      <xs:enumeration value="Normanton" />
      <xs:enumeration value="North Whetstone" />
      <xs:enumeration value="Pastures" />
      <xs:enumeration value="Ravenhurst and Fosse" />
      <xs:enumeration value="Saxondale" />
      <xs:enumeration value="Stanton and Flamville" />
      <xs:enumeration value="Winstanley" />
      <xs:enumeration value="Anstey" />
      <xs:enumeration value="Barrow and Sileby West" />
      <xs:enumeration value="Birstall Wanlip" />
      <xs:enumeration value="Birstall Watermead" />
      <xs:enumeration value="East Goscote" />
      <xs:enumeration value="Forest Bradgate" />
      <xs:enumeration value="Loughborough Ashby" />
      <xs:enumeration value="Loughborough Dishley and Hathern" />
      <xs:enumeration value="Loughborough Garendon" />
      <xs:enumeration value="Loughborough Hastings" />
      <xs:enumeration value="Loughborough Lemyngton" />
      <xs:enumeration value="Loughborough Nanpantan" />
      <xs:enumeration value="Loughborough Outwoods" />
      <xs:enumeration value="Loughborough Shelthorpe" />
      <xs:enumeration value="Loughborough Southfields" />
      <xs:enumeration value="Loughborough Storer" />
      <xs:enumeration value="Mountsorrel" />
      <xs:enumeration value="Queniborough" />
      <xs:enumeration value="Quorn and Mountsorrel Castle" />
      <xs:enumeration value="Rothley and Thurcaston" />
      <xs:enumeration value="Shepshed East" />
      <xs:enumeration value="Shepshed West" />
      <xs:enumeration value="Sileby" />
      <xs:enumeration value="Syston East" />
      <xs:enumeration value="Syston West" />
      <xs:enumeration value="The Wolds" />
      <xs:enumeration value="Thurmaston" />
      <xs:enumeration value="Wreake Villages" />
      <xs:enumeration value="Billesdon" />
      <xs:enumeration value="Bosworth" />
      <xs:enumeration value="Broughton Astley-Astley" />
      <xs:enumeration value="Broughton Astley-Broughton" />
      <xs:enumeration value="Broughton Astley-Primethorpe" />
      <xs:enumeration value="Broughton Astley-Sutton" />
      <xs:enumeration value="Dunton" />
      <xs:enumeration value="Fleckney" />
      <xs:enumeration value="Glen" />
      <xs:enumeration value="Kibworth" />
      <xs:enumeration value="Lubenham" />
      <xs:enumeration value="Lutterworth Brookfield" />
      <xs:enumeration value="Lutterworth Orchard" />
      <xs:enumeration value="Lutterworth Springs" />
      <xs:enumeration value="Lutterworth Swift" />
      <xs:enumeration value="Market Harborough-Great Bowden and Arden" />
      <xs:enumeration value="Market Harborough-Little Bowden" />
      <xs:enumeration value="Market Harborough-Logan" />
      <xs:enumeration value="Market Harborough-Welland" />
      <xs:enumeration value="Misterton" />
      <xs:enumeration value="Nevill" />
      <xs:enumeration value="Peatling" />
      <xs:enumeration value="Thurnby and Houghton" />
      <xs:enumeration value="Tilton" />
      <xs:enumeration value="Ullesthorpe" />
      <xs:enumeration value="Ambien" />
      <xs:enumeration value="Barlestone, Nailstone and Osbaston" />
      <xs:enumeration value="Barwell" />
      <xs:enumeration value="Burbage St Catherines and Lash Hill" />
      <xs:enumeration value="Burbage Sketchley and Stretton" />
      <xs:enumeration value="Cadeby, Carlton and Market Bosworth with Shackerstone" />
      <xs:enumeration value="Earl Shilton" />
      <xs:enumeration value="Groby" />
      <xs:enumeration value="Hinckley Castle" />
      <xs:enumeration value="Hinckley Clarendon" />
      <xs:enumeration value="Hinckley De Montfort" />
      <xs:enumeration value="Hinckley Trinity" />
      <xs:enumeration value="Markfield, Stanton and Fieldhead" />
      <xs:enumeration value="Newbold Verdon with Desford and Peckleton" />
      <xs:enumeration value="Ratby, Bagworth and Thornton" />
      <xs:enumeration value="Twycross and Witherley with Sheepy" />
      <xs:enumeration value="Asfordby" />
      <xs:enumeration value="Bottesford" />
      <xs:enumeration value="Croxton Kerrial" />
      <xs:enumeration value="Frisby-on-the-Wreake" />
      <xs:enumeration value="Gaddesby" />
      <xs:enumeration value="Long Clawson and Stathern" />
      <xs:enumeration value="Melton Craven" />
      <xs:enumeration value="Melton Dorian" />
      <xs:enumeration value="Melton Egerton" />
      <xs:enumeration value="Melton Newport" />
      <xs:enumeration value="Melton Sysonby" />
      <xs:enumeration value="Melton Warwick" />
      <xs:enumeration value="Old Dalby" />
      <xs:enumeration value="Somerby" />
      <xs:enumeration value="Waltham-on-the-Wolds" />
      <xs:enumeration value="Wymondham" />
      <xs:enumeration value="Appleby" />
      <xs:enumeration value="Ashby Castle" />
      <xs:enumeration value="Ashby Holywell" />
      <xs:enumeration value="Ashby Ivanhoe" />
      <xs:enumeration value="Bardon" />
      <xs:enumeration value="Breedon" />
      <xs:enumeration value="Castle Donington" />
      <xs:enumeration value="Coalville" />
      <xs:enumeration value="Greenhill" />
      <xs:enumeration value="Hugglescote" />
      <xs:enumeration value="Ibstock and Heather" />
      <xs:enumeration value="Kegworth and Whatton" />
      <xs:enumeration value="Measham" />
      <xs:enumeration value="Moira" />
      <xs:enumeration value="Oakthorpe and Donisthorpe" />
      <xs:enumeration value="Ravenstone and Packington" />
      <xs:enumeration value="Snibston" />
      <xs:enumeration value="Thringstone" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Whitwick" />
      <xs:enumeration value="Oadby Brocks Hill" />
      <xs:enumeration value="Oadby Grange" />
      <xs:enumeration value="Oadby St Peter's" />
      <xs:enumeration value="Oadby Uplands" />
      <xs:enumeration value="Oadby Woodlands" />
      <xs:enumeration value="South Wigston" />
      <xs:enumeration value="Wigston All Saints" />
      <xs:enumeration value="Wigston Fields" />
      <xs:enumeration value="Wigston Meadowcourt" />
      <xs:enumeration value="Wigston St Wolstan's" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Coastal" />
      <xs:enumeration value="Fenside" />
      <xs:enumeration value="Fishtoft" />
      <xs:enumeration value="Five Village" />
      <xs:enumeration value="Frampton and Holme" />
      <xs:enumeration value="Kirton" />
      <xs:enumeration value="North" />
      <xs:enumeration value="Old Leake and Wrangle" />
      <xs:enumeration value="Pilgrim" />
      <xs:enumeration value="Skirbeck" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Staniland South" />
      <xs:enumeration value="Staniland North" />
      <xs:enumeration value="Swineshead and Holland Fen" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Witham" />
      <xs:enumeration value="Wyberton" />
      <xs:enumeration value="Alford" />
      <xs:enumeration value="Binbrook" />
      <xs:enumeration value="Burgh le Marsh" />
      <xs:enumeration value="Chapel St Leonards" />
      <xs:enumeration value="Coningsby and Tattershall" />
      <xs:enumeration value="Croft" />
      <xs:enumeration value="Frithville" />
      <xs:enumeration value="Grimoldby" />
      <xs:enumeration value="Halton Holegate" />
      <xs:enumeration value="Holton le Clay" />
      <xs:enumeration value="Horncastle" />
      <xs:enumeration value="Hundleby" />
      <xs:enumeration value="Ingoldmells" />
      <xs:enumeration value="Legbourne" />
      <xs:enumeration value="Ludford" />
      <xs:enumeration value="Mablethorpe Central" />
      <xs:enumeration value="Mablethorpe East" />
      <xs:enumeration value="Mablethorpe North" />
      <xs:enumeration value="Mareham le Fen" />
      <xs:enumeration value="Marshchapel" />
      <xs:enumeration value="North Holme" />
      <xs:enumeration value="North Somercotes" />
      <xs:enumeration value="North Thoresby" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Roughton" />
      <xs:enumeration value="St Clement's" />
      <xs:enumeration value="St James'" />
      <xs:enumeration value="St Margaret's" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="Scarbrough" />
      <xs:enumeration value="Seacroft" />
      <xs:enumeration value="Sibsey" />
      <xs:enumeration value="Skidbrooke with Saltfleet Haven" />
      <xs:enumeration value="Spilsby" />
      <xs:enumeration value="Stickney" />
      <xs:enumeration value="Sutton on Sea North" />
      <xs:enumeration value="Sutton on Sea South" />
      <xs:enumeration value="Tetford" />
      <xs:enumeration value="Tetney" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Trusthorpe and Mablethorpe South" />
      <xs:enumeration value="Wainfleet and Friskney" />
      <xs:enumeration value="Willoughby with Sloothby" />
      <xs:enumeration value="Winthorpe" />
      <xs:enumeration value="Withern with Stain" />
      <xs:enumeration value="Woodhall Spa" />
      <xs:enumeration value="Wragby" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Birchwood" />
      <xs:enumeration value="Boultham" />
      <xs:enumeration value="Bracebridge" />
      <xs:enumeration value="Carholme" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Glebe" />
      <xs:enumeration value="Hartsholme" />
      <xs:enumeration value="Minster" />
      <xs:enumeration value="Moorland" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Ashby de la Launde" />
      <xs:enumeration value="Bassingham" />
      <xs:enumeration value="Billinghay" />
      <xs:enumeration value="Bracebridge Heath and Waddington East" />
      <xs:enumeration value="Branston and Mere" />
      <xs:enumeration value="Brant Broughton" />
      <xs:enumeration value="Cliff Villages" />
      <xs:enumeration value="Cranwell and Byard's Leap" />
      <xs:enumeration value="Eagle and North Scarle" />
      <xs:enumeration value="Heckington Rural" />
      <xs:enumeration value="Heighington and Washingborough" />
      <xs:enumeration value="Kyme" />
      <xs:enumeration value="Leasingham and Roxholm" />
      <xs:enumeration value="Martin" />
      <xs:enumeration value="Metheringham" />
      <xs:enumeration value="North Hykeham Forum" />
      <xs:enumeration value="North Hykeham Memorial" />
      <xs:enumeration value="North Hykeham Mill" />
      <xs:enumeration value="North Hykeham Moor" />
      <xs:enumeration value="North Hykeham Witham" />
      <xs:enumeration value="Osbournby" />
      <xs:enumeration value="Ruskington" />
      <xs:enumeration value="Skellingthorpe" />
      <xs:enumeration value="Sleaford Castle" />
      <xs:enumeration value="Sleaford Holdingham" />
      <xs:enumeration value="Sleaford Mareham" />
      <xs:enumeration value="Sleaford Navigation" />
      <xs:enumeration value="Sleaford Quarrington" />
      <xs:enumeration value="Sleaford Westholme" />
      <xs:enumeration value="Waddington West" />
      <xs:enumeration value="Crowland" />
      <xs:enumeration value="Deeping St Nicholas" />
      <xs:enumeration value="Donington" />
      <xs:enumeration value="Fleet" />
      <xs:enumeration value="Gedney" />
      <xs:enumeration value="Gosberton Village" />
      <xs:enumeration value="Holbeach Hurn" />
      <xs:enumeration value="Holbeach St John's" />
      <xs:enumeration value="Holbeach Town" />
      <xs:enumeration value="Long Sutton" />
      <xs:enumeration value="Pinchbeck" />
      <xs:enumeration value="Spalding Castle" />
      <xs:enumeration value="Spalding Monks House" />
      <xs:enumeration value="Spalding St John's" />
      <xs:enumeration value="Spalding St Mary's" />
      <xs:enumeration value="Spalding St Paul's" />
      <xs:enumeration value="Spalding Wygate" />
      <xs:enumeration value="Surfleet" />
      <xs:enumeration value="Sutton Bridge" />
      <xs:enumeration value="The Saints" />
      <xs:enumeration value="Weston and Moulton" />
      <xs:enumeration value="Whaplode" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Aveland" />
      <xs:enumeration value="Barrowby" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Bourne East" />
      <xs:enumeration value="Bourne West" />
      <xs:enumeration value="Deeping St James" />
      <xs:enumeration value="Earlesfield" />
      <xs:enumeration value="Ermine" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Glen Eden" />
      <xs:enumeration value="Grantham St John's" />
      <xs:enumeration value="Green Hill" />
      <xs:enumeration value="Greyfriars" />
      <xs:enumeration value="Harrowby" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Hillsides" />
      <xs:enumeration value="Isaac Newton" />
      <xs:enumeration value="Lincrest" />
      <xs:enumeration value="Loveden" />
      <xs:enumeration value="Market and West Deeping" />
      <xs:enumeration value="Morkery" />
      <xs:enumeration value="Peascliffe" />
      <xs:enumeration value="Ringstone" />
      <xs:enumeration value="St Anne's" />
      <xs:enumeration value="St George's" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Wulfram's" />
      <xs:enumeration value="Saxonwell" />
      <xs:enumeration value="Stamford St John's" />
      <xs:enumeration value="Thurlby" />
      <xs:enumeration value="Toller" />
      <xs:enumeration value="Truesdale" />
      <xs:enumeration value="Witham Valley" />
      <xs:enumeration value="Bardney" />
      <xs:enumeration value="Caistor" />
      <xs:enumeration value="Cherry Willingham" />
      <xs:enumeration value="Dunholme" />
      <xs:enumeration value="Fiskerton" />
      <xs:enumeration value="Gainsborough East" />
      <xs:enumeration value="Gainsborough North" />
      <xs:enumeration value="Gainsborough South-West" />
      <xs:enumeration value="Hemswell" />
      <xs:enumeration value="Kelsey" />
      <xs:enumeration value="Lea" />
      <xs:enumeration value="Market Rasen" />
      <xs:enumeration value="Middle Rasen" />
      <xs:enumeration value="Nettleham" />
      <xs:enumeration value="Saxilby" />
      <xs:enumeration value="Scampton" />
      <xs:enumeration value="Scotter" />
      <xs:enumeration value="Stow" />
      <xs:enumeration value="Sudbrooke" />
      <xs:enumeration value="Thonock" />
      <xs:enumeration value="Torksey" />
      <xs:enumeration value="Waddingham and Spital" />
      <xs:enumeration value="Welton" />
      <xs:enumeration value="Wold View" />
      <xs:enumeration value="Yarborough" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Buckenham" />
      <xs:enumeration value="Burgh and Haverscroft" />
      <xs:enumeration value="Conifer" />
      <xs:enumeration value="Dereham-Central" />
      <xs:enumeration value="Dereham-Humbletoft" />
      <xs:enumeration value="Dereham-Neatherd" />
      <xs:enumeration value="Dereham-Toftwood" />
      <xs:enumeration value="East Guiltcross" />
      <xs:enumeration value="Eynsford" />
      <xs:enumeration value="Haggard de Toni" />
      <xs:enumeration value="Harling and Heathlands" />
      <xs:enumeration value="Hermitage" />
      <xs:enumeration value="Launditch" />
      <xs:enumeration value="Mid Forest" />
      <xs:enumeration value="Nar Valley" />
      <xs:enumeration value="Necton" />
      <xs:enumeration value="Queen's" />
      <xs:enumeration value="Shipdham" />
      <xs:enumeration value="Springvale and Scarning" />
      <xs:enumeration value="Swaffham" />
      <xs:enumeration value="Swanton Morley" />
      <xs:enumeration value="Taverner" />
      <xs:enumeration value="Templar" />
      <xs:enumeration value="Thetford-Abbey" />
      <xs:enumeration value="Thetford-Castle" />
      <xs:enumeration value="Thetford-Guildhall" />
      <xs:enumeration value="Thetford-Saxon" />
      <xs:enumeration value="Two Rivers" />
      <xs:enumeration value="Upper Wensum" />
      <xs:enumeration value="Upper Yare" />
      <xs:enumeration value="Watton" />
      <xs:enumeration value="Wayland" />
      <xs:enumeration value="Weeting" />
      <xs:enumeration value="West Guiltcross" />
      <xs:enumeration value="Wissey" />
      <xs:enumeration value="Acle" />
      <xs:enumeration value="Aylsham" />
      <xs:enumeration value="Blofield with South Walsham" />
      <xs:enumeration value="Brundall" />
      <xs:enumeration value="Burlingham" />
      <xs:enumeration value="Buxton" />
      <xs:enumeration value="Coltishall" />
      <xs:enumeration value="Drayton North" />
      <xs:enumeration value="Drayton South" />
      <xs:enumeration value="Eynesford" />
      <xs:enumeration value="Great Witchingham" />
      <xs:enumeration value="Hellesdon North West" />
      <xs:enumeration value="Hellesdon South East" />
      <xs:enumeration value="Hevingham" />
      <xs:enumeration value="Horsford and Felthorpe" />
      <xs:enumeration value="Marshes" />
      <xs:enumeration value="Old Catton and Sprowston West" />
      <xs:enumeration value="Plumstead" />
      <xs:enumeration value="Reepham" />
      <xs:enumeration value="Spixworth with St Faiths" />
      <xs:enumeration value="Sprowston Central" />
      <xs:enumeration value="Sprowston East" />
      <xs:enumeration value="Taverham North" />
      <xs:enumeration value="Taverham South" />
      <xs:enumeration value="Thorpe St Andrew North West" />
      <xs:enumeration value="Thorpe St Andrew South East" />
      <xs:enumeration value="Wroxham" />
      <xs:enumeration value="Bradwell North" />
      <xs:enumeration value="Bradwell South and Hopton" />
      <xs:enumeration value="Caister North" />
      <xs:enumeration value="Caister South" />
      <xs:enumeration value="Central and Northgate" />
      <xs:enumeration value="Claydon" />
      <xs:enumeration value="East Flegg" />
      <xs:enumeration value="Fleggburgh" />
      <xs:enumeration value="Gorleston" />
      <xs:enumeration value="Lothingland" />
      <xs:enumeration value="Magdalen" />
      <xs:enumeration value="Nelson" />
      <xs:enumeration value="Ormesby" />
      <xs:enumeration value="St Andrews" />
      <xs:enumeration value="Southtown and Cobholm" />
      <xs:enumeration value="West Flegg" />
      <xs:enumeration value="Yarmouth North" />
      <xs:enumeration value="Airfield" />
      <xs:enumeration value="Brancaster" />
      <xs:enumeration value="Burnham" />
      <xs:enumeration value="Clenchwarton" />
      <xs:enumeration value="Denton" />
      <xs:enumeration value="Dersingham" />
      <xs:enumeration value="Docking" />
      <xs:enumeration value="Downham Old Town" />
      <xs:enumeration value="East Downham" />
      <xs:enumeration value="Emneth with Outwell" />
      <xs:enumeration value="Fairstead" />
      <xs:enumeration value="Gayton" />
      <xs:enumeration value="Gaywood Chase" />
      <xs:enumeration value="Gaywood North Bank" />
      <xs:enumeration value="Grimston" />
      <xs:enumeration value="Heacham" />
      <xs:enumeration value="Hilgay with Denver" />
      <xs:enumeration value="Hunstanton" />
      <xs:enumeration value="Mershe Lande" />
      <xs:enumeration value="North Downham" />
      <xs:enumeration value="North Lynn" />
      <xs:enumeration value="North Wootton" />
      <xs:enumeration value="Old Gaywood" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Rudham" />
      <xs:enumeration value="St Lawrence" />
      <xs:enumeration value="St Margarets with St Nicholas" />
      <xs:enumeration value="Snettisham" />
      <xs:enumeration value="South and West Lynn" />
      <xs:enumeration value="South Downham" />
      <xs:enumeration value="South Wootton" />
      <xs:enumeration value="Spellowfields" />
      <xs:enumeration value="Springwood" />
      <xs:enumeration value="Upwell and Delph" />
      <xs:enumeration value="Valley Hill" />
      <xs:enumeration value="Walpole" />
      <xs:enumeration value="Walton" />
      <xs:enumeration value="Watlington" />
      <xs:enumeration value="West Winch" />
      <xs:enumeration value="Wiggenhall" />
      <xs:enumeration value="Wimbotsham with Fincham" />
      <xs:enumeration value="Wissey" />
      <xs:enumeration value="Astley" />
      <xs:enumeration value="Briston" />
      <xs:enumeration value="Chaucer" />
      <xs:enumeration value="Corpusty" />
      <xs:enumeration value="Cromer Town" />
      <xs:enumeration value="Erpingham" />
      <xs:enumeration value="Gaunt" />
      <xs:enumeration value="Glaven Valley" />
      <xs:enumeration value="Happisburgh" />
      <xs:enumeration value="High Heath" />
      <xs:enumeration value="Holt" />
      <xs:enumeration value="Hoveton" />
      <xs:enumeration value="Lancaster North" />
      <xs:enumeration value="Lancaster South" />
      <xs:enumeration value="Mundesley" />
      <xs:enumeration value="North Walsham East" />
      <xs:enumeration value="North Walsham North" />
      <xs:enumeration value="North Walsham West" />
      <xs:enumeration value="Poppyland" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Roughton" />
      <xs:enumeration value="Scottow" />
      <xs:enumeration value="St Benet" />
      <xs:enumeration value="Sheringham North" />
      <xs:enumeration value="Sheringham South" />
      <xs:enumeration value="Stalham and Sutton" />
      <xs:enumeration value="Suffield Park" />
      <xs:enumeration value="The Raynhams" />
      <xs:enumeration value="The Runtons" />
      <xs:enumeration value="Walsingham" />
      <xs:enumeration value="Waterside" />
      <xs:enumeration value="Waxham" />
      <xs:enumeration value="Wensum" />
      <xs:enumeration value="Worstead" />
      <xs:enumeration value="Bowthorpe" />
      <xs:enumeration value="Catton Grove" />
      <xs:enumeration value="Crome" />
      <xs:enumeration value="Eaton" />
      <xs:enumeration value="Lakenham" />
      <xs:enumeration value="Mancroft" />
      <xs:enumeration value="Mile Cross" />
      <xs:enumeration value="Nelson" />
      <xs:enumeration value="Sewell" />
      <xs:enumeration value="Thorpe Hamlet" />
      <xs:enumeration value="Town Close" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Wensum" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Beck Vale" />
      <xs:enumeration value="Bressingham and Burston" />
      <xs:enumeration value="Brooke" />
      <xs:enumeration value="Bunwell" />
      <xs:enumeration value="Chedgrave and Thurton" />
      <xs:enumeration value="Cringleford" />
      <xs:enumeration value="Cromwells" />
      <xs:enumeration value="Dickleburgh" />
      <xs:enumeration value="Diss" />
      <xs:enumeration value="Ditchingham and Broome" />
      <xs:enumeration value="Earsham" />
      <xs:enumeration value="Easton" />
      <xs:enumeration value="Forncett" />
      <xs:enumeration value="Gillingham" />
      <xs:enumeration value="Harleston" />
      <xs:enumeration value="Hempnall" />
      <xs:enumeration value="Hethersett" />
      <xs:enumeration value="Hingham and Deopham" />
      <xs:enumeration value="Loddon" />
      <xs:enumeration value="Mulbarton" />
      <xs:enumeration value="New Costessey" />
      <xs:enumeration value="Newton Flotman" />
      <xs:enumeration value="Northfields" />
      <xs:enumeration value="Old Costessey" />
      <xs:enumeration value="Poringland with the Framinghams" />
      <xs:enumeration value="Rockland" />
      <xs:enumeration value="Roydon" />
      <xs:enumeration value="Rustens" />
      <xs:enumeration value="Scole" />
      <xs:enumeration value="Stoke Holy Cross" />
      <xs:enumeration value="Stratton" />
      <xs:enumeration value="Tasburgh" />
      <xs:enumeration value="Thurlton" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Wicklewood" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Danesholme" />
      <xs:enumeration value="East" />
      <xs:enumeration value="Hazelwood" />
      <xs:enumeration value="Hillside" />
      <xs:enumeration value="Kingswood" />
      <xs:enumeration value="Lloyds" />
      <xs:enumeration value="Lodge Park" />
      <xs:enumeration value="Rural East" />
      <xs:enumeration value="Rural North" />
      <xs:enumeration value="Rural West" />
      <xs:enumeration value="Shire Lodge" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Abbey North" />
      <xs:enumeration value="Abbey South" />
      <xs:enumeration value="Badby" />
      <xs:enumeration value="Barby and Kilsby" />
      <xs:enumeration value="Boughton and Pitsford" />
      <xs:enumeration value="Brampton" />
      <xs:enumeration value="Braunston" />
      <xs:enumeration value="Brixworth" />
      <xs:enumeration value="Byfield" />
      <xs:enumeration value="Clipston" />
      <xs:enumeration value="Crick" />
      <xs:enumeration value="Drayton" />
      <xs:enumeration value="Flore" />
      <xs:enumeration value="Hill" />
      <xs:enumeration value="Long Buckby" />
      <xs:enumeration value="Moulton" />
      <xs:enumeration value="Ravensthorpe" />
      <xs:enumeration value="Spratton" />
      <xs:enumeration value="Walgrave" />
      <xs:enumeration value="Weedon" />
      <xs:enumeration value="Welford" />
      <xs:enumeration value="West Haddon and Guilsborough" />
      <xs:enumeration value="Woodford" />
      <xs:enumeration value="Yelvertoft" />
      <xs:enumeration value="Barnwell" />
      <xs:enumeration value="Dryden" />
      <xs:enumeration value="Fineshade" />
      <xs:enumeration value="Higham Ferrers" />
      <xs:enumeration value="Irthlingborough" />
      <xs:enumeration value="King's Forest" />
      <xs:enumeration value="Lower Nene" />
      <xs:enumeration value="Lyveden" />
      <xs:enumeration value="Oundle" />
      <xs:enumeration value="Prebendal" />
      <xs:enumeration value="Raunds Saxon" />
      <xs:enumeration value="Raunds Windmill" />
      <xs:enumeration value="Ringstead" />
      <xs:enumeration value="Rushden East" />
      <xs:enumeration value="Rushden North" />
      <xs:enumeration value="Rushden South" />
      <xs:enumeration value="Rushden West" />
      <xs:enumeration value="Stanwick" />
      <xs:enumeration value="Thrapston" />
      <xs:enumeration value="Woodford" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Avondale" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Brambleside" />
      <xs:enumeration value="Buccleuch" />
      <xs:enumeration value="Latimer" />
      <xs:enumeration value="Loatland" />
      <xs:enumeration value="Millbrook" />
      <xs:enumeration value="Pipers Hill" />
      <xs:enumeration value="Plessy" />
      <xs:enumeration value="Queen Eleanor" />
      <xs:enumeration value="St Andrew's" />
      <xs:enumeration value="St Giles" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="St Peter's" />
      <xs:enumeration value="Slade" />
      <xs:enumeration value="Spinney" />
      <xs:enumeration value="Tresham" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Warkton" />
      <xs:enumeration value="Welland" />
      <xs:enumeration value="Wicksteed" />
      <xs:enumeration value="Abington" />
      <xs:enumeration value="Billing" />
      <xs:enumeration value="Boughton Green" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Delapre" />
      <xs:enumeration value="East Hunsbury" />
      <xs:enumeration value="Eastfield" />
      <xs:enumeration value="Ecton Brook" />
      <xs:enumeration value="Headlands" />
      <xs:enumeration value="Kingsley" />
      <xs:enumeration value="Kingsthorpe" />
      <xs:enumeration value="Lumbertubs" />
      <xs:enumeration value="Nene Valley" />
      <xs:enumeration value="New Duston" />
      <xs:enumeration value="Old Duston" />
      <xs:enumeration value="Parklands" />
      <xs:enumeration value="St Crispin" />
      <xs:enumeration value="St David" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="Spencer" />
      <xs:enumeration value="Thorplands" />
      <xs:enumeration value="West Hunsbury" />
      <xs:enumeration value="Weston" />
      <xs:enumeration value="Astwell" />
      <xs:enumeration value="Blakesley" />
      <xs:enumeration value="Blisworth" />
      <xs:enumeration value="Brackley East" />
      <xs:enumeration value="Brackley South" />
      <xs:enumeration value="Brackley West" />
      <xs:enumeration value="Chase" />
      <xs:enumeration value="Cogenhoe" />
      <xs:enumeration value="Cosgrove" />
      <xs:enumeration value="Cote" />
      <xs:enumeration value="Courteenhall" />
      <xs:enumeration value="Deanshanger" />
      <xs:enumeration value="Downs" />
      <xs:enumeration value="Grafton" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Harpole" />
      <xs:enumeration value="Heyford" />
      <xs:enumeration value="Kings Sutton" />
      <xs:enumeration value="Kingthorn" />
      <xs:enumeration value="Little Brook" />
      <xs:enumeration value="Middleton Cheney" />
      <xs:enumeration value="Salcey" />
      <xs:enumeration value="Silverstone" />
      <xs:enumeration value="Steane" />
      <xs:enumeration value="Tove" />
      <xs:enumeration value="Towcester Brook" />
      <xs:enumeration value="Towcester Mill" />
      <xs:enumeration value="Wardoun" />
      <xs:enumeration value="Washington" />
      <xs:enumeration value="Whittlewood" />
      <xs:enumeration value="Yardley" />
      <xs:enumeration value="Brickhill" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Croyland" />
      <xs:enumeration value="Earls Barton" />
      <xs:enumeration value="Finedon" />
      <xs:enumeration value="Great Doddington and Wilby" />
      <xs:enumeration value="Hemmingwell" />
      <xs:enumeration value="Irchester" />
      <xs:enumeration value="North" />
      <xs:enumeration value="Queensway" />
      <xs:enumeration value="Redwell East" />
      <xs:enumeration value="Redwell West" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Swanspool" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Wollaston" />
      <xs:enumeration value="Alnmouth and Lesbury" />
      <xs:enumeration value="Alnwick Castle" />
      <xs:enumeration value="Alnwick Clayport" />
      <xs:enumeration value="Alnwick Hotspur" />
      <xs:enumeration value="Amble Central" />
      <xs:enumeration value="Amble East" />
      <xs:enumeration value="Amble West" />
      <xs:enumeration value="Embleton" />
      <xs:enumeration value="Harbottle and Elsdon" />
      <xs:enumeration value="Hedgeley" />
      <xs:enumeration value="Longframlington" />
      <xs:enumeration value="Longhoughton with Craster and Rennington" />
      <xs:enumeration value="Rothbury and South Rural" />
      <xs:enumeration value="Shilbottle" />
      <xs:enumeration value="Warkworth" />
      <xs:enumeration value="Whittingham" />
      <xs:enumeration value="Bamburgh" />
      <xs:enumeration value="Beadnell" />
      <xs:enumeration value="Belford" />
      <xs:enumeration value="Cheviot" />
      <xs:enumeration value="Edward" />
      <xs:enumeration value="Elizabeth" />
      <xs:enumeration value="Flodden" />
      <xs:enumeration value="Ford" />
      <xs:enumeration value="Islandshire" />
      <xs:enumeration value="Lowick" />
      <xs:enumeration value="Norhamshire" />
      <xs:enumeration value="North Sunderland" />
      <xs:enumeration value="Prior" />
      <xs:enumeration value="Seton" />
      <xs:enumeration value="Shielfield" />
      <xs:enumeration value="Spittal" />
      <xs:enumeration value="Wooler" />
      <xs:enumeration value="Cowpen" />
      <xs:enumeration value="Cramlington East" />
      <xs:enumeration value="Cramlington Eastfield with East Hartford" />
      <xs:enumeration value="Cramlington North" />
      <xs:enumeration value="Cramlington Parkside" />
      <xs:enumeration value="Cramlington South East" />
      <xs:enumeration value="Cramlington Village" />
      <xs:enumeration value="Cramlington West" />
      <xs:enumeration value="Croft" />
      <xs:enumeration value="Hartley" />
      <xs:enumeration value="Holywell" />
      <xs:enumeration value="Isabella" />
      <xs:enumeration value="Kitty Brewster" />
      <xs:enumeration value="Newsham and New Delaval" />
      <xs:enumeration value="Plessey" />
      <xs:enumeration value="Seaton Delaval" />
      <xs:enumeration value="Seghill" />
      <xs:enumeration value="South Beach" />
      <xs:enumeration value="South Newsham" />
      <xs:enumeration value="Wensleydale" />
      <xs:enumeration value="Chevington" />
      <xs:enumeration value="Ellington" />
      <xs:enumeration value="Hartburn" />
      <xs:enumeration value="Hebron, Hepscott and Mitford" />
      <xs:enumeration value="Heddon-on-the-Wall" />
      <xs:enumeration value="Longhorsley" />
      <xs:enumeration value="Lynemouth" />
      <xs:enumeration value="Morpeth Central" />
      <xs:enumeration value="Morpeth Kirkhill" />
      <xs:enumeration value="Morpeth North" />
      <xs:enumeration value="Morpeth South" />
      <xs:enumeration value="Morpeth Stobhill" />
      <xs:enumeration value="Pegswood" />
      <xs:enumeration value="Ponteland East" />
      <xs:enumeration value="Ponteland North" />
      <xs:enumeration value="Ponteland South" />
      <xs:enumeration value="Ponteland West" />
      <xs:enumeration value="Stamfordham" />
      <xs:enumeration value="Stannington" />
      <xs:enumeration value="Ulgham" />
      <xs:enumeration value="Acomb" />
      <xs:enumeration value="Allendale" />
      <xs:enumeration value="Bellingham" />
      <xs:enumeration value="Broomhaugh and Riding" />
      <xs:enumeration value="Chollerton with Whittington" />
      <xs:enumeration value="Corbridge" />
      <xs:enumeration value="East Tynedale" />
      <xs:enumeration value="Hadrian" />
      <xs:enumeration value="Haltwhistle" />
      <xs:enumeration value="Haydon" />
      <xs:enumeration value="Hexham Gilesgate" />
      <xs:enumeration value="Hexham Hencotes" />
      <xs:enumeration value="Hexham Leazes" />
      <xs:enumeration value="Hexham Priestpopple" />
      <xs:enumeration value="Humshaugh and Wall" />
      <xs:enumeration value="Ovingham" />
      <xs:enumeration value="Prudhoe Castle" />
      <xs:enumeration value="Prudhoe North" />
      <xs:enumeration value="Prudhoe South" />
      <xs:enumeration value="Prudhoe West" />
      <xs:enumeration value="Redesdale" />
      <xs:enumeration value="Sandhoe with Dilston" />
      <xs:enumeration value="Slaley and Hexhamshire" />
      <xs:enumeration value="South Tynedale" />
      <xs:enumeration value="Stocksfield with Mickley" />
      <xs:enumeration value="Upper North Tyne" />
      <xs:enumeration value="Wanney" />
      <xs:enumeration value="Warden and Newbrough" />
      <xs:enumeration value="Wark" />
      <xs:enumeration value="West Tynedale" />
      <xs:enumeration value="Wylam" />
      <xs:enumeration value="Bedlington Central" />
      <xs:enumeration value="Bedlington East" />
      <xs:enumeration value="Bedlington West" />
      <xs:enumeration value="Bothal" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Choppington" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Guide Post" />
      <xs:enumeration value="Haydon" />
      <xs:enumeration value="Hirst" />
      <xs:enumeration value="Newbiggin East" />
      <xs:enumeration value="Newbiggin West" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Seaton" />
      <xs:enumeration value="Sleekburn" />
      <xs:enumeration value="Stakeford" />
      <xs:enumeration value="Aire Valley with Lothersdale" />
      <xs:enumeration value="Barden Fell" />
      <xs:enumeration value="Bentham" />
      <xs:enumeration value="Cowling" />
      <xs:enumeration value="Embsay-with-Eastby" />
      <xs:enumeration value="Gargrave and Malhamdale" />
      <xs:enumeration value="Glusburn" />
      <xs:enumeration value="Grassington" />
      <xs:enumeration value="Hellifield and Long Preston" />
      <xs:enumeration value="Ingleton and Clapham" />
      <xs:enumeration value="Penyghent" />
      <xs:enumeration value="Settle and Ribblebanks" />
      <xs:enumeration value="Skipton East" />
      <xs:enumeration value="Skipton North" />
      <xs:enumeration value="Skipton South" />
      <xs:enumeration value="Skipton West" />
      <xs:enumeration value="Sutton-in-Craven" />
      <xs:enumeration value="Upper Wharfedale" />
      <xs:enumeration value="West Craven" />
      <xs:enumeration value="Bedale" />
      <xs:enumeration value="Brompton" />
      <xs:enumeration value="Broughton and Greenhow" />
      <xs:enumeration value="Cowtons" />
      <xs:enumeration value="Crakehall" />
      <xs:enumeration value="Easingwold" />
      <xs:enumeration value="Great Ayton" />
      <xs:enumeration value="Helperby" />
      <xs:enumeration value="Huby and Sutton" />
      <xs:enumeration value="Leeming" />
      <xs:enumeration value="Leeming Bar" />
      <xs:enumeration value="Morton-on-Swale" />
      <xs:enumeration value="Northallerton Broomfield" />
      <xs:enumeration value="Northallerton Central" />
      <xs:enumeration value="Northallerton North" />
      <xs:enumeration value="Osmotherley" />
      <xs:enumeration value="Romanby" />
      <xs:enumeration value="Rudby" />
      <xs:enumeration value="Shipton" />
      <xs:enumeration value="Sowerby" />
      <xs:enumeration value="Stillington" />
      <xs:enumeration value="Stokesley" />
      <xs:enumeration value="Swainby" />
      <xs:enumeration value="Tanfield" />
      <xs:enumeration value="Thirsk" />
      <xs:enumeration value="Thorntons" />
      <xs:enumeration value="Tollerton" />
      <xs:enumeration value="Topcliffe" />
      <xs:enumeration value="White Horse" />
      <xs:enumeration value="Whitestonecliffe" />
      <xs:enumeration value="Bilton" />
      <xs:enumeration value="Bishop Monkton" />
      <xs:enumeration value="Boroughbridge" />
      <xs:enumeration value="Claro" />
      <xs:enumeration value="Granby" />
      <xs:enumeration value="Harlow Moor" />
      <xs:enumeration value="High Harrogate" />
      <xs:enumeration value="Hookstone" />
      <xs:enumeration value="Killinghall" />
      <xs:enumeration value="Kirkby Malzeard" />
      <xs:enumeration value="Knaresborough East" />
      <xs:enumeration value="Knaresborough King James" />
      <xs:enumeration value="Knaresborough Scriven Park" />
      <xs:enumeration value="Low Harrogate" />
      <xs:enumeration value="Lower Nidderdale" />
      <xs:enumeration value="Marston Moor" />
      <xs:enumeration value="Mashamshire" />
      <xs:enumeration value="Newby" />
      <xs:enumeration value="New Park" />
      <xs:enumeration value="Nidd Valley" />
      <xs:enumeration value="Ouseburn" />
      <xs:enumeration value="Pannal" />
      <xs:enumeration value="Pateley Bridge" />
      <xs:enumeration value="Ribston" />
      <xs:enumeration value="Ripon Minster" />
      <xs:enumeration value="Ripon Moorside" />
      <xs:enumeration value="Ripon Spa" />
      <xs:enumeration value="Rossett" />
      <xs:enumeration value="Saltergate" />
      <xs:enumeration value="Spofforth with Lower Wharfedale" />
      <xs:enumeration value="Starbeck" />
      <xs:enumeration value="Stray" />
      <xs:enumeration value="Washburn" />
      <xs:enumeration value="Wathvale" />
      <xs:enumeration value="Woodfield" />
      <xs:enumeration value="Addlebrough" />
      <xs:enumeration value="Barton" />
      <xs:enumeration value="Bolton Castle" />
      <xs:enumeration value="Brompton-on-Swale and Scorton" />
      <xs:enumeration value="Catterick" />
      <xs:enumeration value="Colburn" />
      <xs:enumeration value="Croft" />
      <xs:enumeration value="Gilling West" />
      <xs:enumeration value="Hawes and High Abbotside" />
      <xs:enumeration value="Hipswell" />
      <xs:enumeration value="Hornby Castle" />
      <xs:enumeration value="Leyburn" />
      <xs:enumeration value="Lower Wensleydale" />
      <xs:enumeration value="Melsonby" />
      <xs:enumeration value="Middleham" />
      <xs:enumeration value="Middleton Tyas" />
      <xs:enumeration value="Newsham with Eppleby" />
      <xs:enumeration value="Penhill" />
      <xs:enumeration value="Reeth and Arkengarthdale" />
      <xs:enumeration value="Richmond Central" />
      <xs:enumeration value="Richmond East" />
      <xs:enumeration value="Richmond West" />
      <xs:enumeration value="Scotton" />
      <xs:enumeration value="Swaledale" />
      <xs:enumeration value="Amotherby" />
      <xs:enumeration value="Ampleforth" />
      <xs:enumeration value="Cropton" />
      <xs:enumeration value="Dales" />
      <xs:enumeration value="Derwent" />
      <xs:enumeration value="Helmsley" />
      <xs:enumeration value="Hovingham" />
      <xs:enumeration value="Kirkbymoorside" />
      <xs:enumeration value="Malton" />
      <xs:enumeration value="Norton East" />
      <xs:enumeration value="Norton West" />
      <xs:enumeration value="Pickering East" />
      <xs:enumeration value="Pickering West" />
      <xs:enumeration value="Rillington" />
      <xs:enumeration value="Ryedale South West" />
      <xs:enumeration value="Sherburn" />
      <xs:enumeration value="Sheriff Hutton" />
      <xs:enumeration value="Sinnington" />
      <xs:enumeration value="Thornton Dale" />
      <xs:enumeration value="Wolds" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Cayton" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Danby" />
      <xs:enumeration value="Derwent Valley" />
      <xs:enumeration value="Eastfield" />
      <xs:enumeration value="Esk Valley" />
      <xs:enumeration value="Falsgrave Park" />
      <xs:enumeration value="Filey" />
      <xs:enumeration value="Fylingdales" />
      <xs:enumeration value="Hertford" />
      <xs:enumeration value="Lindhead" />
      <xs:enumeration value="Mayfield" />
      <xs:enumeration value="Mulgrave" />
      <xs:enumeration value="Newby" />
      <xs:enumeration value="North Bay" />
      <xs:enumeration value="Northstead" />
      <xs:enumeration value="Ramshill" />
      <xs:enumeration value="Scalby, Hackness and Staintondale" />
      <xs:enumeration value="Seamer" />
      <xs:enumeration value="Stepney" />
      <xs:enumeration value="Streonshalh" />
      <xs:enumeration value="Weaponness" />
      <xs:enumeration value="Whitby West Cliff" />
      <xs:enumeration value="Woodlands" />
      <xs:enumeration value="Appleton Roebuck" />
      <xs:enumeration value="Barlby" />
      <xs:enumeration value="Brayton" />
      <xs:enumeration value="Camblesforth" />
      <xs:enumeration value="Cawood with Wistow" />
      <xs:enumeration value="Eggborough" />
      <xs:enumeration value="Fairburn with Brotherton" />
      <xs:enumeration value="Hambleton" />
      <xs:enumeration value="Hemingbrough" />
      <xs:enumeration value="Monk Fryston and South Milford" />
      <xs:enumeration value="North Duffield" />
      <xs:enumeration value="Riccall with Escrick" />
      <xs:enumeration value="Saxton and Ulleskelf" />
      <xs:enumeration value="Selby North" />
      <xs:enumeration value="Selby South" />
      <xs:enumeration value="Selby West" />
      <xs:enumeration value="Sherburn in Elmet" />
      <xs:enumeration value="Tadcaster East" />
      <xs:enumeration value="Tadcaster West" />
      <xs:enumeration value="Whitley" />
      <xs:enumeration value="Hucknall Central" />
      <xs:enumeration value="Hucknall East" />
      <xs:enumeration value="Hucknall North" />
      <xs:enumeration value="Hucknall West" />
      <xs:enumeration value="Jacksdale" />
      <xs:enumeration value="Kirkby in Ashfield Central" />
      <xs:enumeration value="Kirkby in Ashfield East" />
      <xs:enumeration value="Kirkby in Ashfield West" />
      <xs:enumeration value="Selston" />
      <xs:enumeration value="Sutton in Ashfield Central" />
      <xs:enumeration value="Sutton in Ashfield East" />
      <xs:enumeration value="Sutton in Ashfield North" />
      <xs:enumeration value="Sutton in Ashfield West" />
      <xs:enumeration value="Underwood" />
      <xs:enumeration value="Woodhouse" />
      <xs:enumeration value="Beckingham" />
      <xs:enumeration value="Blyth" />
      <xs:enumeration value="Carlton" />
      <xs:enumeration value="Clayworth" />
      <xs:enumeration value="East Markham" />
      <xs:enumeration value="East Retford East" />
      <xs:enumeration value="East Retford North" />
      <xs:enumeration value="East Retford South" />
      <xs:enumeration value="East Retford West" />
      <xs:enumeration value="Everton" />
      <xs:enumeration value="Harworth" />
      <xs:enumeration value="Langold" />
      <xs:enumeration value="Misterton" />
      <xs:enumeration value="Rampton" />
      <xs:enumeration value="Ranskill" />
      <xs:enumeration value="Sturton" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Tuxford and Trent" />
      <xs:enumeration value="Welbeck" />
      <xs:enumeration value="Worksop East" />
      <xs:enumeration value="Worksop North" />
      <xs:enumeration value="Worksop North East" />
      <xs:enumeration value="Worksop North West" />
      <xs:enumeration value="Worksop South" />
      <xs:enumeration value="Worksop South East" />
      <xs:enumeration value="Attenborough" />
      <xs:enumeration value="Awsworth" />
      <xs:enumeration value="Beeston Central" />
      <xs:enumeration value="Beeston North" />
      <xs:enumeration value="Beeston Rylands" />
      <xs:enumeration value="Beeston West" />
      <xs:enumeration value="Bramcote" />
      <xs:enumeration value="Brinsley" />
      <xs:enumeration value="Chilwell East" />
      <xs:enumeration value="Chilwell West" />
      <xs:enumeration value="Cossall and Kimberley" />
      <xs:enumeration value="Eastwood North and Greasley (Beauvale)" />
      <xs:enumeration value="Eastwood South" />
      <xs:enumeration value="Greasley (Giltbrook and Newthorpe)" />
      <xs:enumeration value="Nuthall East and Strelley" />
      <xs:enumeration value="Nuthall West and Greasley (Watnall)" />
      <xs:enumeration value="Stapleford North" />
      <xs:enumeration value="Stapleford South East" />
      <xs:enumeration value="Stapleford South West" />
      <xs:enumeration value="Toton and Chilwell Meadows" />
      <xs:enumeration value="Trowell" />
      <xs:enumeration value="Bestwood Village" />
      <xs:enumeration value="Bonington" />
      <xs:enumeration value="Burton Joyce and Stoke Bardolph" />
      <xs:enumeration value="Calverton" />
      <xs:enumeration value="Carlton" />
      <xs:enumeration value="Carlton Hill" />
      <xs:enumeration value="Daybrook" />
      <xs:enumeration value="Gedling" />
      <xs:enumeration value="Killisick" />
      <xs:enumeration value="Kingswell" />
      <xs:enumeration value="Lambley" />
      <xs:enumeration value="Mapperley Plains" />
      <xs:enumeration value="Netherfield and Colwick" />
      <xs:enumeration value="Newstead" />
      <xs:enumeration value="Phoenix" />
      <xs:enumeration value="Porchester" />
      <xs:enumeration value="Ravenshead" />
      <xs:enumeration value="St James" />
      <xs:enumeration value="St Marys" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Woodborough" />
      <xs:enumeration value="Woodthorpe" />
      <xs:enumeration value="Berry Hill" />
      <xs:enumeration value="Birklands" />
      <xs:enumeration value="Broomhill" />
      <xs:enumeration value="Cumberlands" />
      <xs:enumeration value="Eakring" />
      <xs:enumeration value="Forest Town East" />
      <xs:enumeration value="Forest Town West" />
      <xs:enumeration value="Grange Farm" />
      <xs:enumeration value="Ladybrook" />
      <xs:enumeration value="Leeming" />
      <xs:enumeration value="Lindhurst" />
      <xs:enumeration value="Meden" />
      <xs:enumeration value="Oak Tree" />
      <xs:enumeration value="Pleasley Hill" />
      <xs:enumeration value="Portland" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Ravensdale" />
      <xs:enumeration value="Robin Hood" />
      <xs:enumeration value="Sherwood" />
      <xs:enumeration value="Balderton North" />
      <xs:enumeration value="Balderton West" />
      <xs:enumeration value="Beacon" />
      <xs:enumeration value="Bilsthorpe" />
      <xs:enumeration value="Blidworth" />
      <xs:enumeration value="Boughton" />
      <xs:enumeration value="Bridge" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Caunton" />
      <xs:enumeration value="Clipstone" />
      <xs:enumeration value="Collingham and Meering" />
      <xs:enumeration value="Devon" />
      <xs:enumeration value="Edwinstowe" />
      <xs:enumeration value="Farndon" />
      <xs:enumeration value="Farnsfield" />
      <xs:enumeration value="Lowdham" />
      <xs:enumeration value="Magnus" />
      <xs:enumeration value="Muskham" />
      <xs:enumeration value="Ollerton" />
      <xs:enumeration value="Rainworth" />
      <xs:enumeration value="Southwell East" />
      <xs:enumeration value="Southwell North" />
      <xs:enumeration value="Southwell West" />
      <xs:enumeration value="Sutton-on-Trent" />
      <xs:enumeration value="Trent" />
      <xs:enumeration value="Winthorpe" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Bingham East" />
      <xs:enumeration value="Bingham West" />
      <xs:enumeration value="Compton Acres" />
      <xs:enumeration value="Cotgrave" />
      <xs:enumeration value="Cranmer" />
      <xs:enumeration value="Edwalton Village" />
      <xs:enumeration value="Gamston" />
      <xs:enumeration value="Gotham" />
      <xs:enumeration value="Keyworth North" />
      <xs:enumeration value="Keyworth South" />
      <xs:enumeration value="Lady Bay" />
      <xs:enumeration value="Leake" />
      <xs:enumeration value="Lutterell" />
      <xs:enumeration value="Manvers" />
      <xs:enumeration value="Melton" />
      <xs:enumeration value="Musters" />
      <xs:enumeration value="Nevile" />
      <xs:enumeration value="Oak" />
      <xs:enumeration value="Ruddington" />
      <xs:enumeration value="Soar Valley" />
      <xs:enumeration value="Stanford" />
      <xs:enumeration value="Thoroton" />
      <xs:enumeration value="Tollerton" />
      <xs:enumeration value="Trent" />
      <xs:enumeration value="Trent Bridge" />
      <xs:enumeration value="Wiverton" />
      <xs:enumeration value="Wolds" />
      <xs:enumeration value="Adderbury" />
      <xs:enumeration value="Ambrosden and Chesterton" />
      <xs:enumeration value="Banbury Calthorpe" />
      <xs:enumeration value="Banbury Easington" />
      <xs:enumeration value="Banbury Grimsbury and Castle" />
      <xs:enumeration value="Banbury Hardwick" />
      <xs:enumeration value="Banbury Neithrop" />
      <xs:enumeration value="Banbury Ruscote" />
      <xs:enumeration value="Bicester East" />
      <xs:enumeration value="Bicester North" />
      <xs:enumeration value="Bicester South" />
      <xs:enumeration value="Bicester Town" />
      <xs:enumeration value="Bicester West" />
      <xs:enumeration value="Bloxham and Bodicote" />
      <xs:enumeration value="Caversfield" />
      <xs:enumeration value="Cropredy" />
      <xs:enumeration value="Deddington" />
      <xs:enumeration value="Fringford" />
      <xs:enumeration value="Hook Norton" />
      <xs:enumeration value="Kidlington North" />
      <xs:enumeration value="Kidlington South" />
      <xs:enumeration value="Kirtlington" />
      <xs:enumeration value="Launton" />
      <xs:enumeration value="Otmoor" />
      <xs:enumeration value="Sibford" />
      <xs:enumeration value="The Astons and Heyfords" />
      <xs:enumeration value="Wroxton" />
      <xs:enumeration value="Yarnton, Gosford and Water Eaton" />
      <xs:enumeration value="Barton and Sandhills" />
      <xs:enumeration value="Blackbird Leys" />
      <xs:enumeration value="Carfax" />
      <xs:enumeration value="Churchill" />
      <xs:enumeration value="Cowley" />
      <xs:enumeration value="Cowley Marsh" />
      <xs:enumeration value="Headington" />
      <xs:enumeration value="Headington Hill and Northway" />
      <xs:enumeration value="Hinksey Park" />
      <xs:enumeration value="Holywell" />
      <xs:enumeration value="Iffley Fields" />
      <xs:enumeration value="Jericho and Osney" />
      <xs:enumeration value="Littlemore" />
      <xs:enumeration value="Lye Valley" />
      <xs:enumeration value="Marston" />
      <xs:enumeration value="North" />
      <xs:enumeration value="Northfield Brook" />
      <xs:enumeration value="Quarry and Risinghurst" />
      <xs:enumeration value="Rose Hill and Iffley" />
      <xs:enumeration value="St Clement's" />
      <xs:enumeration value="St Margaret's" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Summertown" />
      <xs:enumeration value="Wolvercote" />
      <xs:enumeration value="Aston Rowant" />
      <xs:enumeration value="Benson" />
      <xs:enumeration value="Berinsfield" />
      <xs:enumeration value="Brightwell" />
      <xs:enumeration value="Chalgrove" />
      <xs:enumeration value="Chiltern Woods" />
      <xs:enumeration value="Chinnor" />
      <xs:enumeration value="Cholsey and Wallingford South" />
      <xs:enumeration value="Crowmarsh" />
      <xs:enumeration value="Didcot All Saints" />
      <xs:enumeration value="Didcot Ladygrove" />
      <xs:enumeration value="Didcot Northbourne" />
      <xs:enumeration value="Didcot Park" />
      <xs:enumeration value="Forest Hill and Holton" />
      <xs:enumeration value="Garsington" />
      <xs:enumeration value="Goring" />
      <xs:enumeration value="Great Milton" />
      <xs:enumeration value="Hagbourne" />
      <xs:enumeration value="Henley North" />
      <xs:enumeration value="Henley South" />
      <xs:enumeration value="Sandford" />
      <xs:enumeration value="Shiplake" />
      <xs:enumeration value="Sonning Common" />
      <xs:enumeration value="Thame North" />
      <xs:enumeration value="Thame South" />
      <xs:enumeration value="Wallingford North" />
      <xs:enumeration value="Watlington" />
      <xs:enumeration value="Wheatley" />
      <xs:enumeration value="Woodcote" />
      <xs:enumeration value="Abingdon Abbey and Barton" />
      <xs:enumeration value="Abingdon Caldecott" />
      <xs:enumeration value="Abingdon Dunmore" />
      <xs:enumeration value="Abingdon Fitzharris" />
      <xs:enumeration value="Abingdon Northcourt" />
      <xs:enumeration value="Abingdon Ock Meadow" />
      <xs:enumeration value="Abingdon Peachcroft" />
      <xs:enumeration value="Appleton and Cumnor" />
      <xs:enumeration value="Blewbury and Upton" />
      <xs:enumeration value="Craven" />
      <xs:enumeration value="Drayton" />
      <xs:enumeration value="Faringdon and The Coxwells" />
      <xs:enumeration value="Greendown" />
      <xs:enumeration value="Grove" />
      <xs:enumeration value="Hanneys" />
      <xs:enumeration value="Harwell" />
      <xs:enumeration value="Hendreds" />
      <xs:enumeration value="Kennington and South Hinksey" />
      <xs:enumeration value="Kingston Bagpuize with Southmoor" />
      <xs:enumeration value="Longworth" />
      <xs:enumeration value="Marcham and Shippon" />
      <xs:enumeration value="North Hinksey and Wytham" />
      <xs:enumeration value="Radley" />
      <xs:enumeration value="Shrivenham" />
      <xs:enumeration value="Stanford" />
      <xs:enumeration value="Sunningwell and Wootton" />
      <xs:enumeration value="Sutton Courtenay and Appleford" />
      <xs:enumeration value="Wantage Charlton" />
      <xs:enumeration value="Wantage Segsbury" />
      <xs:enumeration value="Alvescot and Filkins" />
      <xs:enumeration value="Ascott and Shipton" />
      <xs:enumeration value="Bampton and Clanfield" />
      <xs:enumeration value="Brize Norton and Shilton" />
      <xs:enumeration value="Burford" />
      <xs:enumeration value="Carterton North East" />
      <xs:enumeration value="Carterton North West" />
      <xs:enumeration value="Carterton South" />
      <xs:enumeration value="Chadlington and Churchill" />
      <xs:enumeration value="Charlbury and Finstock" />
      <xs:enumeration value="Chipping Norton" />
      <xs:enumeration value="Ducklington" />
      <xs:enumeration value="Eynsham and Cassington" />
      <xs:enumeration value="Freeland and Hanborough" />
      <xs:enumeration value="Hailey, Minster Lovell and Leafield" />
      <xs:enumeration value="Kingham, Rollright and Enstone" />
      <xs:enumeration value="Milton-under-Wychwood" />
      <xs:enumeration value="North Leigh" />
      <xs:enumeration value="Standlake, Aston and Stanton Harcourt" />
      <xs:enumeration value="Stonesfield and Tackley" />
      <xs:enumeration value="The Bartons" />
      <xs:enumeration value="Witney Central" />
      <xs:enumeration value="Witney East" />
      <xs:enumeration value="Witney North" />
      <xs:enumeration value="Witney South" />
      <xs:enumeration value="Witney West" />
      <xs:enumeration value="Woodstock and Bladon" />
      <xs:enumeration value="Albrighton South" />
      <xs:enumeration value="Alveley" />
      <xs:enumeration value="Bridgnorth Castle" />
      <xs:enumeration value="Bridgnorth East" />
      <xs:enumeration value="Bridgnorth Morfe" />
      <xs:enumeration value="Bridgnorth West" />
      <xs:enumeration value="Broseley East" />
      <xs:enumeration value="Broseley West" />
      <xs:enumeration value="Claverley" />
      <xs:enumeration value="Ditton Priors" />
      <xs:enumeration value="Donington and Albrighton North" />
      <xs:enumeration value="Glazeley" />
      <xs:enumeration value="Harrington" />
      <xs:enumeration value="Highley" />
      <xs:enumeration value="Morville" />
      <xs:enumeration value="Much Wenlock" />
      <xs:enumeration value="Shifnal Idsall" />
      <xs:enumeration value="Shifnal Manor" />
      <xs:enumeration value="Shifnal Rural" />
      <xs:enumeration value="Stottesdon" />
      <xs:enumeration value="Worfield" />
      <xs:enumeration value="Baschurch" />
      <xs:enumeration value="Clive and Myddle" />
      <xs:enumeration value="Cockshutt" />
      <xs:enumeration value="Dudleston Heath" />
      <xs:enumeration value="Ellesmere and Welshampton" />
      <xs:enumeration value="Hinstock" />
      <xs:enumeration value="Hodnet" />
      <xs:enumeration value="Hordley, Tetchill and Lyneal" />
      <xs:enumeration value="Market Drayton East" />
      <xs:enumeration value="Market Drayton North" />
      <xs:enumeration value="Market Drayton South" />
      <xs:enumeration value="Prees" />
      <xs:enumeration value="Shavington" />
      <xs:enumeration value="Shawbury" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Wem East" />
      <xs:enumeration value="Wem Rural" />
      <xs:enumeration value="Wem West" />
      <xs:enumeration value="Whitchurch North" />
      <xs:enumeration value="Whitchurch Rural" />
      <xs:enumeration value="Whitchurch South" />
      <xs:enumeration value="Whitchurch West" />
      <xs:enumeration value="Whixhall" />
      <xs:enumeration value="Woore" />
      <xs:enumeration value="Cabin Lane" />
      <xs:enumeration value="Cambrian" />
      <xs:enumeration value="Carreg Llwyd" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Gatacre" />
      <xs:enumeration value="Gobowen" />
      <xs:enumeration value="Kinnerley" />
      <xs:enumeration value="Llanyblodwel and Pant" />
      <xs:enumeration value="Maserfield" />
      <xs:enumeration value="Ruyton and West Felton" />
      <xs:enumeration value="St. Martin's" />
      <xs:enumeration value="Sweeney and Trefonen" />
      <xs:enumeration value="Weston Rhyn" />
      <xs:enumeration value="Whittington" />
      <xs:enumeration value="Bagley" />
      <xs:enumeration value="Battlefield and Heathgates" />
      <xs:enumeration value="Bayston Hill" />
      <xs:enumeration value="Belle Vue" />
      <xs:enumeration value="Bowbrook" />
      <xs:enumeration value="Castlefields and Quarry" />
      <xs:enumeration value="Column" />
      <xs:enumeration value="Condover" />
      <xs:enumeration value="Copthorne" />
      <xs:enumeration value="Hanwood and Longden" />
      <xs:enumeration value="Harlescott" />
      <xs:enumeration value="Haughmond and Attingham" />
      <xs:enumeration value="Lawley" />
      <xs:enumeration value="Meole Brace" />
      <xs:enumeration value="Monkmoor" />
      <xs:enumeration value="Montford" />
      <xs:enumeration value="Pimhill" />
      <xs:enumeration value="Porthill" />
      <xs:enumeration value="Rea Valley" />
      <xs:enumeration value="Rowton" />
      <xs:enumeration value="Severn Valley" />
      <xs:enumeration value="Sundorne" />
      <xs:enumeration value="Sutton and Reabrook" />
      <xs:enumeration value="Underdale" />
      <xs:enumeration value="Apedale" />
      <xs:enumeration value="Bishop's Castle with Onny Valley" />
      <xs:enumeration value="Bitterley with Stoke St Milborough" />
      <xs:enumeration value="Bucknell" />
      <xs:enumeration value="Burford" />
      <xs:enumeration value="Caynham with Ashford" />
      <xs:enumeration value="Chirbury" />
      <xs:enumeration value="Church Stretton North" />
      <xs:enumeration value="Church Stretton South" />
      <xs:enumeration value="Clee" />
      <xs:enumeration value="Cleobury Mortimer" />
      <xs:enumeration value="Clun" />
      <xs:enumeration value="Clun Forest" />
      <xs:enumeration value="Corve Valley" />
      <xs:enumeration value="Kemp Valley" />
      <xs:enumeration value="Ludlow Henley" />
      <xs:enumeration value="Ludlow St Laurence's" />
      <xs:enumeration value="Ludlow St Peter's" />
      <xs:enumeration value="Ludlow Sheet with Ludford" />
      <xs:enumeration value="Stokesay" />
      <xs:enumeration value="Upper Corvedale" />
      <xs:enumeration value="Wistanstow with Hopesay" />
      <xs:enumeration value="Worthen" />
      <xs:enumeration value="Ashwick and Ston Easton" />
      <xs:enumeration value="Avalon" />
      <xs:enumeration value="Beacon" />
      <xs:enumeration value="Beckington and Rode" />
      <xs:enumeration value="Chilcompton" />
      <xs:enumeration value="Coleford" />
      <xs:enumeration value="Creech" />
      <xs:enumeration value="Frome Berkley Down" />
      <xs:enumeration value="Frome Fromefield" />
      <xs:enumeration value="Frome Keyford" />
      <xs:enumeration value="Frome Park" />
      <xs:enumeration value="Frome Welshmill" />
      <xs:enumeration value="Glastonbury St Benedict's" />
      <xs:enumeration value="Glastonbury St Edmund's" />
      <xs:enumeration value="Glastonbury St John's" />
      <xs:enumeration value="Glastonbury St Mary's" />
      <xs:enumeration value="Knowle" />
      <xs:enumeration value="Mells" />
      <xs:enumeration value="Moor" />
      <xs:enumeration value="Nedge" />
      <xs:enumeration value="Nordinton" />
      <xs:enumeration value="Postlebury" />
      <xs:enumeration value="Pylcombe" />
      <xs:enumeration value="Rodney and Priddy" />
      <xs:enumeration value="St Cuthbert (Out) North and West" />
      <xs:enumeration value="Shepton East" />
      <xs:enumeration value="Shepton West" />
      <xs:enumeration value="Stratton" />
      <xs:enumeration value="Street North" />
      <xs:enumeration value="Street South" />
      <xs:enumeration value="Street West" />
      <xs:enumeration value="Vale" />
      <xs:enumeration value="Wells Central" />
      <xs:enumeration value="Wells St Cuthbert's" />
      <xs:enumeration value="Wells St Thomas'" />
      <xs:enumeration value="Axbridge" />
      <xs:enumeration value="Axe Vale" />
      <xs:enumeration value="Berrow" />
      <xs:enumeration value="Brent North" />
      <xs:enumeration value="Bridgwater Bower" />
      <xs:enumeration value="Bridgwater Eastover" />
      <xs:enumeration value="Bridgwater Hamp" />
      <xs:enumeration value="Bridgwater Quantock" />
      <xs:enumeration value="Bridgwater Sydenham" />
      <xs:enumeration value="Bridgwater Victoria" />
      <xs:enumeration value="Burnham North" />
      <xs:enumeration value="Burnham South" />
      <xs:enumeration value="Cannington and Quantocks" />
      <xs:enumeration value="Cheddar and Shipham" />
      <xs:enumeration value="East Poldens" />
      <xs:enumeration value="Highbridge" />
      <xs:enumeration value="Huntspill and Pawlett" />
      <xs:enumeration value="King's Isle" />
      <xs:enumeration value="Knoll" />
      <xs:enumeration value="North Petherton" />
      <xs:enumeration value="Puriton" />
      <xs:enumeration value="Sandford" />
      <xs:enumeration value="Wedmore and Mark" />
      <xs:enumeration value="West Poldens" />
      <xs:enumeration value="Woolavington" />
      <xs:enumeration value="Blackdown" />
      <xs:enumeration value="Blackmoor Vale" />
      <xs:enumeration value="Bruton" />
      <xs:enumeration value="Brympton" />
      <xs:enumeration value="Burrow Hill" />
      <xs:enumeration value="Camelot" />
      <xs:enumeration value="Cary" />
      <xs:enumeration value="Chard Avishayes" />
      <xs:enumeration value="Chard Combe" />
      <xs:enumeration value="Chard Crimchard" />
      <xs:enumeration value="Chard Holyrood" />
      <xs:enumeration value="Chard Jocelyn" />
      <xs:enumeration value="Coker" />
      <xs:enumeration value="Crewkerne" />
      <xs:enumeration value="Curry Rivel" />
      <xs:enumeration value="Eggwood" />
      <xs:enumeration value="Hamdon" />
      <xs:enumeration value="Ilminster" />
      <xs:enumeration value="Islemoor" />
      <xs:enumeration value="Ivelchester" />
      <xs:enumeration value="Langport and Huish" />
      <xs:enumeration value="Martock" />
      <xs:enumeration value="Milborne Port" />
      <xs:enumeration value="Neroche" />
      <xs:enumeration value="Northstone" />
      <xs:enumeration value="Parrett" />
      <xs:enumeration value="St Michael's" />
      <xs:enumeration value="South Petherton" />
      <xs:enumeration value="Tatworth and Forton" />
      <xs:enumeration value="Tower" />
      <xs:enumeration value="Turn Hill" />
      <xs:enumeration value="Wessex" />
      <xs:enumeration value="Wincanton" />
      <xs:enumeration value="Windwhistle" />
      <xs:enumeration value="Yeovil Central" />
      <xs:enumeration value="Yeovil East" />
      <xs:enumeration value="Yeovil South" />
      <xs:enumeration value="Yeovil West" />
      <xs:enumeration value="Yeovil Without" />
      <xs:enumeration value="Bishop's Hull" />
      <xs:enumeration value="Bishop's Lydeard" />
      <xs:enumeration value="Blackdown" />
      <xs:enumeration value="Bradford-on-Tone" />
      <xs:enumeration value="Comeytrowe" />
      <xs:enumeration value="Milverton and North Deane" />
      <xs:enumeration value="Monument" />
      <xs:enumeration value="Neroche" />
      <xs:enumeration value="North Curry" />
      <xs:enumeration value="Norton Fitzwarren" />
      <xs:enumeration value="Ruishton and Creech" />
      <xs:enumeration value="Staplegrove" />
      <xs:enumeration value="Stoke St. Gregory" />
      <xs:enumeration value="Taunton Blackbrook and Holway" />
      <xs:enumeration value="Taunton Eastgate" />
      <xs:enumeration value="Taunton Fairwater" />
      <xs:enumeration value="Taunton Halcon" />
      <xs:enumeration value="Taunton Killams and Mountfield" />
      <xs:enumeration value="Taunton Lyngford" />
      <xs:enumeration value="Taunton Manor and Wilton" />
      <xs:enumeration value="Taunton Pyrland and Rowbarton" />
      <xs:enumeration value="Trull" />
      <xs:enumeration value="Wellington East" />
      <xs:enumeration value="Wellington North" />
      <xs:enumeration value="Wellington Rockwell Green and West" />
      <xs:enumeration value="West Monkton" />
      <xs:enumeration value="Wiveliscombe and West Deane" />
      <xs:enumeration value="Alcombe East" />
      <xs:enumeration value="Alcombe West" />
      <xs:enumeration value="Aville Vale" />
      <xs:enumeration value="Brompton Ralph and Haddon" />
      <xs:enumeration value="Carhampton and Withycombe" />
      <xs:enumeration value="Crowcombe and Stogumber" />
      <xs:enumeration value="Dulverton and Brushford" />
      <xs:enumeration value="Dunster" />
      <xs:enumeration value="Exmoor" />
      <xs:enumeration value="Minehead North" />
      <xs:enumeration value="Minehead South" />
      <xs:enumeration value="Old Cleeve" />
      <xs:enumeration value="Porlock and District" />
      <xs:enumeration value="Quantock Vale" />
      <xs:enumeration value="Quarme" />
      <xs:enumeration value="Watchet" />
      <xs:enumeration value="West Quantock" />
      <xs:enumeration value="Williton" />
      <xs:enumeration value="Brereton and Ravenhill" />
      <xs:enumeration value="Cannock East" />
      <xs:enumeration value="Cannock North" />
      <xs:enumeration value="Cannock South" />
      <xs:enumeration value="Cannock West" />
      <xs:enumeration value="Etching Hill and The Heath" />
      <xs:enumeration value="Hagley" />
      <xs:enumeration value="Hawks Green" />
      <xs:enumeration value="Heath Hayes East and Wimblebury" />
      <xs:enumeration value="Hednesford Green Heath" />
      <xs:enumeration value="Hednesford North" />
      <xs:enumeration value="Hednesford South" />
      <xs:enumeration value="Norton Canes" />
      <xs:enumeration value="Rawnsley" />
      <xs:enumeration value="Western Springs" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Anglesey" />
      <xs:enumeration value="Bagots" />
      <xs:enumeration value="Branston" />
      <xs:enumeration value="Brizlincote" />
      <xs:enumeration value="Burton" />
      <xs:enumeration value="Churnet" />
      <xs:enumeration value="Crown" />
      <xs:enumeration value="Eton Park" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Horninglow" />
      <xs:enumeration value="Needwood" />
      <xs:enumeration value="Rolleston on Dove" />
      <xs:enumeration value="Shobnall" />
      <xs:enumeration value="Stapenhill" />
      <xs:enumeration value="Stretton" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Tutbury and Outwoods" />
      <xs:enumeration value="Weaver" />
      <xs:enumeration value="Winshill" />
      <xs:enumeration value="Yoxall" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Alrewas and Fradley" />
      <xs:enumeration value="Armitage with Handsacre" />
      <xs:enumeration value="Boley Park" />
      <xs:enumeration value="Boney Hay" />
      <xs:enumeration value="Bourne Vale" />
      <xs:enumeration value="Burntwood Central" />
      <xs:enumeration value="Chadsmead" />
      <xs:enumeration value="Chase Terrace" />
      <xs:enumeration value="Chasetown" />
      <xs:enumeration value="Colton and Mavesyn Ridware" />
      <xs:enumeration value="Curborough" />
      <xs:enumeration value="Fazeley" />
      <xs:enumeration value="Hammerwich" />
      <xs:enumeration value="Highfield" />
      <xs:enumeration value="King's Bromley" />
      <xs:enumeration value="Leomansley" />
      <xs:enumeration value="Little Aston" />
      <xs:enumeration value="Longdon" />
      <xs:enumeration value="Mease and Tame" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="Shenstone" />
      <xs:enumeration value="Stonnall" />
      <xs:enumeration value="Stowe" />
      <xs:enumeration value="Summerfield" />
      <xs:enumeration value="Whittington" />
      <xs:enumeration value="Audley and Bignall End" />
      <xs:enumeration value="Bradwell" />
      <xs:enumeration value="Butt Lane" />
      <xs:enumeration value="Chesterton" />
      <xs:enumeration value="Clayton" />
      <xs:enumeration value="Cross Heath" />
      <xs:enumeration value="Halmerend" />
      <xs:enumeration value="Holditch" />
      <xs:enumeration value="Keele" />
      <xs:enumeration value="Kidsgrove" />
      <xs:enumeration value="Knutton and Silverdale" />
      <xs:enumeration value="Loggerheads and Whitmore" />
      <xs:enumeration value="Madeley" />
      <xs:enumeration value="May Bank" />
      <xs:enumeration value="Newchapel" />
      <xs:enumeration value="Porthill" />
      <xs:enumeration value="Ravenscliffe" />
      <xs:enumeration value="Seabridge" />
      <xs:enumeration value="Silverdale and Parksite" />
      <xs:enumeration value="Talke" />
      <xs:enumeration value="Thistleberry" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Westlands" />
      <xs:enumeration value="Wolstanton" />
      <xs:enumeration value="Bilbrook" />
      <xs:enumeration value="Brewood and Coven" />
      <xs:enumeration value="Cheslyn Hay North and Saredon" />
      <xs:enumeration value="Cheslyn Hay South" />
      <xs:enumeration value="Codsall North" />
      <xs:enumeration value="Codsall South" />
      <xs:enumeration value="Essington" />
      <xs:enumeration value="Featherstone and Shareshill" />
      <xs:enumeration value="Great Wyrley Landywood" />
      <xs:enumeration value="Great Wyrley Town" />
      <xs:enumeration value="Himley and Swindon" />
      <xs:enumeration value="Huntington and Hatherton" />
      <xs:enumeration value="Kinver" />
      <xs:enumeration value="Pattingham and Patshull" />
      <xs:enumeration value="Penkridge North East and Acton Trussell" />
      <xs:enumeration value="Penkridge South East" />
      <xs:enumeration value="Penkridge West" />
      <xs:enumeration value="Perton Dippons" />
      <xs:enumeration value="Perton East" />
      <xs:enumeration value="Perton Lakeside" />
      <xs:enumeration value="Trysull and Seisdon" />
      <xs:enumeration value="Wheaton Aston, Bishopswood and Lapley" />
      <xs:enumeration value="Wombourne North and Lower Penn" />
      <xs:enumeration value="Wombourne South East" />
      <xs:enumeration value="Wombourne South West" />
      <xs:enumeration value="Barlaston and Oulton" />
      <xs:enumeration value="Baswich" />
      <xs:enumeration value="Chartley" />
      <xs:enumeration value="Church Eaton" />
      <xs:enumeration value="Common" />
      <xs:enumeration value="Coton" />
      <xs:enumeration value="Eccleshall" />
      <xs:enumeration value="Forebridge" />
      <xs:enumeration value="Fulford" />
      <xs:enumeration value="Gnosall and Woodseaves" />
      <xs:enumeration value="Haywood and Hixon" />
      <xs:enumeration value="Highfields and Western Downs" />
      <xs:enumeration value="Holmcroft" />
      <xs:enumeration value="Littleworth" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Milford" />
      <xs:enumeration value="Milwich" />
      <xs:enumeration value="Penkside" />
      <xs:enumeration value="Rowley" />
      <xs:enumeration value="St. Michael's" />
      <xs:enumeration value="Seighford" />
      <xs:enumeration value="Stonefield and Christchurch" />
      <xs:enumeration value="Swynnerton" />
      <xs:enumeration value="Tillington" />
      <xs:enumeration value="Walton" />
      <xs:enumeration value="Weeping Cross" />
      <xs:enumeration value="Alton" />
      <xs:enumeration value="Bagnall and Stanley" />
      <xs:enumeration value="Biddulph East" />
      <xs:enumeration value="Biddulph Moor" />
      <xs:enumeration value="Biddulph North" />
      <xs:enumeration value="Biddulph South" />
      <xs:enumeration value="Biddulph West" />
      <xs:enumeration value="Brown Edge and Endon" />
      <xs:enumeration value="Caverswall" />
      <xs:enumeration value="Cellarhead" />
      <xs:enumeration value="Cheadle North East" />
      <xs:enumeration value="Cheadle South East" />
      <xs:enumeration value="Cheadle West" />
      <xs:enumeration value="Checkley" />
      <xs:enumeration value="Cheddleton" />
      <xs:enumeration value="Churnet" />
      <xs:enumeration value="Dane" />
      <xs:enumeration value="Forsbrook" />
      <xs:enumeration value="Hamps Valley" />
      <xs:enumeration value="Horton" />
      <xs:enumeration value="Ipstones" />
      <xs:enumeration value="Leek East" />
      <xs:enumeration value="Leek North" />
      <xs:enumeration value="Leek South" />
      <xs:enumeration value="Leek West" />
      <xs:enumeration value="Manifold" />
      <xs:enumeration value="Werrington" />
      <xs:enumeration value="Amington" />
      <xs:enumeration value="Belgrave" />
      <xs:enumeration value="Bolehall" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Glascote" />
      <xs:enumeration value="Mercian" />
      <xs:enumeration value="Spital" />
      <xs:enumeration value="Stonydelph" />
      <xs:enumeration value="Trinity" />
      <xs:enumeration value="Wilnecote" />
      <xs:enumeration value="Alton" />
      <xs:enumeration value="Berners" />
      <xs:enumeration value="Boxford" />
      <xs:enumeration value="Brett Vale" />
      <xs:enumeration value="Brook" />
      <xs:enumeration value="Bures St Mary" />
      <xs:enumeration value="Chadacre" />
      <xs:enumeration value="Dodnash" />
      <xs:enumeration value="Glemsford and Stanstead" />
      <xs:enumeration value="Great Cornard North" />
      <xs:enumeration value="Great Cornard South" />
      <xs:enumeration value="Hadleigh North" />
      <xs:enumeration value="Hadleigh South" />
      <xs:enumeration value="Holbrook" />
      <xs:enumeration value="Lavenham" />
      <xs:enumeration value="Leavenheath" />
      <xs:enumeration value="Long Melford" />
      <xs:enumeration value="Lower Brett" />
      <xs:enumeration value="Mid Samford" />
      <xs:enumeration value="Nayland" />
      <xs:enumeration value="North Cosford" />
      <xs:enumeration value="Pinewood" />
      <xs:enumeration value="South Cosford" />
      <xs:enumeration value="Sudbury East" />
      <xs:enumeration value="Sudbury North" />
      <xs:enumeration value="Sudbury South" />
      <xs:enumeration value="Waldingfield" />
      <xs:enumeration value="All Saints" />
      <xs:enumeration value="Brandon East" />
      <xs:enumeration value="Brandon West" />
      <xs:enumeration value="Eriswell and The Rows" />
      <xs:enumeration value="Exning" />
      <xs:enumeration value="Great Heath" />
      <xs:enumeration value="Iceni" />
      <xs:enumeration value="Lakenheath" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Market" />
      <xs:enumeration value="Red Lodge" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="Severals" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Alexandra" />
      <xs:enumeration value="Bixley" />
      <xs:enumeration value="Bridge" />
      <xs:enumeration value="Castle Hill" />
      <xs:enumeration value="Gainsborough" />
      <xs:enumeration value="Gipping" />
      <xs:enumeration value="Holywells" />
      <xs:enumeration value="Priory Heath" />
      <xs:enumeration value="Rushmere" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="St Margaret's" />
      <xs:enumeration value="Sprites" />
      <xs:enumeration value="Stoke Park" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="Whitehouse" />
      <xs:enumeration value="Whitton" />
      <xs:enumeration value="Bacton and Old Newton" />
      <xs:enumeration value="Badwell Ash" />
      <xs:enumeration value="Barking and Somersham" />
      <xs:enumeration value="Bramford and Blakenham" />
      <xs:enumeration value="Claydon and Barham" />
      <xs:enumeration value="Debenham" />
      <xs:enumeration value="Elmswell and Norton" />
      <xs:enumeration value="Eye" />
      <xs:enumeration value="Fressingfield" />
      <xs:enumeration value="Gislingham" />
      <xs:enumeration value="Haughley and Wetherden" />
      <xs:enumeration value="Helmingham and Coddenham" />
      <xs:enumeration value="Hoxne" />
      <xs:enumeration value="Mendlesham" />
      <xs:enumeration value="Needham Market" />
      <xs:enumeration value="Onehouse" />
      <xs:enumeration value="Palgrave" />
      <xs:enumeration value="Rattlesden" />
      <xs:enumeration value="Rickinghall and Walsham" />
      <xs:enumeration value="Ringshall" />
      <xs:enumeration value="Stowmarket Central" />
      <xs:enumeration value="Stowmarket North" />
      <xs:enumeration value="Stowmarket South" />
      <xs:enumeration value="Stowupland" />
      <xs:enumeration value="Stradbroke and Laxfield" />
      <xs:enumeration value="The Stonhams" />
      <xs:enumeration value="Thurston and Hessett" />
      <xs:enumeration value="Wetheringsett" />
      <xs:enumeration value="Woolpit" />
      <xs:enumeration value="Worlingworth" />
      <xs:enumeration value="Abbeygate" />
      <xs:enumeration value="Bardwell" />
      <xs:enumeration value="Barningham" />
      <xs:enumeration value="Barrow" />
      <xs:enumeration value="Cavendish" />
      <xs:enumeration value="Chedburgh" />
      <xs:enumeration value="Clare" />
      <xs:enumeration value="Eastgate" />
      <xs:enumeration value="Fornham" />
      <xs:enumeration value="Great Barton" />
      <xs:enumeration value="Haverhill East" />
      <xs:enumeration value="Haverhill North" />
      <xs:enumeration value="Haverhill South" />
      <xs:enumeration value="Haverhill West" />
      <xs:enumeration value="Horringer and Whelnetham" />
      <xs:enumeration value="Hundon" />
      <xs:enumeration value="Ixworth" />
      <xs:enumeration value="Kedington" />
      <xs:enumeration value="Minden" />
      <xs:enumeration value="Moreton Hall" />
      <xs:enumeration value="Northgate" />
      <xs:enumeration value="Pakenham" />
      <xs:enumeration value="Risby" />
      <xs:enumeration value="Risbygate" />
      <xs:enumeration value="Rougham" />
      <xs:enumeration value="St Olaves" />
      <xs:enumeration value="Southgate" />
      <xs:enumeration value="Stanton" />
      <xs:enumeration value="Westgate" />
      <xs:enumeration value="Wickhambrook" />
      <xs:enumeration value="Withersfield" />
      <xs:enumeration value="Aldeburgh" />
      <xs:enumeration value="Earl Soham" />
      <xs:enumeration value="Farlingaye" />
      <xs:enumeration value="Felixstowe East" />
      <xs:enumeration value="Felixstowe North" />
      <xs:enumeration value="Felixstowe South" />
      <xs:enumeration value="Felixstowe South East" />
      <xs:enumeration value="Felixstowe West" />
      <xs:enumeration value="Framlingham" />
      <xs:enumeration value="Grundisburgh" />
      <xs:enumeration value="Hacheston" />
      <xs:enumeration value="Hollesley with Eyke" />
      <xs:enumeration value="Kesgrave East" />
      <xs:enumeration value="Kesgrave West" />
      <xs:enumeration value="Kyson" />
      <xs:enumeration value="Leiston" />
      <xs:enumeration value="Martlesham" />
      <xs:enumeration value="Melton and Ufford" />
      <xs:enumeration value="Nacton" />
      <xs:enumeration value="Orford and Tunstall" />
      <xs:enumeration value="Otley" />
      <xs:enumeration value="Peasenhall" />
      <xs:enumeration value="Rendlesham" />
      <xs:enumeration value="Riverside" />
      <xs:enumeration value="Rushmere St Andrew" />
      <xs:enumeration value="Saxmundham" />
      <xs:enumeration value="Seckford" />
      <xs:enumeration value="Snape" />
      <xs:enumeration value="Sutton" />
      <xs:enumeration value="Trimleys with Kirton" />
      <xs:enumeration value="Walberswick and Wenhaston" />
      <xs:enumeration value="Wickham Market" />
      <xs:enumeration value="Witnesham" />
      <xs:enumeration value="Yoxford" />
      <xs:enumeration value="Beccles North" />
      <xs:enumeration value="Beccles South" />
      <xs:enumeration value="Blything" />
      <xs:enumeration value="Bungay" />
      <xs:enumeration value="Carlton" />
      <xs:enumeration value="Carlton Colville" />
      <xs:enumeration value="Gunton and Corton" />
      <xs:enumeration value="Halesworth" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Kessingland" />
      <xs:enumeration value="Kirkley" />
      <xs:enumeration value="Lothingland" />
      <xs:enumeration value="Normanston" />
      <xs:enumeration value="Oulton" />
      <xs:enumeration value="Oulton Broad" />
      <xs:enumeration value="Pakefield" />
      <xs:enumeration value="St Margaret's" />
      <xs:enumeration value="Southwold and Reydon" />
      <xs:enumeration value="The Saints" />
      <xs:enumeration value="Wainford" />
      <xs:enumeration value="Whitton" />
      <xs:enumeration value="Worlingham" />
      <xs:enumeration value="Wrentham" />
      <xs:enumeration value="Claygate" />
      <xs:enumeration value="Cobham and Downside" />
      <xs:enumeration value="Cobham Fairmile" />
      <xs:enumeration value="Esher" />
      <xs:enumeration value="Hersham North" />
      <xs:enumeration value="Hersham South" />
      <xs:enumeration value="Hinchley Wood" />
      <xs:enumeration value="Long Ditton" />
      <xs:enumeration value="Molesey East" />
      <xs:enumeration value="Molesey North" />
      <xs:enumeration value="Molesey South" />
      <xs:enumeration value="Oatlands Park" />
      <xs:enumeration value="Oxshott and Stoke D'Abernon" />
      <xs:enumeration value="St George's Hill" />
      <xs:enumeration value="Thames Ditton" />
      <xs:enumeration value="Walton Ambleside" />
      <xs:enumeration value="Walton Central" />
      <xs:enumeration value="Walton North" />
      <xs:enumeration value="Walton South" />
      <xs:enumeration value="Weston Green" />
      <xs:enumeration value="Weybridge North" />
      <xs:enumeration value="Weybridge South" />
      <xs:enumeration value="Auriol" />
      <xs:enumeration value="College" />
      <xs:enumeration value="Court" />
      <xs:enumeration value="Cuddington" />
      <xs:enumeration value="Ewell" />
      <xs:enumeration value="Ewell Court" />
      <xs:enumeration value="Nonsuch" />
      <xs:enumeration value="Ruxley" />
      <xs:enumeration value="Stamford" />
      <xs:enumeration value="Stoneleigh" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="West Ewell" />
      <xs:enumeration value="Woodcote" />
      <xs:enumeration value="Ash South and Tongham" />
      <xs:enumeration value="Ash Vale" />
      <xs:enumeration value="Ash Wharf" />
      <xs:enumeration value="Burpham" />
      <xs:enumeration value="Christchurch" />
      <xs:enumeration value="Clandon and Horsley" />
      <xs:enumeration value="Effingham" />
      <xs:enumeration value="Friary and St Nicolas" />
      <xs:enumeration value="Holy Trinity" />
      <xs:enumeration value="Lovelace" />
      <xs:enumeration value="Merrow" />
      <xs:enumeration value="Normandy" />
      <xs:enumeration value="Onslow" />
      <xs:enumeration value="Pilgrims" />
      <xs:enumeration value="Pirbright" />
      <xs:enumeration value="Send" />
      <xs:enumeration value="Shalford" />
      <xs:enumeration value="Stoke" />
      <xs:enumeration value="Stoughton" />
      <xs:enumeration value="Tillingbourne" />
      <xs:enumeration value="Westborough" />
      <xs:enumeration value="Worplesdon" />
      <xs:enumeration value="Ashtead Common" />
      <xs:enumeration value="Ashtead Park" />
      <xs:enumeration value="Ashtead Village" />
      <xs:enumeration value="Beare Green" />
      <xs:enumeration value="Bookham North" />
      <xs:enumeration value="Bookham South" />
      <xs:enumeration value="Box Hill and Headley" />
      <xs:enumeration value="Brockham, Betchworth and Buckland" />
      <xs:enumeration value="Capel, Leigh and Newdigate" />
      <xs:enumeration value="Charlwood" />
      <xs:enumeration value="Dorking North" />
      <xs:enumeration value="Dorking South" />
      <xs:enumeration value="Fetcham East" />
      <xs:enumeration value="Fetcham West" />
      <xs:enumeration value="Holmwoods" />
      <xs:enumeration value="Leatherhead North" />
      <xs:enumeration value="Leatherhead South" />
      <xs:enumeration value="Leith Hill" />
      <xs:enumeration value="Mickleham, Westhumble and Pixham" />
      <xs:enumeration value="Okewood" />
      <xs:enumeration value="Westcott" />
      <xs:enumeration value="Banstead Village" />
      <xs:enumeration value="Chipstead, Hooley and Woodmansterne" />
      <xs:enumeration value="Earlswood and Whitebushes" />
      <xs:enumeration value="Horley Central" />
      <xs:enumeration value="Horley East" />
      <xs:enumeration value="Horley West" />
      <xs:enumeration value="Kingswood with Burgh Heath" />
      <xs:enumeration value="Meadvale and St John's" />
      <xs:enumeration value="Merstham" />
      <xs:enumeration value="Nork" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Redhill East" />
      <xs:enumeration value="Redhill West" />
      <xs:enumeration value="Reigate Central" />
      <xs:enumeration value="Reigate Hill" />
      <xs:enumeration value="Salfords and Sidlow" />
      <xs:enumeration value="South Park and Woodhatch" />
      <xs:enumeration value="Tadworth and Walton" />
      <xs:enumeration value="Tattenhams" />
      <xs:enumeration value="Addlestone Bourneside" />
      <xs:enumeration value="Addlestone North" />
      <xs:enumeration value="Chertsey Meads" />
      <xs:enumeration value="Chertsey St Ann's" />
      <xs:enumeration value="Chertsey South and Row Town" />
      <xs:enumeration value="Egham Hythe" />
      <xs:enumeration value="Egham Town" />
      <xs:enumeration value="Englefield Green East" />
      <xs:enumeration value="Englefield Green West" />
      <xs:enumeration value="Foxhills" />
      <xs:enumeration value="New Haw" />
      <xs:enumeration value="Thorpe" />
      <xs:enumeration value="Virginia Water" />
      <xs:enumeration value="Woodham" />
      <xs:enumeration value="Ashford Common" />
      <xs:enumeration value="Ashford East" />
      <xs:enumeration value="Ashford North and Stanwell South" />
      <xs:enumeration value="Ashford Town" />
      <xs:enumeration value="Halliford and Sunbury West" />
      <xs:enumeration value="Laleham and Shepperton Green" />
      <xs:enumeration value="Riverside and Laleham" />
      <xs:enumeration value="Shepperton Town" />
      <xs:enumeration value="Staines" />
      <xs:enumeration value="Staines South" />
      <xs:enumeration value="Stanwell North" />
      <xs:enumeration value="Sunbury Common" />
      <xs:enumeration value="Sunbury East" />
      <xs:enumeration value="Bagshot" />
      <xs:enumeration value="Bisley" />
      <xs:enumeration value="Chobham" />
      <xs:enumeration value="Frimley" />
      <xs:enumeration value="Frimley Green" />
      <xs:enumeration value="Heatherside" />
      <xs:enumeration value="Lightwater" />
      <xs:enumeration value="Mytchett and Deepcut" />
      <xs:enumeration value="Old Dean" />
      <xs:enumeration value="Parkside" />
      <xs:enumeration value="St Michaels" />
      <xs:enumeration value="St Pauls" />
      <xs:enumeration value="Town" />
      <xs:enumeration value="Watchetts" />
      <xs:enumeration value="West End" />
      <xs:enumeration value="Windlesham" />
      <xs:enumeration value="Bletchingley and Nutfield" />
      <xs:enumeration value="Burstow, Horne and Outwood" />
      <xs:enumeration value="Chaldon" />
      <xs:enumeration value="Dormansland and Felcourt" />
      <xs:enumeration value="Felbridge" />
      <xs:enumeration value="Godstone" />
      <xs:enumeration value="Harestone" />
      <xs:enumeration value="Limpsfield" />
      <xs:enumeration value="Lingfield and Crowhurst" />
      <xs:enumeration value="Oxted North and Tandridge" />
      <xs:enumeration value="Oxted South" />
      <xs:enumeration value="Portley" />
      <xs:enumeration value="Queens Park" />
      <xs:enumeration value="Tatsfield and Titsey" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Warlingham East and Chelsham and Farleigh" />
      <xs:enumeration value="Warlingham West" />
      <xs:enumeration value="Westway" />
      <xs:enumeration value="Whyteleafe" />
      <xs:enumeration value="Woldingham" />
      <xs:enumeration value="Alfold, Cranleigh Rural and Ellens Green" />
      <xs:enumeration value="Blackheath and Wonersh" />
      <xs:enumeration value="Bramley, Busbridge and Hascombe" />
      <xs:enumeration value="Chiddingfold and Dunsfold" />
      <xs:enumeration value="Cranleigh East" />
      <xs:enumeration value="Cranleigh West" />
      <xs:enumeration value="Elstead and Thursley" />
      <xs:enumeration value="Ewhurst" />
      <xs:enumeration value="Farnham Bourne" />
      <xs:enumeration value="Farnham Castle" />
      <xs:enumeration value="Farnham Firgrove" />
      <xs:enumeration value="Farnham Hale and Heath End" />
      <xs:enumeration value="Farnham Moor Park" />
      <xs:enumeration value="Farnham Shortheath and Boundstone" />
      <xs:enumeration value="Farnham Upper Hale" />
      <xs:enumeration value="Farnham Weybourne and Badshot Lea" />
      <xs:enumeration value="Farnham Wrecclesham and Rowledge" />
      <xs:enumeration value="Frensham, Dockenfield and Tilford" />
      <xs:enumeration value="Godalming Binscombe" />
      <xs:enumeration value="Godalming Central and Ockford" />
      <xs:enumeration value="Godalming Charterhouse" />
      <xs:enumeration value="Godalming Farncombe and Catteshall" />
      <xs:enumeration value="Godalming Holloway" />
      <xs:enumeration value="Haslemere Critchmere and Shottermill" />
      <xs:enumeration value="Haslemere East and Grayswood" />
      <xs:enumeration value="Hindhead" />
      <xs:enumeration value="Milford" />
      <xs:enumeration value="Shamley Green and Cranleigh North" />
      <xs:enumeration value="Witley and Hambledon" />
      <xs:enumeration value="Brookwood" />
      <xs:enumeration value="Byfleet" />
      <xs:enumeration value="Goldsworth East" />
      <xs:enumeration value="Goldsworth West" />
      <xs:enumeration value="Hermitage and Knaphill South" />
      <xs:enumeration value="Horsell East and Woodham" />
      <xs:enumeration value="Horsell West" />
      <xs:enumeration value="Kingfield and Westfield" />
      <xs:enumeration value="Knaphill" />
      <xs:enumeration value="Maybury and Sheerwater" />
      <xs:enumeration value="Mayford and Sutton Green" />
      <xs:enumeration value="Mount Hermon East" />
      <xs:enumeration value="Mount Hermon West" />
      <xs:enumeration value="Old Woking" />
      <xs:enumeration value="Pyrford" />
      <xs:enumeration value="St John's and Hook Heath" />
      <xs:enumeration value="West Byfleet" />
      <xs:enumeration value="Arley and Whitacre" />
      <xs:enumeration value="Atherstone Central" />
      <xs:enumeration value="Atherstone North" />
      <xs:enumeration value="Atherstone South and Mancetter" />
      <xs:enumeration value="Baddesley and Grendon" />
      <xs:enumeration value="Coleshill North" />
      <xs:enumeration value="Coleshill South" />
      <xs:enumeration value="Curdworth" />
      <xs:enumeration value="Dordon" />
      <xs:enumeration value="Fillongley" />
      <xs:enumeration value="Hartshill" />
      <xs:enumeration value="Hurley and Wood End" />
      <xs:enumeration value="Kingsbury" />
      <xs:enumeration value="Newton Regis and Warton" />
      <xs:enumeration value="Polesworth East" />
      <xs:enumeration value="Polesworth West" />
      <xs:enumeration value="Water Orton" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Arbury" />
      <xs:enumeration value="Attleborough" />
      <xs:enumeration value="Bar Pool" />
      <xs:enumeration value="Bede" />
      <xs:enumeration value="Bulkington" />
      <xs:enumeration value="Camp Hill" />
      <xs:enumeration value="Exhall" />
      <xs:enumeration value="Galley Common" />
      <xs:enumeration value="Heath" />
      <xs:enumeration value="Kingswood" />
      <xs:enumeration value="Poplar" />
      <xs:enumeration value="St Nicolas" />
      <xs:enumeration value="Slough" />
      <xs:enumeration value="Weddington" />
      <xs:enumeration value="Wem Brook" />
      <xs:enumeration value="Whitestone" />
      <xs:enumeration value="Admirals" />
      <xs:enumeration value="Avon and Swift" />
      <xs:enumeration value="Benn" />
      <xs:enumeration value="Bilton" />
      <xs:enumeration value="Brownsover North" />
      <xs:enumeration value="Brownsover South" />
      <xs:enumeration value="Caldecott" />
      <xs:enumeration value="Dunchurch and Knightlow" />
      <xs:enumeration value="Earl Craven and Wolston" />
      <xs:enumeration value="Eastlands" />
      <xs:enumeration value="Fosse" />
      <xs:enumeration value="Hillmorton" />
      <xs:enumeration value="Lawford and King's Newnham" />
      <xs:enumeration value="Leam Valley" />
      <xs:enumeration value="New Bilton" />
      <xs:enumeration value="Newbold" />
      <xs:enumeration value="Overslade" />
      <xs:enumeration value="Paddox" />
      <xs:enumeration value="Ryton-on-Dunsmore" />
      <xs:enumeration value="Wolvey" />
      <xs:enumeration value="Alcester" />
      <xs:enumeration value="Aston Cantlow" />
      <xs:enumeration value="Bardon" />
      <xs:enumeration value="Bidford and Salford" />
      <xs:enumeration value="Brailes" />
      <xs:enumeration value="Burton Dassett" />
      <xs:enumeration value="Claverdon" />
      <xs:enumeration value="Ettington" />
      <xs:enumeration value="Fenny Compton" />
      <xs:enumeration value="Harbury" />
      <xs:enumeration value="Henley" />
      <xs:enumeration value="Kineton" />
      <xs:enumeration value="Kinwarton" />
      <xs:enumeration value="Long Compton" />
      <xs:enumeration value="Long Itchington" />
      <xs:enumeration value="Quinton" />
      <xs:enumeration value="Sambourne" />
      <xs:enumeration value="Shipston" />
      <xs:enumeration value="Snitterfield" />
      <xs:enumeration value="Southam" />
      <xs:enumeration value="Stockton and Napton" />
      <xs:enumeration value="Stratford Alveston" />
      <xs:enumeration value="Stratford Avenue and New Town" />
      <xs:enumeration value="Stratford Guild and Hathaway" />
      <xs:enumeration value="Stratford Mount Pleasant" />
      <xs:enumeration value="Studley" />
      <xs:enumeration value="Tanworth" />
      <xs:enumeration value="Tredington" />
      <xs:enumeration value="Vale of the Red Horse" />
      <xs:enumeration value="Welford" />
      <xs:enumeration value="Wellesbourne" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Bishop's Tachbrook" />
      <xs:enumeration value="Brunswick" />
      <xs:enumeration value="Budbrooke" />
      <xs:enumeration value="Clarendon" />
      <xs:enumeration value="Crown" />
      <xs:enumeration value="Cubbington" />
      <xs:enumeration value="Lapworth" />
      <xs:enumeration value="Leek Wootton" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Milverton" />
      <xs:enumeration value="Park Hill" />
      <xs:enumeration value="Radford Semele" />
      <xs:enumeration value="St John's" />
      <xs:enumeration value="Stoneleigh" />
      <xs:enumeration value="Warwick North" />
      <xs:enumeration value="Warwick South" />
      <xs:enumeration value="Warwick West" />
      <xs:enumeration value="Whitnash" />
      <xs:enumeration value="Willes" />
      <xs:enumeration value="Buckingham" />
      <xs:enumeration value="Churchill" />
      <xs:enumeration value="Cokeham" />
      <xs:enumeration value="Eastbrook" />
      <xs:enumeration value="Hillside" />
      <xs:enumeration value="Manor" />
      <xs:enumeration value="Marine" />
      <xs:enumeration value="Mash Barn" />
      <xs:enumeration value="Peverel" />
      <xs:enumeration value="St Mary's" />
      <xs:enumeration value="St Nicolas" />
      <xs:enumeration value="Southlands" />
      <xs:enumeration value="Southwick Green" />
      <xs:enumeration value="Widewater" />
      <xs:enumeration value="Aldwick East" />
      <xs:enumeration value="Aldwick West" />
      <xs:enumeration value="Angmering" />
      <xs:enumeration value="Arundel" />
      <xs:enumeration value="Barnham" />
      <xs:enumeration value="Beach" />
      <xs:enumeration value="Bersted" />
      <xs:enumeration value="Brookfield" />
      <xs:enumeration value="East Preston with Kingston" />
      <xs:enumeration value="Felpham East" />
      <xs:enumeration value="Felpham West" />
      <xs:enumeration value="Ferring" />
      <xs:enumeration value="Findon" />
      <xs:enumeration value="Ham" />
      <xs:enumeration value="Hotham" />
      <xs:enumeration value="Marine" />
      <xs:enumeration value="Middleton-on-Sea" />
      <xs:enumeration value="Orchard" />
      <xs:enumeration value="Pagham and Rose Green" />
      <xs:enumeration value="Pevensey" />
      <xs:enumeration value="River" />
      <xs:enumeration value="Rustington East" />
      <xs:enumeration value="Rustington West" />
      <xs:enumeration value="Walberton" />
      <xs:enumeration value="Wick with Toddington" />
      <xs:enumeration value="Yapton" />
      <xs:enumeration value="Bosham" />
      <xs:enumeration value="Boxgrove" />
      <xs:enumeration value="Bury" />
      <xs:enumeration value="Chichester East" />
      <xs:enumeration value="Chichester North" />
      <xs:enumeration value="Chichester South" />
      <xs:enumeration value="Chichester West" />
      <xs:enumeration value="Donnington" />
      <xs:enumeration value="Easebourne" />
      <xs:enumeration value="East Wittering" />
      <xs:enumeration value="Fernhurst" />
      <xs:enumeration value="Fishbourne" />
      <xs:enumeration value="Funtington" />
      <xs:enumeration value="Harting" />
      <xs:enumeration value="Lavant" />
      <xs:enumeration value="Midhurst" />
      <xs:enumeration value="North Mundham" />
      <xs:enumeration value="Petworth" />
      <xs:enumeration value="Plaistow" />
      <xs:enumeration value="Rogate" />
      <xs:enumeration value="Selsey North" />
      <xs:enumeration value="Selsey South" />
      <xs:enumeration value="Sidlesham" />
      <xs:enumeration value="Southbourne" />
      <xs:enumeration value="Stedham" />
      <xs:enumeration value="Tangmere" />
      <xs:enumeration value="West Wittering" />
      <xs:enumeration value="Westbourne" />
      <xs:enumeration value="Wisborough Green" />
      <xs:enumeration value="Bewbush" />
      <xs:enumeration value="Broadfield North" />
      <xs:enumeration value="Broadfield South" />
      <xs:enumeration value="Furnace Green" />
      <xs:enumeration value="Gossops Green" />
      <xs:enumeration value="Ifield" />
      <xs:enumeration value="Langley Green" />
      <xs:enumeration value="Maidenbower" />
      <xs:enumeration value="Northgate" />
      <xs:enumeration value="Pound Hill North" />
      <xs:enumeration value="Pound Hill South and Worth" />
      <xs:enumeration value="Southgate" />
      <xs:enumeration value="Three Bridges" />
      <xs:enumeration value="Tilgate" />
      <xs:enumeration value="West Green" />
      <xs:enumeration value="Billingshurst and Shipley" />
      <xs:enumeration value="Bramber, Upper Beeding and Woodmancote" />
      <xs:enumeration value="Broadbridge Heath" />
      <xs:enumeration value="Chanctonbury" />
      <xs:enumeration value="Chantry" />
      <xs:enumeration value="Cowfold, Shermanbury and West Grinstead" />
      <xs:enumeration value="Denne" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Henfield" />
      <xs:enumeration value="Holbrook East" />
      <xs:enumeration value="Holbrook West" />
      <xs:enumeration value="Horsham Park" />
      <xs:enumeration value="Itchingfield, Slinfold and Warnham" />
      <xs:enumeration value="Nuthurst" />
      <xs:enumeration value="Pulborough and Coldwatham" />
      <xs:enumeration value="Roffey North" />
      <xs:enumeration value="Roffey South" />
      <xs:enumeration value="Rudgwick" />
      <xs:enumeration value="Rusper and Colgate" />
      <xs:enumeration value="Southwater" />
      <xs:enumeration value="Steyning" />
      <xs:enumeration value="Trafalgar" />
      <xs:enumeration value="Ardingly and Balcombe" />
      <xs:enumeration value="Ashurst Wood" />
      <xs:enumeration value="Bolney" />
      <xs:enumeration value="Burgess Hill Dunstall" />
      <xs:enumeration value="Burgess Hill Franklands" />
      <xs:enumeration value="Burgess Hill Leylands" />
      <xs:enumeration value="Burgess Hill Meeds" />
      <xs:enumeration value="Burgess Hill St Andrews" />
      <xs:enumeration value="Burgess Hill Victoria" />
      <xs:enumeration value="Copthorne and Worth" />
      <xs:enumeration value="Crawley Down and Turners Hill" />
      <xs:enumeration value="Cuckfield" />
      <xs:enumeration value="East Grinstead Ashplats" />
      <xs:enumeration value="East Grinstead Baldwins" />
      <xs:enumeration value="East Grinstead Herontye" />
      <xs:enumeration value="East Grinstead Imberhorne" />
      <xs:enumeration value="East Grinstead Town" />
      <xs:enumeration value="Hassocks" />
      <xs:enumeration value="Haywards Heath Ashenground" />
      <xs:enumeration value="Haywards Heath Bentswood" />
      <xs:enumeration value="Haywards Heath Franklands" />
      <xs:enumeration value="Haywards Heath Heath" />
      <xs:enumeration value="Haywards Heath Lucastes" />
      <xs:enumeration value="High Weald" />
      <xs:enumeration value="Hurstpierpoint and Downs" />
      <xs:enumeration value="Lindfield" />
      <xs:enumeration value="Broadwater" />
      <xs:enumeration value="Castle" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Durrington" />
      <xs:enumeration value="Gaisford" />
      <xs:enumeration value="Goring" />
      <xs:enumeration value="Heene" />
      <xs:enumeration value="Marine" />
      <xs:enumeration value="Northbrook" />
      <xs:enumeration value="Offington" />
      <xs:enumeration value="Salvington" />
      <xs:enumeration value="Selden" />
      <xs:enumeration value="Tarring" />
      <xs:enumeration value="Aldbourne" />
      <xs:enumeration value="All Cannings" />
      <xs:enumeration value="Bedwyn" />
      <xs:enumeration value="Bishops Cannings" />
      <xs:enumeration value="Bromham and Rowde" />
      <xs:enumeration value="Burbage" />
      <xs:enumeration value="Cheverell" />
      <xs:enumeration value="Collingbourne" />
      <xs:enumeration value="Devizes East" />
      <xs:enumeration value="Devizes North" />
      <xs:enumeration value="Devizes South" />
      <xs:enumeration value="Lavingtons" />
      <xs:enumeration value="Ludgershall" />
      <xs:enumeration value="Marlborough East" />
      <xs:enumeration value="Marlborough West" />
      <xs:enumeration value="Milton Lilbourne" />
      <xs:enumeration value="Netheravon" />
      <xs:enumeration value="Ogbourne" />
      <xs:enumeration value="Pewsey" />
      <xs:enumeration value="Pewsey Vale" />
      <xs:enumeration value="Potterne" />
      <xs:enumeration value="Ramsbury" />
      <xs:enumeration value="Roundway" />
      <xs:enumeration value="Seend" />
      <xs:enumeration value="Shalbourne" />
      <xs:enumeration value="Tidworth, Perham Down and Ludgershall South" />
      <xs:enumeration value="Upavon" />
      <xs:enumeration value="Urchfont" />
      <xs:enumeration value="West Selkley" />
      <xs:enumeration value="Ashton Keynes and Minety" />
      <xs:enumeration value="Box" />
      <xs:enumeration value="Bremhill" />
      <xs:enumeration value="Brinkworth and The Somerfords" />
      <xs:enumeration value="Calne Abberd" />
      <xs:enumeration value="Calne Chilvester" />
      <xs:enumeration value="Calne Lickhill" />
      <xs:enumeration value="Calne Marden" />
      <xs:enumeration value="Calne Priestley" />
      <xs:enumeration value="Calne Quemerford" />
      <xs:enumeration value="Calne Without" />
      <xs:enumeration value="Cepen Park" />
      <xs:enumeration value="Chippenham Allington" />
      <xs:enumeration value="Chippenham Audley" />
      <xs:enumeration value="Chippenham Avon" />
      <xs:enumeration value="Chippenham Hill Rise" />
      <xs:enumeration value="Chippenham London Road" />
      <xs:enumeration value="Chippenham Monkton Park" />
      <xs:enumeration value="Chippenham Park" />
      <xs:enumeration value="Chippenham Pewsham" />
      <xs:enumeration value="Chippenham Redland" />
      <xs:enumeration value="Chippenham Westcroft/Queens" />
      <xs:enumeration value="Colerne" />
      <xs:enumeration value="Corsham" />
      <xs:enumeration value="Cricklade" />
      <xs:enumeration value="Hilmarton" />
      <xs:enumeration value="Kington Langley" />
      <xs:enumeration value="Kington St. Michael" />
      <xs:enumeration value="Lacock with Neston and Gastard" />
      <xs:enumeration value="Lyneham" />
      <xs:enumeration value="Malmesbury" />
      <xs:enumeration value="Nettleton" />
      <xs:enumeration value="Pickwick" />
      <xs:enumeration value="Purton" />
      <xs:enumeration value="St. Paul Malmesbury Without and Sherston" />
      <xs:enumeration value="The Lydiards and Broad Town" />
      <xs:enumeration value="Wootton Bassett North" />
      <xs:enumeration value="Wootton Bassett South" />
      <xs:enumeration value="Alderbury and Whiteparish" />
      <xs:enumeration value="Amesbury East" />
      <xs:enumeration value="Amesbury West" />
      <xs:enumeration value="Bemerton" />
      <xs:enumeration value="Bishopdown" />
      <xs:enumeration value="Bulford" />
      <xs:enumeration value="Chalke Valley" />
      <xs:enumeration value="Donhead" />
      <xs:enumeration value="Downton and Redlynch" />
      <xs:enumeration value="Durrington" />
      <xs:enumeration value="Ebble" />
      <xs:enumeration value="Fisherton and Bemerton Village" />
      <xs:enumeration value="Fonthill and Nadder" />
      <xs:enumeration value="Harnham East" />
      <xs:enumeration value="Harnham West" />
      <xs:enumeration value="Knoyle" />
      <xs:enumeration value="Laverstock" />
      <xs:enumeration value="Lower Wylye and Woodford Valley" />
      <xs:enumeration value="St Edmund and Milford" />
      <xs:enumeration value="St Mark and Stratford" />
      <xs:enumeration value="St Martin and Milford" />
      <xs:enumeration value="St Paul" />
      <xs:enumeration value="Till Valley and Wylye" />
      <xs:enumeration value="Tisbury and Fovant" />
      <xs:enumeration value="Upper Bourne, Idmiston and Winterbourne" />
      <xs:enumeration value="Western and Mere" />
      <xs:enumeration value="Wilton" />
      <xs:enumeration value="Winterslow" />
      <xs:enumeration value="Atworth and Whitley" />
      <xs:enumeration value="Bradford-on-Avon North" />
      <xs:enumeration value="Bradford-on-Avon South" />
      <xs:enumeration value="Dilton Marsh" />
      <xs:enumeration value="Ethandune" />
      <xs:enumeration value="Holt" />
      <xs:enumeration value="Manor Vale" />
      <xs:enumeration value="Melksham North" />
      <xs:enumeration value="Melksham Spa" />
      <xs:enumeration value="Melksham Without" />
      <xs:enumeration value="Melksham Woodrow" />
      <xs:enumeration value="Mid Wylye Valley" />
      <xs:enumeration value="Paxcroft" />
      <xs:enumeration value="Shearwater" />
      <xs:enumeration value="Southwick and Wingfield" />
      <xs:enumeration value="Summerham" />
      <xs:enumeration value="Trowbridge Adcroft" />
      <xs:enumeration value="Trowbridge College" />
      <xs:enumeration value="Trowbridge Drynham" />
      <xs:enumeration value="Trowbridge John of Gaunt" />
      <xs:enumeration value="Trowbridge Park" />
      <xs:enumeration value="Warminster East" />
      <xs:enumeration value="Warminster West" />
      <xs:enumeration value="Westbury Ham" />
      <xs:enumeration value="Westbury Laverton" />
      <xs:enumeration value="Alvechurch" />
      <xs:enumeration value="Beacon" />
      <xs:enumeration value="Catshill" />
      <xs:enumeration value="Charford" />
      <xs:enumeration value="Drakes Cross and Walkers Heath" />
      <xs:enumeration value="Furlongs" />
      <xs:enumeration value="Hagley" />
      <xs:enumeration value="Hillside" />
      <xs:enumeration value="Hollywood and Majors Green" />
      <xs:enumeration value="Linthurst" />
      <xs:enumeration value="Marlbrook" />
      <xs:enumeration value="Norton" />
      <xs:enumeration value="St Johns" />
      <xs:enumeration value="Sidemoor" />
      <xs:enumeration value="Slideslow" />
      <xs:enumeration value="Stoke Heath" />
      <xs:enumeration value="Stoke Prior" />
      <xs:enumeration value="Tardebigge" />
      <xs:enumeration value="Uffdown" />
      <xs:enumeration value="Waseley" />
      <xs:enumeration value="Whitford" />
      <xs:enumeration value="Woodvale" />
      <xs:enumeration value="Wythall South" />
      <xs:enumeration value="Alfrick and Leigh" />
      <xs:enumeration value="Baldwin" />
      <xs:enumeration value="Broadheath" />
      <xs:enumeration value="Chase" />
      <xs:enumeration value="Dyson Perrins" />
      <xs:enumeration value="Hallow" />
      <xs:enumeration value="Kempsey" />
      <xs:enumeration value="Lindridge" />
      <xs:enumeration value="Link" />
      <xs:enumeration value="Longdon" />
      <xs:enumeration value="Martley" />
      <xs:enumeration value="Morton" />
      <xs:enumeration value="Pickersleigh" />
      <xs:enumeration value="Powick" />
      <xs:enumeration value="Priory" />
      <xs:enumeration value="Ripple" />
      <xs:enumeration value="Teme Valley" />
      <xs:enumeration value="Tenbury" />
      <xs:enumeration value="Upton and Hanley" />
      <xs:enumeration value="Wells" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Woodbury" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Astwood Bank and Feckenham" />
      <xs:enumeration value="Batchley" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Church Hill" />
      <xs:enumeration value="Crabbs Cross" />
      <xs:enumeration value="Greenlands" />
      <xs:enumeration value="Headless Cross and Oakenshaw" />
      <xs:enumeration value="Lodge Park" />
      <xs:enumeration value="Matchborough" />
      <xs:enumeration value="West" />
      <xs:enumeration value="Winyates" />
      <xs:enumeration value="Arboretum" />
      <xs:enumeration value="Battenhall" />
      <xs:enumeration value="Bedwardine" />
      <xs:enumeration value="Cathedral" />
      <xs:enumeration value="Claines" />
      <xs:enumeration value="Gorse Hill" />
      <xs:enumeration value="Nunnery" />
      <xs:enumeration value="Rainbow Hill" />
      <xs:enumeration value="St Clement" />
      <xs:enumeration value="St John" />
      <xs:enumeration value="St Peter's Parish" />
      <xs:enumeration value="St Stephen" />
      <xs:enumeration value="Warndon" />
      <xs:enumeration value="Warndon Parish North" />
      <xs:enumeration value="Warndon Parish South" />
      <xs:enumeration value="Badsey" />
      <xs:enumeration value="Bengeworth" />
      <xs:enumeration value="Bowbrook" />
      <xs:enumeration value="Bredon" />
      <xs:enumeration value="Bretforton and Offenham" />
      <xs:enumeration value="Broadway and Wickhamford" />
      <xs:enumeration value="Dodderhill" />
      <xs:enumeration value="Drakes Broughton" />
      <xs:enumeration value="Droitwich Central" />
      <xs:enumeration value="Droitwich East" />
      <xs:enumeration value="Droitwich South East" />
      <xs:enumeration value="Droitwich South West" />
      <xs:enumeration value="Droitwich West" />
      <xs:enumeration value="Eckington" />
      <xs:enumeration value="Elmley Castle and Somerville" />
      <xs:enumeration value="Evesham North" />
      <xs:enumeration value="Evesham South" />
      <xs:enumeration value="Fladbury" />
      <xs:enumeration value="Great Hampton" />
      <xs:enumeration value="Hartlebury" />
      <xs:enumeration value="Harvington and Norton" />
      <xs:enumeration value="Honeybourne and Pebworth" />
      <xs:enumeration value="Inkberrow" />
      <xs:enumeration value="Little Hampton" />
      <xs:enumeration value="Lovett and North Claines" />
      <xs:enumeration value="Norton and Whittington" />
      <xs:enumeration value="Ombersley" />
      <xs:enumeration value="Pershore" />
      <xs:enumeration value="Pinvin" />
      <xs:enumeration value="South Bredon Hill" />
      <xs:enumeration value="The Littletons" />
      <xs:enumeration value="Upton Snodsbury" />
      <xs:enumeration value="Aggborough and Spennells" />
      <xs:enumeration value="Areley Kings" />
      <xs:enumeration value="Bewdley and Arley" />
      <xs:enumeration value="Blakedown and Chaddesley" />
      <xs:enumeration value="Broadwaters" />
      <xs:enumeration value="Cookley" />
      <xs:enumeration value="Franche" />
      <xs:enumeration value="Greenhill" />
      <xs:enumeration value="Habberley and Blakebrook" />
      <xs:enumeration value="Lickhill" />
      <xs:enumeration value="Mitton" />
      <xs:enumeration value="Offmore and Comberton" />
      <xs:enumeration value="Oldington and Foley Park" />
      <xs:enumeration value="Rock" />
      <xs:enumeration value="Sutton Park" />
      <xs:enumeration value="Wolverley" />
      <xs:enumeration value="Wribbenhall" />
      <xs:enumeration value="Banagher" />
      <xs:enumeration value="Claudy" />
      <xs:enumeration value="Eglinton" />
      <xs:enumeration value="Holly Mount" />
      <xs:enumeration value="New Buildings" />
      <xs:enumeration value="Enagh" />
      <xs:enumeration value="Caw" />
      <xs:enumeration value="Kilfennan" />
      <xs:enumeration value="Altnagelvin" />
      <xs:enumeration value="Lisnagelvin" />
      <xs:enumeration value="Clondermot" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Ebrington" />
      <xs:enumeration value="Crevagh" />
      <xs:enumeration value="Springtown" />
      <xs:enumeration value="Creggan South" />
      <xs:enumeration value="Brandywell" />
      <xs:enumeration value="The Diamond" />
      <xs:enumeration value="Westland" />
      <xs:enumeration value="Beechwood" />
      <xs:enumeration value="Creggan Central" />
      <xs:enumeration value="Rosemount" />
      <xs:enumeration value="Foyle Springs" />
      <xs:enumeration value="Strand" />
      <xs:enumeration value="Pennyburn" />
      <xs:enumeration value="Carn Hill" />
      <xs:enumeration value="Shantallow West" />
      <xs:enumeration value="Shantallow East" />
      <xs:enumeration value="Ballynashallog" />
      <xs:enumeration value="Culmore" />
      <xs:enumeration value="Magilligan" />
      <xs:enumeration value="Aghanloo" />
      <xs:enumeration value="Forest" />
      <xs:enumeration value="Upper Glenshane" />
      <xs:enumeration value="Feeny" />
      <xs:enumeration value="Dungiven" />
      <xs:enumeration value="The Highlands" />
      <xs:enumeration value="Glack" />
      <xs:enumeration value="Gresteel" />
      <xs:enumeration value="Ballykelly" />
      <xs:enumeration value="Roeside" />
      <xs:enumeration value="Rathbrady" />
      <xs:enumeration value="Enagh" />
      <xs:enumeration value="Coolessan" />
      <xs:enumeration value="Greystone" />
      <xs:enumeration value="Kilrea" />
      <xs:enumeration value="Agivey" />
      <xs:enumeration value="Dundooan" />
      <xs:enumeration value="Knocklynn" />
      <xs:enumeration value="Dunluce" />
      <xs:enumeration value="Royal Portrush" />
      <xs:enumeration value="Hopefield" />
      <xs:enumeration value="Atlantic" />
      <xs:enumeration value="Portstewart" />
      <xs:enumeration value="Strand" />
      <xs:enumeration value="University" />
      <xs:enumeration value="Ballysally" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Cross Glebe" />
      <xs:enumeration value="Mount Sandel" />
      <xs:enumeration value="The Cuts" />
      <xs:enumeration value="Churchland" />
      <xs:enumeration value="Waterside" />
      <xs:enumeration value="Castlerock" />
      <xs:enumeration value="Macosquin" />
      <xs:enumeration value="Ringsend" />
      <xs:enumeration value="Garvagh" />
      <xs:enumeration value="Benvardin" />
      <xs:enumeration value="Seacon" />
      <xs:enumeration value="Dervock" />
      <xs:enumeration value="Stranocum" />
      <xs:enumeration value="Ballyhoe and Corkey" />
      <xs:enumeration value="Knockaholet" />
      <xs:enumeration value="Route" />
      <xs:enumeration value="Glebe" />
      <xs:enumeration value="Newhill" />
      <xs:enumeration value="Carnany" />
      <xs:enumeration value="Fairhill" />
      <xs:enumeration value="The Vow" />
      <xs:enumeration value="Killoquin Lower" />
      <xs:enumeration value="Dunloy" />
      <xs:enumeration value="Clogh Mills" />
      <xs:enumeration value="Killoquin Upper" />
      <xs:enumeration value="Bushmills" />
      <xs:enumeration value="Ballylough" />
      <xs:enumeration value="Dunseverick" />
      <xs:enumeration value="Carnmoon" />
      <xs:enumeration value="Kinbane" />
      <xs:enumeration value="Moss-Side and Moyarget" />
      <xs:enumeration value="Armoy" />
      <xs:enumeration value="Dalriada" />
      <xs:enumeration value="Knocklayd" />
      <xs:enumeration value="Glentaisie" />
      <xs:enumeration value="Bonamargy and Rathlin" />
      <xs:enumeration value="Glenshesk" />
      <xs:enumeration value="Glendun" />
      <xs:enumeration value="Glenaan" />
      <xs:enumeration value="Glenariff" />
      <xs:enumeration value="Carnlough" />
      <xs:enumeration value="Glenarm" />
      <xs:enumeration value="Carncastle" />
      <xs:enumeration value="Blackcave" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Town Parks" />
      <xs:enumeration value="Gardenmore" />
      <xs:enumeration value="Craigy Hill" />
      <xs:enumeration value="Ballyloran" />
      <xs:enumeration value="Antiville" />
      <xs:enumeration value="Kilwaughter" />
      <xs:enumeration value="Glynn" />
      <xs:enumeration value="Ballycarry" />
      <xs:enumeration value="Island Magee" />
      <xs:enumeration value="Glenravel" />
      <xs:enumeration value="Slemish" />
      <xs:enumeration value="Glenwhirry" />
      <xs:enumeration value="Kells" />
      <xs:enumeration value="Grange" />
      <xs:enumeration value="Ahoghill" />
      <xs:enumeration value="Portglenone" />
      <xs:enumeration value="Dunminning" />
      <xs:enumeration value="Craigywarren" />
      <xs:enumeration value="Cullybackey" />
      <xs:enumeration value="Broughshane" />
      <xs:enumeration value="Galgorm" />
      <xs:enumeration value="Academy" />
      <xs:enumeration value="Ballyloughan" />
      <xs:enumeration value="Park" />
      <xs:enumeration value="Dunclug" />
      <xs:enumeration value="Fair Green" />
      <xs:enumeration value="Summerfield" />
      <xs:enumeration value="Castle Demesne" />
      <xs:enumeration value="Ardeevin" />
      <xs:enumeration value="Harryville" />
      <xs:enumeration value="Ballee" />
      <xs:enumeration value="Moat" />
      <xs:enumeration value="Ballykeel" />
      <xs:enumeration value="Swatragh" />
      <xs:enumeration value="Upperlands" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Lower Glenshane" />
      <xs:enumeration value="Maghera" />
      <xs:enumeration value="Gulladuff" />
      <xs:enumeration value="Tobermore" />
      <xs:enumeration value="Knockcloghrim" />
      <xs:enumeration value="Bellaghy" />
      <xs:enumeration value="Castledawson" />
      <xs:enumeration value="Draperstown" />
      <xs:enumeration value="Lecumpher" />
      <xs:enumeration value="Ballymaguigan" />
      <xs:enumeration value="Town Parks West" />
      <xs:enumeration value="Glebe" />
      <xs:enumeration value="Town Parks East" />
      <xs:enumeration value="Dunnamore" />
      <xs:enumeration value="Pomeroy" />
      <xs:enumeration value="Lissan" />
      <xs:enumeration value="Oaklands" />
      <xs:enumeration value="Sandholes" />
      <xs:enumeration value="Moneymore" />
      <xs:enumeration value="Coagh" />
      <xs:enumeration value="Stewartstown" />
      <xs:enumeration value="The Loop" />
      <xs:enumeration value="Ardboe" />
      <xs:enumeration value="Killycolpy" />
      <xs:enumeration value="Oldtown" />
      <xs:enumeration value="Newbuildings" />
      <xs:enumeration value="Tullagh" />
      <xs:enumeration value="Gortalowry" />
      <xs:enumeration value="Killymoon" />
      <xs:enumeration value="Glenderg" />
      <xs:enumeration value="Castlederg" />
      <xs:enumeration value="Clare" />
      <xs:enumeration value="Newtownstewart" />
      <xs:enumeration value="Plumbridge" />
      <xs:enumeration value="Victoria Bridge" />
      <xs:enumeration value="Finn" />
      <xs:enumeration value="Sion Mills" />
      <xs:enumeration value="Dunnamanagh" />
      <xs:enumeration value="Slievekirk" />
      <xs:enumeration value="Artigarvan" />
      <xs:enumeration value="North" />
      <xs:enumeration value="West" />
      <xs:enumeration value="East" />
      <xs:enumeration value="South" />
      <xs:enumeration value="Ballycolman" />
      <xs:enumeration value="Trillick" />
      <xs:enumeration value="Dromore" />
      <xs:enumeration value="Drumquin" />
      <xs:enumeration value="Fairy Water" />
      <xs:enumeration value="Clanabogan" />
      <xs:enumeration value="Fintona" />
      <xs:enumeration value="Newtownsaville" />
      <xs:enumeration value="Sixmilecross" />
      <xs:enumeration value="Beragh" />
      <xs:enumeration value="Drumnakilly" />
      <xs:enumeration value="Termon" />
      <xs:enumeration value="Owenkillew" />
      <xs:enumeration value="Gortin" />
      <xs:enumeration value="Lisanelly" />
      <xs:enumeration value="Killyclogher" />
      <xs:enumeration value="Camowen" />
      <xs:enumeration value="Drumragh" />
      <xs:enumeration value="Dergmoney" />
      <xs:enumeration value="Coolnagard" />
      <xs:enumeration value="Gortrush" />
      <xs:enumeration value="Strule" />
      <xs:enumeration value="Rosslea" />
      <xs:enumeration value="Newtownbutler" />
      <xs:enumeration value="Donagh" />
      <xs:enumeration value="Lisnaskea" />
      <xs:enumeration value="Brookeborough" />
      <xs:enumeration value="Maguires Bridge" />
      <xs:enumeration value="Tempo" />
      <xs:enumeration value="Lisbellaw" />
      <xs:enumeration value="Ballinamallard" />
      <xs:enumeration value="Irvinestown" />
      <xs:enumeration value="Lisnarrick" />
      <xs:enumeration value="Kesh, Ederney and Lack" />
      <xs:enumeration value="Belleek and Boa" />
      <xs:enumeration value="Belcoo and Garrison" />
      <xs:enumeration value="Derrygonnelly" />
      <xs:enumeration value="Boho, Cleenish and Letterbreen" />
      <xs:enumeration value="Florence Court and Kinawley" />
      <xs:enumeration value="Derrylin" />
      <xs:enumeration value="Rossorry" />
      <xs:enumeration value="Portora" />
      <xs:enumeration value="Devenish" />
      <xs:enumeration value="Erne" />
      <xs:enumeration value="Castlecoole" />
      <xs:enumeration value="Fivemiletown" />
      <xs:enumeration value="Clogher" />
      <xs:enumeration value="Augher" />
      <xs:enumeration value="Ballygawley" />
      <xs:enumeration value="Castlecaulfield" />
      <xs:enumeration value="Altmore" />
      <xs:enumeration value="Donaghmore" />
      <xs:enumeration value="Coalisland West and Newmills" />
      <xs:enumeration value="Coalisland North" />
      <xs:enumeration value="Coalisland South" />
      <xs:enumeration value="Washing Bay" />
      <xs:enumeration value="Killyman" />
      <xs:enumeration value="Moy" />
      <xs:enumeration value="Benburb" />
      <xs:enumeration value="Caledon" />
      <xs:enumeration value="Aughnacloy" />
      <xs:enumeration value="Mullaghmore" />
      <xs:enumeration value="Ballysaggart" />
      <xs:enumeration value="Moygashel" />
      <xs:enumeration value="Coolhill" />
      <xs:enumeration value="Killymeal" />
      <xs:enumeration value="Drumglass" />
      <xs:enumeration value="The Birches" />
      <xs:enumeration value="Derrytrasna" />
      <xs:enumeration value="Aghagallon" />
      <xs:enumeration value="Magheralin" />
      <xs:enumeration value="Donaghcloney" />
      <xs:enumeration value="Waringstown" />
      <xs:enumeration value="Bleary" />
      <xs:enumeration value="Ballyoran" />
      <xs:enumeration value="Corcrain" />
      <xs:enumeration value="Ballybay" />
      <xs:enumeration value="Brownstown" />
      <xs:enumeration value="Tavanagh" />
      <xs:enumeration value="Annagh" />
      <xs:enumeration value="Edenderry" />
      <xs:enumeration value="Killycomain" />
      <xs:enumeration value="Kernan" />
      <xs:enumeration value="Drumgor" />
      <xs:enumeration value="Drumgask" />
      <xs:enumeration value="Woodville" />
      <xs:enumeration value="Drumnamoe" />
      <xs:enumeration value="Parklake" />
      <xs:enumeration value="Court" />
      <xs:enumeration value="Taghnevan" />
      <xs:enumeration value="Mourneview" />
      <xs:enumeration value="Church" />
      <xs:enumeration value="Knocknashane" />
      <xs:enumeration value="Charlemont" />
      <xs:enumeration value="Loughgall" />
      <xs:enumeration value="Hockley" />
      <xs:enumeration value="Ballymartrim" />
      <xs:enumeration value="Killylea" />
      <xs:enumeration value="Milford" />
      <xs:enumeration value="Derrynoose" />
      <xs:enumeration value="Keady" />
      <xs:enumeration value="Carrigatuke" />
      <xs:enumeration value="Killeen" />
      <xs:enumeration value="Markethill" />
      <xs:enumeration value="Poyntz Pass" />
      <xs:enumeration value="Tandragee" />
      <xs:enumeration value="Laurelvale" />
      <xs:enumeration value="Rich Hill" />
      <xs:enumeration value="Hamiltonsbawn" />
      <xs:enumeration value="Downs" />
      <xs:enumeration value="Callan Bridge" />
      <xs:enumeration value="Abbey Park" />
      <xs:enumeration value="Observatory" />
      <xs:enumeration value="The Mall" />
      <xs:enumeration value="Demesne" />
      <xs:enumeration value="Annalong" />
      <xs:enumeration value="Binnian" />
      <xs:enumeration value="Kilkeel Central" />
      <xs:enumeration value="Kilkeel South" />
      <xs:enumeration value="Lisnacree" />
      <xs:enumeration value="Rostrevor" />
      <xs:enumeration value="Seaview" />
      <xs:enumeration value="Clonallan" />
      <xs:enumeration value="Derryleckagh" />
      <xs:enumeration value="Burren and Kilbroney" />
      <xs:enumeration value="Spelga" />
      <xs:enumeration value="Mayobridge" />
      <xs:enumeration value="Donaghmore" />
      <xs:enumeration value="Windsor Hill" />
      <xs:enumeration value="St. Patrick's" />
      <xs:enumeration value="St. Mary's" />
      <xs:enumeration value="Drumgullion" />
      <xs:enumeration value="Ballybot" />
      <xs:enumeration value="Daisy Hill" />
      <xs:enumeration value="Drumalane" />
      <xs:enumeration value="Derrymore" />
      <xs:enumeration value="Bessbrook" />
      <xs:enumeration value="Tullyhappy" />
      <xs:enumeration value="Camlough" />
      <xs:enumeration value="Newtownhamilton" />
      <xs:enumeration value="Creggan" />
      <xs:enumeration value="Crossmaglen" />
      <xs:enumeration value="Silver Bridge" />
      <xs:enumeration value="Forkhill" />
      <xs:enumeration value="Fathom" />
      <xs:enumeration value="Gilford" />
      <xs:enumeration value="Lawrencetown" />
      <xs:enumeration value="Loughbrickland" />
      <xs:enumeration value="Bannside" />
      <xs:enumeration value="Katesbridge" />
      <xs:enumeration value="Ballyward" />
      <xs:enumeration value="Gransha" />
      <xs:enumeration value="Dromore South" />
      <xs:enumeration value="Dromore North" />
      <xs:enumeration value="Quilly" />
      <xs:enumeration value="Rathfriland" />
      <xs:enumeration value="Edenderry" />
      <xs:enumeration value="Banbridge West" />
      <xs:enumeration value="Fort" />
      <xs:enumeration value="Ballydown" />
      <xs:enumeration value="Seapatrick" />
      <xs:enumeration value="The Cut" />
      <xs:enumeration value="Saintfield" />
      <xs:enumeration value="Kilmore" />
      <xs:enumeration value="Ballynahinch East" />
      <xs:enumeration value="Ballymaglave" />
      <xs:enumeration value="Drumaness" />
      <xs:enumeration value="Derryboy" />
      <xs:enumeration value="Killyleagh" />
      <xs:enumeration value="Crossgar" />
      <xs:enumeration value="Quoile" />
      <xs:enumeration value="Audleys Acre" />
      <xs:enumeration value="Ballymote" />
      <xs:enumeration value="Cathedral" />
      <xs:enumeration value="Strangford" />
      <xs:enumeration value="Ardglass" />
      <xs:enumeration value="Killough" />
      <xs:enumeration value="Seaforde" />
      <xs:enumeration value="Dunmore" />
      <xs:enumeration value="Castlewellan" />
      <xs:enumeration value="Dundrum" />
      <xs:enumeration value="Murlough" />
      <xs:enumeration value="Shimna" />
      <xs:enumeration value="Donard" />
      <xs:enumeration value="Tollymore" />
      <xs:enumeration value="Glenavy" />
      <xs:enumeration value="Ballinderry" />
      <xs:enumeration value="Moira" />
      <xs:enumeration value="Maghaberry" />
      <xs:enumeration value="Maze" />
      <xs:enumeration value="Hillsborough" />
      <xs:enumeration value="Dromara" />
      <xs:enumeration value="Ballymacbrennan" />
      <xs:enumeration value="Drumbo" />
      <xs:enumeration value="Hillhall" />
      <xs:enumeration value="Blaris" />
      <xs:enumeration value="Knockmore" />
      <xs:enumeration value="Old Warren" />
      <xs:enumeration value="Lagan Valley" />
      <xs:enumeration value="Tonagh" />
      <xs:enumeration value="Ballymacoss" />
      <xs:enumeration value="Ballymacash" />
      <xs:enumeration value="Lisnagarvy" />
      <xs:enumeration value="Wallace Park" />
      <xs:enumeration value="Magheralave" />
      <xs:enumeration value="Harmony Hill" />
      <xs:enumeration value="Hilden" />
      <xs:enumeration value="Lambeg" />
      <xs:enumeration value="Derryaghy" />
      <xs:enumeration value="Seymour Hill" />
      <xs:enumeration value="Dunmurry" />
      <xs:enumeration value="Twinbrook" />
      <xs:enumeration value="Poleglass" />
      <xs:enumeration value="Kilwee" />
      <xs:enumeration value="Collin Glen" />
      <xs:enumeration value="Toome" />
      <xs:enumeration value="Drumanaway" />
      <xs:enumeration value="Cranfield" />
      <xs:enumeration value="Randalstown" />
      <xs:enumeration value="Shilvodan" />
      <xs:enumeration value="Templepatrick" />
      <xs:enumeration value="Farranshane" />
      <xs:enumeration value="Springfarm" />
      <xs:enumeration value="Massereene" />
      <xs:enumeration value="Balloo" />
      <xs:enumeration value="Fountain Hill" />
      <xs:enumeration value="Steeple" />
      <xs:enumeration value="Stiles" />
      <xs:enumeration value="Greystone" />
      <xs:enumeration value="Parkgate" />
      <xs:enumeration value="Ballycraigy" />
      <xs:enumeration value="Clady" />
      <xs:enumeration value="Aldergrove" />
      <xs:enumeration value="Crumlin" />
      <xs:enumeration value="Mallusk" />
      <xs:enumeration value="Doagh" />
      <xs:enumeration value="Ballyclare North" />
      <xs:enumeration value="Ballyclare South" />
      <xs:enumeration value="Ballynure" />
      <xs:enumeration value="Ballyrobert" />
      <xs:enumeration value="Hawthorne" />
      <xs:enumeration value="Jordanstown" />
      <xs:enumeration value="Rostulla" />
      <xs:enumeration value="Monkstown" />
      <xs:enumeration value="Ballyduff" />
      <xs:enumeration value="Carnmoney" />
      <xs:enumeration value="Mossley" />
      <xs:enumeration value="Burnthill" />
      <xs:enumeration value="Cloughfern" />
      <xs:enumeration value="Ballyhenry" />
      <xs:enumeration value="Glengormley" />
      <xs:enumeration value="Glebe" />
      <xs:enumeration value="Hightown" />
      <xs:enumeration value="Collinbridge" />
      <xs:enumeration value="Coole" />
      <xs:enumeration value="Dunanney" />
      <xs:enumeration value="Abbey" />
      <xs:enumeration value="Whitehouse" />
      <xs:enumeration value="Valley" />
      <xs:enumeration value="Blackhead" />
      <xs:enumeration value="Whitehead" />
      <xs:enumeration value="Eden" />
      <xs:enumeration value="Boneybefore" />
      <xs:enumeration value="Bluefield" />
      <xs:enumeration value="Victoria" />
      <xs:enumeration value="Milebush" />
      <xs:enumeration value="Love Lane" />
      <xs:enumeration value="Sunnylands" />
      <xs:enumeration value="Northland" />
      <xs:enumeration value="Clipperstown" />
      <xs:enumeration value="Killycrot" />
      <xs:enumeration value="Woodburn" />
      <xs:enumeration value="Burleigh Hill" />
      <xs:enumeration value="Greenisland" />
      <xs:enumeration value="Gortalee" />
      <xs:enumeration value="Knockagh" />
      <xs:enumeration value="Groomsport" />
      <xs:enumeration value="Churchill" />
      <xs:enumeration value="Ballyholme" />
      <xs:enumeration value="Broadway" />
      <xs:enumeration value="Ballymaconnell" />
      <xs:enumeration value="Ballymagee" />
      <xs:enumeration value="Ballycrochan" />
      <xs:enumeration value="Harbour" />
      <xs:enumeration value="Bangor Castle" />
      <xs:enumeration value="Bloomfield" />
      <xs:enumeration value="Whitehill" />
      <xs:enumeration value="Conlig" />
      <xs:enumeration value="Princetown" />
      <xs:enumeration value="Bryansburn" />
      <xs:enumeration value="Silverstream" />
      <xs:enumeration value="Rathgael" />
      <xs:enumeration value="Clandeboye" />
      <xs:enumeration value="Dufferin" />
      <xs:enumeration value="Spring Hill" />
      <xs:enumeration value="Crawfordsburn" />
      <xs:enumeration value="Craigavad" />
      <xs:enumeration value="Cultra" />
      <xs:enumeration value="Holywood Priory" />
      <xs:enumeration value="Holywood Demesne" />
      <xs:enumeration value="Loughview" />
      <xs:enumeration value="Killinchy" />
      <xs:enumeration value="Ballygowan" />
      <xs:enumeration value="Lisbane" />
      <xs:enumeration value="Comber West" />
      <xs:enumeration value="Comber East" />
      <xs:enumeration value="Comber North" />
      <xs:enumeration value="Scrabo" />
      <xs:enumeration value="Ballyrainey" />
      <xs:enumeration value="Bradshaw's Brae" />
      <xs:enumeration value="Glen" />
      <xs:enumeration value="Whitespots" />
      <xs:enumeration value="Movilla" />
      <xs:enumeration value="Central" />
      <xs:enumeration value="Gregstown" />
      <xs:enumeration value="Loughries" />
      <xs:enumeration value="Donaghadee North" />
      <xs:enumeration value="Donaghadee South" />
      <xs:enumeration value="Millisle" />
      <xs:enumeration value="Carrowdore" />
      <xs:enumeration value="Ballywalter" />
      <xs:enumeration value="Portavogie" />
      <xs:enumeration value="Kircubbin" />
      <xs:enumeration value="Portaferry" />
      <xs:enumeration value="Dundonald" />
      <xs:enumeration value="Carrowreagh" />
      <xs:enumeration value="Enler" />
      <xs:enumeration value="Graham's Bridge" />
      <xs:enumeration value="Ballyhanwood" />
      <xs:enumeration value="Tullycarnet" />
      <xs:enumeration value="Gilnahirk" />
      <xs:enumeration value="Upper Braniel" />
      <xs:enumeration value="Moneyreagh" />
      <xs:enumeration value="Galwally" />
      <xs:enumeration value="Lower Braniel" />
      <xs:enumeration value="Hillfoot" />
      <xs:enumeration value="Lisnasharragh" />
      <xs:enumeration value="Downshire" />
      <xs:enumeration value="Cregagh" />
      <xs:enumeration value="Wynchurch" />
      <xs:enumeration value="Newtownbreda" />
      <xs:enumeration value="Cairnshill" />
      <xs:enumeration value="Knockbracken" />
      <xs:enumeration value="Carryduff West" />
      <xs:enumeration value="Carryduff East" />
      <xs:enumeration value="Beechill" />
      <xs:enumeration value="Minnowburn" />
      <xs:enumeration value="Sydenham" />
      <xs:enumeration value="Island" />
      <xs:enumeration value="Ballymacarrett" />
      <xs:enumeration value="Bloomfield" />
      <xs:enumeration value="Ballyhackamore" />
      <xs:enumeration value="Belmont" />
      <xs:enumeration value="Stormont" />
      <xs:enumeration value="Cherryvalley" />
      <xs:enumeration value="Knock" />
      <xs:enumeration value="Orangefield" />
      <xs:enumeration value="The Mount" />
      <xs:enumeration value="Woodstock" />
      <xs:enumeration value="Ravenhill" />
      <xs:enumeration value="Ballynafeigh" />
      <xs:enumeration value="Rosetta" />
      <xs:enumeration value="Upper Malone" />
      <xs:enumeration value="Finaghy" />
      <xs:enumeration value="Musgrave" />
      <xs:enumeration value="Blackstaff" />
      <xs:enumeration value="Malone" />
      <xs:enumeration value="Stranmillis" />
      <xs:enumeration value="Windsor" />
      <xs:enumeration value="Botanic" />
      <xs:enumeration value="Shaftesbury" />
      <xs:enumeration value="Ladybrook" />
      <xs:enumeration value="Glencolin" />
      <xs:enumeration value="Andersonstown" />
      <xs:enumeration value="Glen Road" />
      <xs:enumeration value="Falls Park" />
      <xs:enumeration value="Upper Springfield" />
      <xs:enumeration value="Whiterock" />
      <xs:enumeration value="Beechmount" />
      <xs:enumeration value="Highfield" />
      <xs:enumeration value="Glencairn" />
      <xs:enumeration value="Woodvale" />
      <xs:enumeration value="Crumlin" />
      <xs:enumeration value="Shankill" />
      <xs:enumeration value="Clonard" />
      <xs:enumeration value="Falls" />
      <xs:enumeration value="New Lodge" />
      <xs:enumeration value="Duncairn" />
      <xs:enumeration value="Water Works" />
      <xs:enumeration value="Ardoyne" />
      <xs:enumeration value="Legoniel" />
      <xs:enumeration value="Ballysillan" />
      <xs:enumeration value="Cliftonville" />
      <xs:enumeration value="Chichester Park" />
      <xs:enumeration value="Fortwilliam" />
      <xs:enumeration value="Cavehill" />
      <xs:enumeration value="Castleview" />
      <xs:enumeration value="Bellevue" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSParliamentaryConstituencyCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="001">
        <xs:annotation>
          <xs:documentation>Aldershot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="002">
        <xs:annotation>
          <xs:documentation>Aldridge-Brownhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="003">
        <xs:annotation>
          <xs:documentation>Altrincham and Sale West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="004">
        <xs:annotation>
          <xs:documentation>Amber Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="005">
        <xs:annotation>
          <xs:documentation>Arundel and South Downs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="006">
        <xs:annotation>
          <xs:documentation>Ashfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="007">
        <xs:annotation>
          <xs:documentation>Ashford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="008">
        <xs:annotation>
          <xs:documentation>Ashton under Lyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="009">
        <xs:annotation>
          <xs:documentation>Aylesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="010">
        <xs:annotation>
          <xs:documentation>Banbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="011">
        <xs:annotation>
          <xs:documentation>Barking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="012">
        <xs:annotation>
          <xs:documentation>Barnsley Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="013">
        <xs:annotation>
          <xs:documentation>Barnsley East and Mexborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="014">
        <xs:annotation>
          <xs:documentation>Barnsley West and Penistone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="015">
        <xs:annotation>
          <xs:documentation>Barrow and Furness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="016">
        <xs:annotation>
          <xs:documentation>Basildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="017">
        <xs:annotation>
          <xs:documentation>Basingstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="018">
        <xs:annotation>
          <xs:documentation>Bassetlaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="019">
        <xs:annotation>
          <xs:documentation>Bath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="020">
        <xs:annotation>
          <xs:documentation>Batley and Spen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="021">
        <xs:annotation>
          <xs:documentation>Battersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="022">
        <xs:annotation>
          <xs:documentation>Beaconsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="023">
        <xs:annotation>
          <xs:documentation>Beckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="024">
        <xs:annotation>
          <xs:documentation>Bedford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="025">
        <xs:annotation>
          <xs:documentation>Berwick-upon-Tweed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="026">
        <xs:annotation>
          <xs:documentation>Bethnal Green and Bow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="027">
        <xs:annotation>
          <xs:documentation>Beverley and Holderness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="028">
        <xs:annotation>
          <xs:documentation>Bexhill and Battle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="029">
        <xs:annotation>
          <xs:documentation>Bexleyheath and Crayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="030">
        <xs:annotation>
          <xs:documentation>Billericay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="031">
        <xs:annotation>
          <xs:documentation>Birkenhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="032">
        <xs:annotation>
          <xs:documentation>Birmingham, Edgbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="033">
        <xs:annotation>
          <xs:documentation>Birmingham, Erdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="034">
        <xs:annotation>
          <xs:documentation>Birmingham, Hall Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="035">
        <xs:annotation>
          <xs:documentation>Birmingham, Hodge Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="036">
        <xs:annotation>
          <xs:documentation>Birmingham, Ladywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="037">
        <xs:annotation>
          <xs:documentation>Birmingham, Northfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="038">
        <xs:annotation>
          <xs:documentation>Birmingham, Perry Barr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="039">
        <xs:annotation>
          <xs:documentation>Birmingham, Selly Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="040">
        <xs:annotation>
          <xs:documentation>Birmingham, Sparkbrook and Small Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="041">
        <xs:annotation>
          <xs:documentation>Birmingham, Yardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="042">
        <xs:annotation>
          <xs:documentation>Bishop Auckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="043">
        <xs:annotation>
          <xs:documentation>Blaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="044">
        <xs:annotation>
          <xs:documentation>Blackburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="045">
        <xs:annotation>
          <xs:documentation>Blackpool North and Fleetwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="046">
        <xs:annotation>
          <xs:documentation>Blackpool South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="047">
        <xs:annotation>
          <xs:documentation>Blaydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="048">
        <xs:annotation>
          <xs:documentation>Blyth Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="049">
        <xs:annotation>
          <xs:documentation>Bognor Regis and Littlehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="050">
        <xs:annotation>
          <xs:documentation>Bolsover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="051">
        <xs:annotation>
          <xs:documentation>Bolton North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="052">
        <xs:annotation>
          <xs:documentation>Bolton South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="053">
        <xs:annotation>
          <xs:documentation>Bolton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="054">
        <xs:annotation>
          <xs:documentation>Bootle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="055">
        <xs:annotation>
          <xs:documentation>Boston and Skegness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="056">
        <xs:annotation>
          <xs:documentation>Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="057">
        <xs:annotation>
          <xs:documentation>Bournemouth East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="058">
        <xs:annotation>
          <xs:documentation>Bournemouth West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="059">
        <xs:annotation>
          <xs:documentation>Bracknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="060">
        <xs:annotation>
          <xs:documentation>Bradford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="061">
        <xs:annotation>
          <xs:documentation>Bradford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="062">
        <xs:annotation>
          <xs:documentation>Bradford West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="063">
        <xs:annotation>
          <xs:documentation>Braintree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="064">
        <xs:annotation>
          <xs:documentation>Brent East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="065">
        <xs:annotation>
          <xs:documentation>Brent North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="066">
        <xs:annotation>
          <xs:documentation>Brent South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="067">
        <xs:annotation>
          <xs:documentation>Brentford and Isleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="068">
        <xs:annotation>
          <xs:documentation>Brentwood and Ongar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="069">
        <xs:annotation>
          <xs:documentation>Bridgwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="070">
        <xs:annotation>
          <xs:documentation>Brigg and Goole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="071">
        <xs:annotation>
          <xs:documentation>Brighton, Kemptown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="072">
        <xs:annotation>
          <xs:documentation>Brighton, Pavilion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="073">
        <xs:annotation>
          <xs:documentation>Bristol East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="074">
        <xs:annotation>
          <xs:documentation>Bristol North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="075">
        <xs:annotation>
          <xs:documentation>Bristol South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="076">
        <xs:annotation>
          <xs:documentation>Bristol West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="077">
        <xs:annotation>
          <xs:documentation>Bromley and Chislehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="078">
        <xs:annotation>
          <xs:documentation>Bromsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="079">
        <xs:annotation>
          <xs:documentation>Broxbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="080">
        <xs:annotation>
          <xs:documentation>Broxtowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="081">
        <xs:annotation>
          <xs:documentation>Buckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="082">
        <xs:annotation>
          <xs:documentation>Burnley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="083">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="084">
        <xs:annotation>
          <xs:documentation>Bury North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="085">
        <xs:annotation>
          <xs:documentation>Bury South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="086">
        <xs:annotation>
          <xs:documentation>Bury St. Edmunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="087">
        <xs:annotation>
          <xs:documentation>Calder Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="088">
        <xs:annotation>
          <xs:documentation>Camberwell and Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="089">
        <xs:annotation>
          <xs:documentation>Cambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="090">
        <xs:annotation>
          <xs:documentation>Cannock Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="091">
        <xs:annotation>
          <xs:documentation>Canterbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="092">
        <xs:annotation>
          <xs:documentation>Carlisle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="093">
        <xs:annotation>
          <xs:documentation>Carshalton and Wallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="094">
        <xs:annotation>
          <xs:documentation>Castle Point</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="095">
        <xs:annotation>
          <xs:documentation>Central Suffolk and North Ipswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="096">
        <xs:annotation>
          <xs:documentation>Charnwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="097">
        <xs:annotation>
          <xs:documentation>Chatham and Aylesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="098">
        <xs:annotation>
          <xs:documentation>Cheadle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="099">
        <xs:annotation>
          <xs:documentation>Cheltenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="100">
        <xs:annotation>
          <xs:documentation>Chesham and Amersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="101">
        <xs:annotation>
          <xs:documentation>Chesterfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="102">
        <xs:annotation>
          <xs:documentation>Chichester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="103">
        <xs:annotation>
          <xs:documentation>Chingford and Woodford Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="104">
        <xs:annotation>
          <xs:documentation>Chipping Barnet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="105">
        <xs:annotation>
          <xs:documentation>Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="106">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="107">
        <xs:annotation>
          <xs:documentation>Cities of London and Westminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="108">
        <xs:annotation>
          <xs:documentation>City of Chester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="109">
        <xs:annotation>
          <xs:documentation>City of Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="110">
        <xs:annotation>
          <xs:documentation>City of York</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="111">
        <xs:annotation>
          <xs:documentation>Cleethorpes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="112">
        <xs:annotation>
          <xs:documentation>Colchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="113">
        <xs:annotation>
          <xs:documentation>Colne Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="114">
        <xs:annotation>
          <xs:documentation>Congleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="115">
        <xs:annotation>
          <xs:documentation>Copeland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="116">
        <xs:annotation>
          <xs:documentation>Corby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="117">
        <xs:annotation>
          <xs:documentation>Cotswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="118">
        <xs:annotation>
          <xs:documentation>Coventry North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="119">
        <xs:annotation>
          <xs:documentation>Coventry North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="120">
        <xs:annotation>
          <xs:documentation>Coventry South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="121">
        <xs:annotation>
          <xs:documentation>Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="122">
        <xs:annotation>
          <xs:documentation>Crewe and Nantwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="123">
        <xs:annotation>
          <xs:documentation>Crosby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="124">
        <xs:annotation>
          <xs:documentation>Croydon Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="125">
        <xs:annotation>
          <xs:documentation>Croydon North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="126">
        <xs:annotation>
          <xs:documentation>Croydon South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="127">
        <xs:annotation>
          <xs:documentation>Dagenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="128">
        <xs:annotation>
          <xs:documentation>Darlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="129">
        <xs:annotation>
          <xs:documentation>Dartford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="130">
        <xs:annotation>
          <xs:documentation>Daventry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="131">
        <xs:annotation>
          <xs:documentation>Denton and Reddish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="132">
        <xs:annotation>
          <xs:documentation>Derby North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="133">
        <xs:annotation>
          <xs:documentation>Derby South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="134">
        <xs:annotation>
          <xs:documentation>Devizes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="135">
        <xs:annotation>
          <xs:documentation>Dewsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="136">
        <xs:annotation>
          <xs:documentation>Doncaster Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="137">
        <xs:annotation>
          <xs:documentation>Doncaster North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="138">
        <xs:annotation>
          <xs:documentation>Don Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="139">
        <xs:annotation>
          <xs:documentation>Dover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="140">
        <xs:annotation>
          <xs:documentation>Dudley North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="141">
        <xs:annotation>
          <xs:documentation>Dudley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="142">
        <xs:annotation>
          <xs:documentation>Dulwich and West Norwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="143">
        <xs:annotation>
          <xs:documentation>Ealing, Acton and Shepherd's Bush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="144">
        <xs:annotation>
          <xs:documentation>Ealing North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="145">
        <xs:annotation>
          <xs:documentation>Ealing, Southall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="146">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="147">
        <xs:annotation>
          <xs:documentation>East Devon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="148">
        <xs:annotation>
          <xs:documentation>East Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="149">
        <xs:annotation>
          <xs:documentation>East Hampshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="150">
        <xs:annotation>
          <xs:documentation>East Surrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="151">
        <xs:annotation>
          <xs:documentation>East Worthing and Shoreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="152">
        <xs:annotation>
          <xs:documentation>East Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="153">
        <xs:annotation>
          <xs:documentation>Eastbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="154">
        <xs:annotation>
          <xs:documentation>Eastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="155">
        <xs:annotation>
          <xs:documentation>Eccles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="156">
        <xs:annotation>
          <xs:documentation>Eddisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="157">
        <xs:annotation>
          <xs:documentation>Edmonton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="158">
        <xs:annotation>
          <xs:documentation>Ellesmere Port and Neston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="159">
        <xs:annotation>
          <xs:documentation>Elmet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="160">
        <xs:annotation>
          <xs:documentation>Eltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="161">
        <xs:annotation>
          <xs:documentation>Enfield North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="162">
        <xs:annotation>
          <xs:documentation>Enfield, Southgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="163">
        <xs:annotation>
          <xs:documentation>Epping Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="164">
        <xs:annotation>
          <xs:documentation>Epsom and Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="165">
        <xs:annotation>
          <xs:documentation>Erewash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="166">
        <xs:annotation>
          <xs:documentation>Erith and Thamesmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="167">
        <xs:annotation>
          <xs:documentation>Esher and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="168">
        <xs:annotation>
          <xs:documentation>Exeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="169">
        <xs:annotation>
          <xs:documentation>Falmouth and Camborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="170">
        <xs:annotation>
          <xs:documentation>Fareham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="171">
        <xs:annotation>
          <xs:documentation>Faversham and Mid Kent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="172">
        <xs:annotation>
          <xs:documentation>Feltham and Heston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="173">
        <xs:annotation>
          <xs:documentation>Finchley and Golders Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="174">
        <xs:annotation>
          <xs:documentation>Folkestone and Hythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="175">
        <xs:annotation>
          <xs:documentation>Forest of Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="176">
        <xs:annotation>
          <xs:documentation>Fylde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="177">
        <xs:annotation>
          <xs:documentation>Gainsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="178">
        <xs:annotation>
          <xs:documentation>Gateshead East and Washington West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="179">
        <xs:annotation>
          <xs:documentation>Gedling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="180">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="181">
        <xs:annotation>
          <xs:documentation>Gloucester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="182">
        <xs:annotation>
          <xs:documentation>Gosport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="183">
        <xs:annotation>
          <xs:documentation>Grantham and Stamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="184">
        <xs:annotation>
          <xs:documentation>Gravesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="185">
        <xs:annotation>
          <xs:documentation>Great Grimsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="186">
        <xs:annotation>
          <xs:documentation>Great Yarmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="187">
        <xs:annotation>
          <xs:documentation>Greenwich and Woolwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="188">
        <xs:annotation>
          <xs:documentation>Guildford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="189">
        <xs:annotation>
          <xs:documentation>Hackney North and Stoke Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="190">
        <xs:annotation>
          <xs:documentation>Hackney South and Shoreditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="191">
        <xs:annotation>
          <xs:documentation>Halesowen and Rowley Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="192">
        <xs:annotation>
          <xs:documentation>Halifax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="193">
        <xs:annotation>
          <xs:documentation>Haltemprice and Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="194">
        <xs:annotation>
          <xs:documentation>Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="195">
        <xs:annotation>
          <xs:documentation>Hammersmith and Fulham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="196">
        <xs:annotation>
          <xs:documentation>Hampstead and Highgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="197">
        <xs:annotation>
          <xs:documentation>Harborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="198">
        <xs:annotation>
          <xs:documentation>Harlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="199">
        <xs:annotation>
          <xs:documentation>Harrogate and Knaresborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="200">
        <xs:annotation>
          <xs:documentation>Harrow East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="201">
        <xs:annotation>
          <xs:documentation>Harrow West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="202">
        <xs:annotation>
          <xs:documentation>Hartlepool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="203">
        <xs:annotation>
          <xs:documentation>Harwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="204">
        <xs:annotation>
          <xs:documentation>Hastings and Rye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="205">
        <xs:annotation>
          <xs:documentation>Havant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="206">
        <xs:annotation>
          <xs:documentation>Hayes and Harlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="207">
        <xs:annotation>
          <xs:documentation>Hazel Grove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="208">
        <xs:annotation>
          <xs:documentation>Hemel Hempstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="209">
        <xs:annotation>
          <xs:documentation>Hemsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="210">
        <xs:annotation>
          <xs:documentation>Hendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="211">
        <xs:annotation>
          <xs:documentation>Henley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="212">
        <xs:annotation>
          <xs:documentation>Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="213">
        <xs:annotation>
          <xs:documentation>Hertford and Stortford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="214">
        <xs:annotation>
          <xs:documentation>Hertsmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="215">
        <xs:annotation>
          <xs:documentation>Hexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="216">
        <xs:annotation>
          <xs:documentation>Heywood and Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="217">
        <xs:annotation>
          <xs:documentation>High Peak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="218">
        <xs:annotation>
          <xs:documentation>Hitchin and Harpenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="219">
        <xs:annotation>
          <xs:documentation>Holborn and St. Pancras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="220">
        <xs:annotation>
          <xs:documentation>Hornchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="221">
        <xs:annotation>
          <xs:documentation>Hornsey and Wood Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="222">
        <xs:annotation>
          <xs:documentation>Horsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="223">
        <xs:annotation>
          <xs:documentation>Houghton and Washington East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="224">
        <xs:annotation>
          <xs:documentation>Hove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="225">
        <xs:annotation>
          <xs:documentation>Huddersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="226">
        <xs:annotation>
          <xs:documentation>Huntingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="227">
        <xs:annotation>
          <xs:documentation>Hyndburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="228">
        <xs:annotation>
          <xs:documentation>Ilford North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="229">
        <xs:annotation>
          <xs:documentation>Ilford South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="230">
        <xs:annotation>
          <xs:documentation>Ipswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="231">
        <xs:annotation>
          <xs:documentation>Isle of Wight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="232">
        <xs:annotation>
          <xs:documentation>Islington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="233">
        <xs:annotation>
          <xs:documentation>Islington South and Finsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="234">
        <xs:annotation>
          <xs:documentation>Jarrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="235">
        <xs:annotation>
          <xs:documentation>Keighley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="236">
        <xs:annotation>
          <xs:documentation>Kensington and Chelsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="237">
        <xs:annotation>
          <xs:documentation>Kettering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="238">
        <xs:annotation>
          <xs:documentation>Kingston and Surbiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="239">
        <xs:annotation>
          <xs:documentation>Kingston upon Hull East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="240">
        <xs:annotation>
          <xs:documentation>Kingston upon Hull North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="241">
        <xs:annotation>
          <xs:documentation>Kingston upon Hull West and Hessle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="242">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="243">
        <xs:annotation>
          <xs:documentation>Knowsley North and Sefton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="244">
        <xs:annotation>
          <xs:documentation>Knowsley South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="245">
        <xs:annotation>
          <xs:documentation>Lancaster and Wyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="246">
        <xs:annotation>
          <xs:documentation>Leeds Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="247">
        <xs:annotation>
          <xs:documentation>Leeds East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="248">
        <xs:annotation>
          <xs:documentation>Leeds North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="249">
        <xs:annotation>
          <xs:documentation>Leeds North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="250">
        <xs:annotation>
          <xs:documentation>Leeds West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="251">
        <xs:annotation>
          <xs:documentation>Leicester East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="252">
        <xs:annotation>
          <xs:documentation>Leicester South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="253">
        <xs:annotation>
          <xs:documentation>Leicester West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="254">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="255">
        <xs:annotation>
          <xs:documentation>Leominster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="256">
        <xs:annotation>
          <xs:documentation>Lewes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="257">
        <xs:annotation>
          <xs:documentation>Lewisham, Deptford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="258">
        <xs:annotation>
          <xs:documentation>Lewisham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="259">
        <xs:annotation>
          <xs:documentation>Lewisham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="260">
        <xs:annotation>
          <xs:documentation>Leyton and Wanstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="261">
        <xs:annotation>
          <xs:documentation>Lichfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="262">
        <xs:annotation>
          <xs:documentation>Lincoln</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="263">
        <xs:annotation>
          <xs:documentation>Liverpool, Garston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="264">
        <xs:annotation>
          <xs:documentation>Liverpool, Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="265">
        <xs:annotation>
          <xs:documentation>Liverpool, Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="266">
        <xs:annotation>
          <xs:documentation>Liverpool, Wavertree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="267">
        <xs:annotation>
          <xs:documentation>Liverpool, West Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="268">
        <xs:annotation>
          <xs:documentation>Loughborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="269">
        <xs:annotation>
          <xs:documentation>Louth and Horncastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="270">
        <xs:annotation>
          <xs:documentation>Ludlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="271">
        <xs:annotation>
          <xs:documentation>Luton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="272">
        <xs:annotation>
          <xs:documentation>Luton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="273">
        <xs:annotation>
          <xs:documentation>Macclesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="274">
        <xs:annotation>
          <xs:documentation>Maidenhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="275">
        <xs:annotation>
          <xs:documentation>Maidstone and The Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="276">
        <xs:annotation>
          <xs:documentation>Makerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="277">
        <xs:annotation>
          <xs:documentation>Maldon and East Chelmsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="278">
        <xs:annotation>
          <xs:documentation>Manchester, Blackley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="279">
        <xs:annotation>
          <xs:documentation>Manchester Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="280">
        <xs:annotation>
          <xs:documentation>Manchester, Gorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="281">
        <xs:annotation>
          <xs:documentation>Manchester, Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="282">
        <xs:annotation>
          <xs:documentation>Mansfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="283">
        <xs:annotation>
          <xs:documentation>Medway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="284">
        <xs:annotation>
          <xs:documentation>Meriden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="285">
        <xs:annotation>
          <xs:documentation>Mid Bedfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="286">
        <xs:annotation>
          <xs:documentation>Mid Dorset and North Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="287">
        <xs:annotation>
          <xs:documentation>Mid Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="288">
        <xs:annotation>
          <xs:documentation>Mid Sussex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="289">
        <xs:annotation>
          <xs:documentation>Mid Worcestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="290">
        <xs:annotation>
          <xs:documentation>Middlesbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="291">
        <xs:annotation>
          <xs:documentation>Middlesbrough South and East Cleveland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="292">
        <xs:annotation>
          <xs:documentation>Milton Keynes South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="293">
        <xs:annotation>
          <xs:documentation>Mitcham and Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="294">
        <xs:annotation>
          <xs:documentation>Mole Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="295">
        <xs:annotation>
          <xs:documentation>Morecambe and Lunesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="296">
        <xs:annotation>
          <xs:documentation>Morley and Rothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="297">
        <xs:annotation>
          <xs:documentation>New Forest East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="298">
        <xs:annotation>
          <xs:documentation>New Forest West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="299">
        <xs:annotation>
          <xs:documentation>Newark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="300">
        <xs:annotation>
          <xs:documentation>Newbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="301">
        <xs:annotation>
          <xs:documentation>Newcastle upon Tyne Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="302">
        <xs:annotation>
          <xs:documentation>Newcastle upon Tyne East and Wallsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="303">
        <xs:annotation>
          <xs:documentation>Newcastle upon Tyne North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="304">
        <xs:annotation>
          <xs:documentation>Newcastle-under-Lyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="305">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="306">
        <xs:annotation>
          <xs:documentation>North Cornwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="307">
        <xs:annotation>
          <xs:documentation>North Devon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="308">
        <xs:annotation>
          <xs:documentation>North Dorset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="309">
        <xs:annotation>
          <xs:documentation>North Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="310">
        <xs:annotation>
          <xs:documentation>North East Bedfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="311">
        <xs:annotation>
          <xs:documentation>North East Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="312">
        <xs:annotation>
          <xs:documentation>North East Derbyshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="313">
        <xs:annotation>
          <xs:documentation>North East Hampshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="314">
        <xs:annotation>
          <xs:documentation>North East Hertfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="315">
        <xs:annotation>
          <xs:documentation>North East Milton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="316">
        <xs:annotation>
          <xs:documentation>North Essex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="317">
        <xs:annotation>
          <xs:documentation>North Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="318">
        <xs:annotation>
          <xs:documentation>North Shropshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="319">
        <xs:annotation>
          <xs:documentation>North Southwark and Bermondsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="320">
        <xs:annotation>
          <xs:documentation>North Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="321">
        <xs:annotation>
          <xs:documentation>North Thanet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="322">
        <xs:annotation>
          <xs:documentation>North Tyneside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="323">
        <xs:annotation>
          <xs:documentation>North Warwickshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="324">
        <xs:annotation>
          <xs:documentation>North West Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="325">
        <xs:annotation>
          <xs:documentation>North West Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="326">
        <xs:annotation>
          <xs:documentation>North West Hampshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="327">
        <xs:annotation>
          <xs:documentation>North West Leicestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="328">
        <xs:annotation>
          <xs:documentation>North West Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="329">
        <xs:annotation>
          <xs:documentation>North Wiltshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="330">
        <xs:annotation>
          <xs:documentation>Northampton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="331">
        <xs:annotation>
          <xs:documentation>Northampton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="332">
        <xs:annotation>
          <xs:documentation>Northavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="333">
        <xs:annotation>
          <xs:documentation>Norwich North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="334">
        <xs:annotation>
          <xs:documentation>Norwich South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="335">
        <xs:annotation>
          <xs:documentation>Nottingham East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="336">
        <xs:annotation>
          <xs:documentation>Nottingham North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="337">
        <xs:annotation>
          <xs:documentation>Nottingham South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="338">
        <xs:annotation>
          <xs:documentation>Nuneaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="339">
        <xs:annotation>
          <xs:documentation>Old Bexley and Sidcup</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="340">
        <xs:annotation>
          <xs:documentation>Oldham East and Saddleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="341">
        <xs:annotation>
          <xs:documentation>Oldham West and Royton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="342">
        <xs:annotation>
          <xs:documentation>Orpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="343">
        <xs:annotation>
          <xs:documentation>Oxford East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="344">
        <xs:annotation>
          <xs:documentation>Oxford West and Abingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="345">
        <xs:annotation>
          <xs:documentation>Pendle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="346">
        <xs:annotation>
          <xs:documentation>Penrith and The Border</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="347">
        <xs:annotation>
          <xs:documentation>Peterborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="348">
        <xs:annotation>
          <xs:documentation>Plymouth, Devonport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="349">
        <xs:annotation>
          <xs:documentation>Plymouth, Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="350">
        <xs:annotation>
          <xs:documentation>Pontefract and Castleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="351">
        <xs:annotation>
          <xs:documentation>Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="352">
        <xs:annotation>
          <xs:documentation>Poplar and Canning Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="353">
        <xs:annotation>
          <xs:documentation>Portsmouth North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="354">
        <xs:annotation>
          <xs:documentation>Portsmouth South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="355">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="356">
        <xs:annotation>
          <xs:documentation>Pudsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="357">
        <xs:annotation>
          <xs:documentation>Putney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="358">
        <xs:annotation>
          <xs:documentation>Rayleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="359">
        <xs:annotation>
          <xs:documentation>Reading East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="360">
        <xs:annotation>
          <xs:documentation>Reading West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="361">
        <xs:annotation>
          <xs:documentation>Redcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="362">
        <xs:annotation>
          <xs:documentation>Redditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="363">
        <xs:annotation>
          <xs:documentation>Regent's Park and North Kensington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="364">
        <xs:annotation>
          <xs:documentation>Reigate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="365">
        <xs:annotation>
          <xs:documentation>Ribble Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="366">
        <xs:annotation>
          <xs:documentation>Richmond (Yorks)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="367">
        <xs:annotation>
          <xs:documentation>Richmond Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="368">
        <xs:annotation>
          <xs:documentation>Rochdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="369">
        <xs:annotation>
          <xs:documentation>Rochford and Southend East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="370">
        <xs:annotation>
          <xs:documentation>Romford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="371">
        <xs:annotation>
          <xs:documentation>Romsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="372">
        <xs:annotation>
          <xs:documentation>Rossendale and Darwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="373">
        <xs:annotation>
          <xs:documentation>Rother Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="374">
        <xs:annotation>
          <xs:documentation>Rotherham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="375">
        <xs:annotation>
          <xs:documentation>Rugby and Kenilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="376">
        <xs:annotation>
          <xs:documentation>Ruislip-Northwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="377">
        <xs:annotation>
          <xs:documentation>Runnymede and Weybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="378">
        <xs:annotation>
          <xs:documentation>Rushcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="379">
        <xs:annotation>
          <xs:documentation>Rutland and Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="380">
        <xs:annotation>
          <xs:documentation>Ryedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="381">
        <xs:annotation>
          <xs:documentation>Saffron Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="382">
        <xs:annotation>
          <xs:documentation>St. Albans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="383">
        <xs:annotation>
          <xs:documentation>St. Helens North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="384">
        <xs:annotation>
          <xs:documentation>St. Helens South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="385">
        <xs:annotation>
          <xs:documentation>St. Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="386">
        <xs:annotation>
          <xs:documentation>Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="387">
        <xs:annotation>
          <xs:documentation>Salisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="388">
        <xs:annotation>
          <xs:documentation>Scarborough and Whitby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="389">
        <xs:annotation>
          <xs:documentation>Scunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="390">
        <xs:annotation>
          <xs:documentation>Sedgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="391">
        <xs:annotation>
          <xs:documentation>Selby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="392">
        <xs:annotation>
          <xs:documentation>Sevenoaks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="393">
        <xs:annotation>
          <xs:documentation>Sheffield, Attercliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="394">
        <xs:annotation>
          <xs:documentation>Sheffield, Brightside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="395">
        <xs:annotation>
          <xs:documentation>Sheffield Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="396">
        <xs:annotation>
          <xs:documentation>Sheffield, Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="397">
        <xs:annotation>
          <xs:documentation>Sheffield, Heeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="398">
        <xs:annotation>
          <xs:documentation>Sheffield, Hillsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="399">
        <xs:annotation>
          <xs:documentation>Sherwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="400">
        <xs:annotation>
          <xs:documentation>Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="401">
        <xs:annotation>
          <xs:documentation>Shrewsbury and Atcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="402">
        <xs:annotation>
          <xs:documentation>Sittingbourne and Sheppey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="403">
        <xs:annotation>
          <xs:documentation>Skipton and Ripon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="404">
        <xs:annotation>
          <xs:documentation>Sleaford and North Hykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="405">
        <xs:annotation>
          <xs:documentation>Slough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="406">
        <xs:annotation>
          <xs:documentation>Solihull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="407">
        <xs:annotation>
          <xs:documentation>Somerton and Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="408">
        <xs:annotation>
          <xs:documentation>South Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="409">
        <xs:annotation>
          <xs:documentation>South Derbyshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="410">
        <xs:annotation>
          <xs:documentation>South Dorset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="411">
        <xs:annotation>
          <xs:documentation>South East Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="412">
        <xs:annotation>
          <xs:documentation>South East Cornwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="413">
        <xs:annotation>
          <xs:documentation>South Holland and The Deepings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="414">
        <xs:annotation>
          <xs:documentation>South Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="415">
        <xs:annotation>
          <xs:documentation>South Ribble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="416">
        <xs:annotation>
          <xs:documentation>South Shields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="417">
        <xs:annotation>
          <xs:documentation>South Staffordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="418">
        <xs:annotation>
          <xs:documentation>South Suffolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="419">
        <xs:annotation>
          <xs:documentation>South Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="420">
        <xs:annotation>
          <xs:documentation>South Thanet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="421">
        <xs:annotation>
          <xs:documentation>South West Bedfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="422">
        <xs:annotation>
          <xs:documentation>South West Devon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="423">
        <xs:annotation>
          <xs:documentation>South West Hertfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="424">
        <xs:annotation>
          <xs:documentation>South West Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="425">
        <xs:annotation>
          <xs:documentation>South West Surrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="426">
        <xs:annotation>
          <xs:documentation>Southampton, Itchen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="427">
        <xs:annotation>
          <xs:documentation>Southampton, Test</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="428">
        <xs:annotation>
          <xs:documentation>Southend West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="429">
        <xs:annotation>
          <xs:documentation>Southport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="430">
        <xs:annotation>
          <xs:documentation>Spelthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="431">
        <xs:annotation>
          <xs:documentation>Stafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="432">
        <xs:annotation>
          <xs:documentation>Staffordshire Moorlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="433">
        <xs:annotation>
          <xs:documentation>Stalybridge and Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="434">
        <xs:annotation>
          <xs:documentation>Stevenage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="435">
        <xs:annotation>
          <xs:documentation>Stockport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="436">
        <xs:annotation>
          <xs:documentation>Stockton North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="437">
        <xs:annotation>
          <xs:documentation>Stockton South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="438">
        <xs:annotation>
          <xs:documentation>Stoke-on-Trent Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="439">
        <xs:annotation>
          <xs:documentation>Stoke-on-Trent North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="440">
        <xs:annotation>
          <xs:documentation>Stoke-on-Trent South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="441">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="442">
        <xs:annotation>
          <xs:documentation>Stourbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="443">
        <xs:annotation>
          <xs:documentation>Stratford-on-Avon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="444">
        <xs:annotation>
          <xs:documentation>Streatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="445">
        <xs:annotation>
          <xs:documentation>Stretford and Urmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="446">
        <xs:annotation>
          <xs:documentation>Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="447">
        <xs:annotation>
          <xs:documentation>Suffolk Coastal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="448">
        <xs:annotation>
          <xs:documentation>Sunderland North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="449">
        <xs:annotation>
          <xs:documentation>Sunderland South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="450">
        <xs:annotation>
          <xs:documentation>Surrey Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="451">
        <xs:annotation>
          <xs:documentation>Sutton and Cheam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="452">
        <xs:annotation>
          <xs:documentation>Sutton Coldfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="453">
        <xs:annotation>
          <xs:documentation>Tamworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="454">
        <xs:annotation>
          <xs:documentation>Tatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="455">
        <xs:annotation>
          <xs:documentation>Taunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="456">
        <xs:annotation>
          <xs:documentation>Teignbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="457">
        <xs:annotation>
          <xs:documentation>Telford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="458">
        <xs:annotation>
          <xs:documentation>Tewkesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="459">
        <xs:annotation>
          <xs:documentation>The Wrekin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="460">
        <xs:annotation>
          <xs:documentation>Thurrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="461">
        <xs:annotation>
          <xs:documentation>Tiverton and Honiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="462">
        <xs:annotation>
          <xs:documentation>Tonbridge and Malling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="463">
        <xs:annotation>
          <xs:documentation>Tooting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="464">
        <xs:annotation>
          <xs:documentation>Torbay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="465">
        <xs:annotation>
          <xs:documentation>Torridge and West Devon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="466">
        <xs:annotation>
          <xs:documentation>Totnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="467">
        <xs:annotation>
          <xs:documentation>Tottenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="468">
        <xs:annotation>
          <xs:documentation>Truro and St. Austell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="469">
        <xs:annotation>
          <xs:documentation>Tunbridge Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="470">
        <xs:annotation>
          <xs:documentation>Twickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="471">
        <xs:annotation>
          <xs:documentation>Tyne Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="472">
        <xs:annotation>
          <xs:documentation>Tynemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="473">
        <xs:annotation>
          <xs:documentation>Upminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="474">
        <xs:annotation>
          <xs:documentation>Uxbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="475">
        <xs:annotation>
          <xs:documentation>Vale of York</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="476">
        <xs:annotation>
          <xs:documentation>Vauxhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="477">
        <xs:annotation>
          <xs:documentation>Wakefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="478">
        <xs:annotation>
          <xs:documentation>Wallasey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="479">
        <xs:annotation>
          <xs:documentation>Walsall North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="480">
        <xs:annotation>
          <xs:documentation>Walsall South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="481">
        <xs:annotation>
          <xs:documentation>Walthamstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="482">
        <xs:annotation>
          <xs:documentation>Wansbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="483">
        <xs:annotation>
          <xs:documentation>Wansdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="484">
        <xs:annotation>
          <xs:documentation>Wantage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="485">
        <xs:annotation>
          <xs:documentation>Warley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="486">
        <xs:annotation>
          <xs:documentation>Warrington North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="487">
        <xs:annotation>
          <xs:documentation>Warrington South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="488">
        <xs:annotation>
          <xs:documentation>Warwick and Leamington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="489">
        <xs:annotation>
          <xs:documentation>Watford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="490">
        <xs:annotation>
          <xs:documentation>Waveney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="491">
        <xs:annotation>
          <xs:documentation>Wealden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="492">
        <xs:annotation>
          <xs:documentation>Weaver Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="493">
        <xs:annotation>
          <xs:documentation>Wellingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="494">
        <xs:annotation>
          <xs:documentation>Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="495">
        <xs:annotation>
          <xs:documentation>Welwyn Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="496">
        <xs:annotation>
          <xs:documentation>Wentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="497">
        <xs:annotation>
          <xs:documentation>West Bromwich East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="498">
        <xs:annotation>
          <xs:documentation>West Bromwich West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="499">
        <xs:annotation>
          <xs:documentation>West Chelmsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="500">
        <xs:annotation>
          <xs:documentation>West Derbyshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="501">
        <xs:annotation>
          <xs:documentation>West Dorset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="502">
        <xs:annotation>
          <xs:documentation>West Ham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="503">
        <xs:annotation>
          <xs:documentation>West Lancashire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="504">
        <xs:annotation>
          <xs:documentation>West Suffolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="505">
        <xs:annotation>
          <xs:documentation>West Worcestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="506">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="507">
        <xs:annotation>
          <xs:documentation>Westmorland and Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="508">
        <xs:annotation>
          <xs:documentation>Weston-Super-Mare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="509">
        <xs:annotation>
          <xs:documentation>Wigan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="510">
        <xs:annotation>
          <xs:documentation>Wimbledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="511">
        <xs:annotation>
          <xs:documentation>Winchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="512">
        <xs:annotation>
          <xs:documentation>Windsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="513">
        <xs:annotation>
          <xs:documentation>Wirral South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="514">
        <xs:annotation>
          <xs:documentation>Wirral West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="515">
        <xs:annotation>
          <xs:documentation>Witney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="516">
        <xs:annotation>
          <xs:documentation>Woking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="517">
        <xs:annotation>
          <xs:documentation>Wokingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="518">
        <xs:annotation>
          <xs:documentation>Wolverhampton North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="519">
        <xs:annotation>
          <xs:documentation>Wolverhampton South East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="520">
        <xs:annotation>
          <xs:documentation>Wolverhampton South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="521">
        <xs:annotation>
          <xs:documentation>Woodspring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="522">
        <xs:annotation>
          <xs:documentation>Worcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="523">
        <xs:annotation>
          <xs:documentation>Workington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="524">
        <xs:annotation>
          <xs:documentation>Worsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="525">
        <xs:annotation>
          <xs:documentation>Worthing West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="526">
        <xs:annotation>
          <xs:documentation>Wycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="527">
        <xs:annotation>
          <xs:documentation>Wyre Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="528">
        <xs:annotation>
          <xs:documentation>Wythenshawe and Sale East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="529">
        <xs:annotation>
          <xs:documentation>Yeovil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="530">
        <xs:annotation>
          <xs:documentation>Aberavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="531">
        <xs:annotation>
          <xs:documentation>Alyn and Deeside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="532">
        <xs:annotation>
          <xs:documentation>Blaenau Gwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="533">
        <xs:annotation>
          <xs:documentation>Brecon and Radnorshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="534">
        <xs:annotation>
          <xs:documentation>Bridgend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="535">
        <xs:annotation>
          <xs:documentation>Caernarfon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="536">
        <xs:annotation>
          <xs:documentation>Caerphilly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="537">
        <xs:annotation>
          <xs:documentation>Cardiff Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="538">
        <xs:annotation>
          <xs:documentation>Cardiff North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="539">
        <xs:annotation>
          <xs:documentation>Cardiff South and Penarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="540">
        <xs:annotation>
          <xs:documentation>Cardiff West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="541">
        <xs:annotation>
          <xs:documentation>Carmarthen East and Dinefwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="542">
        <xs:annotation>
          <xs:documentation>Carmarthen West and South Pembrokeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="543">
        <xs:annotation>
          <xs:documentation>Ceredigion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="544">
        <xs:annotation>
          <xs:documentation>Clwyd South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="545">
        <xs:annotation>
          <xs:documentation>Clwyd West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="546">
        <xs:annotation>
          <xs:documentation>Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="547">
        <xs:annotation>
          <xs:documentation>Cynon Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="548">
        <xs:annotation>
          <xs:documentation>Delyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="549">
        <xs:annotation>
          <xs:documentation>Gower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="550">
        <xs:annotation>
          <xs:documentation>Islwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="551">
        <xs:annotation>
          <xs:documentation>Llanelli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="552">
        <xs:annotation>
          <xs:documentation>Meirionnydd Nant Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="553">
        <xs:annotation>
          <xs:documentation>Merthyr Tydfil and Rhymney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="554">
        <xs:annotation>
          <xs:documentation>Monmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="555">
        <xs:annotation>
          <xs:documentation>Montgomeryshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="556">
        <xs:annotation>
          <xs:documentation>Neath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="557">
        <xs:annotation>
          <xs:documentation>Newport East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="558">
        <xs:annotation>
          <xs:documentation>Newport West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="559">
        <xs:annotation>
          <xs:documentation>Ogmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="560">
        <xs:annotation>
          <xs:documentation>Pontypridd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="561">
        <xs:annotation>
          <xs:documentation>Preseli Pembrokeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="562">
        <xs:annotation>
          <xs:documentation>Rhondda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="563">
        <xs:annotation>
          <xs:documentation>Swansea East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="564">
        <xs:annotation>
          <xs:documentation>Swansea West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="565">
        <xs:annotation>
          <xs:documentation>Torfaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="566">
        <xs:annotation>
          <xs:documentation>Vale of Clwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="567">
        <xs:annotation>
          <xs:documentation>Vale of Glamorgan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="568">
        <xs:annotation>
          <xs:documentation>Wrexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="569">
        <xs:annotation>
          <xs:documentation>Ynys Mon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="701">
        <xs:annotation>
          <xs:documentation>Belfast East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="702">
        <xs:annotation>
          <xs:documentation>Belfast North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="703">
        <xs:annotation>
          <xs:documentation>Belfast South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="704">
        <xs:annotation>
          <xs:documentation>Belfast West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="705">
        <xs:annotation>
          <xs:documentation>East Antrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="706">
        <xs:annotation>
          <xs:documentation>East Londonderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="707">
        <xs:annotation>
          <xs:documentation>Fermanagh &amp; South Tyrone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="708">
        <xs:annotation>
          <xs:documentation>Foyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="709">
        <xs:annotation>
          <xs:documentation>Lagan Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="710">
        <xs:annotation>
          <xs:documentation>Mid Ulster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="711">
        <xs:annotation>
          <xs:documentation>Newry &amp; Armagh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="712">
        <xs:annotation>
          <xs:documentation>North Antrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="713">
        <xs:annotation>
          <xs:documentation>North Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="714">
        <xs:annotation>
          <xs:documentation>South Antrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="715">
        <xs:annotation>
          <xs:documentation>South Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="716">
        <xs:annotation>
          <xs:documentation>Strangford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="717">
        <xs:annotation>
          <xs:documentation>Upper Bann</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="718">
        <xs:annotation>
          <xs:documentation>West Tyrone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="801">
        <xs:annotation>
          <xs:documentation>Aberdeen North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="802">
        <xs:annotation>
          <xs:documentation>Aberdeen South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="803">
        <xs:annotation>
          <xs:documentation>Airdrie and Shotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="804">
        <xs:annotation>
          <xs:documentation>Angus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="805">
        <xs:annotation>
          <xs:documentation>Argyll and Bute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="806">
        <xs:annotation>
          <xs:documentation>Ayr, Carrick and Cumnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="807">
        <xs:annotation>
          <xs:documentation>Banff and Buchan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="808">
        <xs:annotation>
          <xs:documentation>Berwickshire, Roxburgh and Selkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="809">
        <xs:annotation>
          <xs:documentation>Caithness, Sutherland and Easter Ross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="810">
        <xs:annotation>
          <xs:documentation>Central Ayrshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="811">
        <xs:annotation>
          <xs:documentation>Coatbridge, Chryston and Bellshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="812">
        <xs:annotation>
          <xs:documentation>Cumbernauld, Kilsyth and Kirkintilloch East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="813">
        <xs:annotation>
          <xs:documentation>Dumfries and Galloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="814">
        <xs:annotation>
          <xs:documentation>Dumfriesshire, Clydesdale and Tweeddale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="815">
        <xs:annotation>
          <xs:documentation>Dundee East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="816">
        <xs:annotation>
          <xs:documentation>Dundee West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="817">
        <xs:annotation>
          <xs:documentation>Dunfermline and West Fife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="818">
        <xs:annotation>
          <xs:documentation>East Dunbartonshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="819">
        <xs:annotation>
          <xs:documentation>East Kilbride, Strathaven and Lesmahagow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="820">
        <xs:annotation>
          <xs:documentation>East Lothian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="821">
        <xs:annotation>
          <xs:documentation>East Renfrewshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="822">
        <xs:annotation>
          <xs:documentation>Edinburgh East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="823">
        <xs:annotation>
          <xs:documentation>Edinburgh North and Leith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="824">
        <xs:annotation>
          <xs:documentation>Edinburgh South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="825">
        <xs:annotation>
          <xs:documentation>Edinburgh South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="826">
        <xs:annotation>
          <xs:documentation>Edinburgh West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="827">
        <xs:annotation>
          <xs:documentation>Falkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="828">
        <xs:annotation>
          <xs:documentation>Glasgow Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="829">
        <xs:annotation>
          <xs:documentation>Glasgow East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="830">
        <xs:annotation>
          <xs:documentation>Glasgow North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="831">
        <xs:annotation>
          <xs:documentation>Glasgow North East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="832">
        <xs:annotation>
          <xs:documentation>Glasgow North West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="833">
        <xs:annotation>
          <xs:documentation>Glasgow South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="834">
        <xs:annotation>
          <xs:documentation>Glasgow South West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="835">
        <xs:annotation>
          <xs:documentation>Glenrothes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="836">
        <xs:annotation>
          <xs:documentation>Gordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="837">
        <xs:annotation>
          <xs:documentation>Inverclyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="838">
        <xs:annotation>
          <xs:documentation>Inverness, Nairn, Badenoch and Strathspey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="839">
        <xs:annotation>
          <xs:documentation>Kilmarnock and Loudoun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="840">
        <xs:annotation>
          <xs:documentation>Kirkcaldy and Cowdenbeath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="841">
        <xs:annotation>
          <xs:documentation>Lanark and Hamilton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="842">
        <xs:annotation>
          <xs:documentation>Linlithgow and East Falkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="843">
        <xs:annotation>
          <xs:documentation>Livingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="844">
        <xs:annotation>
          <xs:documentation>Midlothian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="845">
        <xs:annotation>
          <xs:documentation>Moray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="846">
        <xs:annotation>
          <xs:documentation>Motherwell and Wishaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="847">
        <xs:annotation>
          <xs:documentation>Na h-Eileanan an Iar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="848">
        <xs:annotation>
          <xs:documentation>North Ayrshire and Arran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="849">
        <xs:annotation>
          <xs:documentation>North East Fife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="850">
        <xs:annotation>
          <xs:documentation>Ochil and South Perthshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="851">
        <xs:annotation>
          <xs:documentation>Orkney and Shetland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="852">
        <xs:annotation>
          <xs:documentation>Paisley and Renfrewshire North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="853">
        <xs:annotation>
          <xs:documentation>Paisley and Renfrewshire South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="854">
        <xs:annotation>
          <xs:documentation>Perth and North Perthshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="855">
        <xs:annotation>
          <xs:documentation>Ross, Skye and Lochaber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="856">
        <xs:annotation>
          <xs:documentation>Rutherglen and Hamilton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="857">
        <xs:annotation>
          <xs:documentation>Stirling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="858">
        <xs:annotation>
          <xs:documentation>West Aberdeenshire and Kincardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="859">
        <xs:annotation>
          <xs:documentation>West Dunbartonshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSParliamentaryConstituencyNameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Aldershot" />
      <xs:enumeration value="Aldridge-Brownhills" />
      <xs:enumeration value="Altrincham and Sale West" />
      <xs:enumeration value="Amber Valley" />
      <xs:enumeration value="Arundel and South Downs" />
      <xs:enumeration value="Ashfield" />
      <xs:enumeration value="Ashford" />
      <xs:enumeration value="Ashton under Lyne" />
      <xs:enumeration value="Aylesbury" />
      <xs:enumeration value="Banbury" />
      <xs:enumeration value="Barking" />
      <xs:enumeration value="Barnsley Central" />
      <xs:enumeration value="Barnsley East and Mexborough" />
      <xs:enumeration value="Barnsley West and Penistone" />
      <xs:enumeration value="Barrow and Furness" />
      <xs:enumeration value="Basildon" />
      <xs:enumeration value="Basingstoke" />
      <xs:enumeration value="Bassetlaw" />
      <xs:enumeration value="Bath" />
      <xs:enumeration value="Batley and Spen" />
      <xs:enumeration value="Battersea" />
      <xs:enumeration value="Beaconsfield" />
      <xs:enumeration value="Beckenham" />
      <xs:enumeration value="Bedford" />
      <xs:enumeration value="Berwick-upon-Tweed" />
      <xs:enumeration value="Bethnal Green and Bow" />
      <xs:enumeration value="Beverley and Holderness" />
      <xs:enumeration value="Bexhill and Battle" />
      <xs:enumeration value="Bexleyheath and Crayford" />
      <xs:enumeration value="Billericay" />
      <xs:enumeration value="Birkenhead" />
      <xs:enumeration value="Birmingham, Edgbaston" />
      <xs:enumeration value="Birmingham, Erdington" />
      <xs:enumeration value="Birmingham, Hall Green" />
      <xs:enumeration value="Birmingham, Hodge Hill" />
      <xs:enumeration value="Birmingham, Ladywood" />
      <xs:enumeration value="Birmingham, Northfield" />
      <xs:enumeration value="Birmingham, Perry Barr" />
      <xs:enumeration value="Birmingham, Selly Oak" />
      <xs:enumeration value="Birmingham, Sparkbrook and Small Heath" />
      <xs:enumeration value="Birmingham, Yardley" />
      <xs:enumeration value="Bishop Auckland" />
      <xs:enumeration value="Blaby" />
      <xs:enumeration value="Blackburn" />
      <xs:enumeration value="Blackpool North and Fleetwood" />
      <xs:enumeration value="Blackpool South" />
      <xs:enumeration value="Blaydon" />
      <xs:enumeration value="Blyth Valley" />
      <xs:enumeration value="Bognor Regis and Littlehampton" />
      <xs:enumeration value="Bolsover" />
      <xs:enumeration value="Bolton North East" />
      <xs:enumeration value="Bolton South East" />
      <xs:enumeration value="Bolton West" />
      <xs:enumeration value="Bootle" />
      <xs:enumeration value="Boston and Skegness" />
      <xs:enumeration value="Bosworth" />
      <xs:enumeration value="Bournemouth East" />
      <xs:enumeration value="Bournemouth West" />
      <xs:enumeration value="Bracknell" />
      <xs:enumeration value="Bradford North" />
      <xs:enumeration value="Bradford South" />
      <xs:enumeration value="Bradford West" />
      <xs:enumeration value="Braintree" />
      <xs:enumeration value="Brent East" />
      <xs:enumeration value="Brent North" />
      <xs:enumeration value="Brent South" />
      <xs:enumeration value="Brentford and Isleworth" />
      <xs:enumeration value="Brentwood and Ongar" />
      <xs:enumeration value="Bridgwater" />
      <xs:enumeration value="Brigg and Goole" />
      <xs:enumeration value="Brighton, Kemptown" />
      <xs:enumeration value="Brighton, Pavilion" />
      <xs:enumeration value="Bristol East" />
      <xs:enumeration value="Bristol North West" />
      <xs:enumeration value="Bristol South" />
      <xs:enumeration value="Bristol West" />
      <xs:enumeration value="Bromley and Chislehurst" />
      <xs:enumeration value="Bromsgrove" />
      <xs:enumeration value="Broxbourne" />
      <xs:enumeration value="Broxtowe" />
      <xs:enumeration value="Buckingham" />
      <xs:enumeration value="Burnley" />
      <xs:enumeration value="Burton" />
      <xs:enumeration value="Bury North" />
      <xs:enumeration value="Bury South" />
      <xs:enumeration value="Bury St. Edmunds" />
      <xs:enumeration value="Calder Valley" />
      <xs:enumeration value="Camberwell and Peckham" />
      <xs:enumeration value="Cambridge" />
      <xs:enumeration value="Cannock Chase" />
      <xs:enumeration value="Canterbury" />
      <xs:enumeration value="Carlisle" />
      <xs:enumeration value="Carshalton and Wallington" />
      <xs:enumeration value="Castle Point" />
      <xs:enumeration value="Central Suffolk and North Ipswich" />
      <xs:enumeration value="Charnwood" />
      <xs:enumeration value="Chatham and Aylesford" />
      <xs:enumeration value="Cheadle" />
      <xs:enumeration value="Cheltenham" />
      <xs:enumeration value="Chesham and Amersham" />
      <xs:enumeration value="Chesterfield" />
      <xs:enumeration value="Chichester" />
      <xs:enumeration value="Chingford and Woodford Green" />
      <xs:enumeration value="Chipping Barnet" />
      <xs:enumeration value="Chorley" />
      <xs:enumeration value="Christchurch" />
      <xs:enumeration value="Cities of London and Westminster" />
      <xs:enumeration value="City of Chester" />
      <xs:enumeration value="City of Durham" />
      <xs:enumeration value="City of York" />
      <xs:enumeration value="Cleethorpes" />
      <xs:enumeration value="Colchester" />
      <xs:enumeration value="Colne Valley" />
      <xs:enumeration value="Congleton" />
      <xs:enumeration value="Copeland" />
      <xs:enumeration value="Corby" />
      <xs:enumeration value="Cotswold" />
      <xs:enumeration value="Coventry North East" />
      <xs:enumeration value="Coventry North West" />
      <xs:enumeration value="Coventry South" />
      <xs:enumeration value="Crawley" />
      <xs:enumeration value="Crewe and Nantwich" />
      <xs:enumeration value="Crosby" />
      <xs:enumeration value="Croydon Central" />
      <xs:enumeration value="Croydon North" />
      <xs:enumeration value="Croydon South" />
      <xs:enumeration value="Dagenham" />
      <xs:enumeration value="Darlington" />
      <xs:enumeration value="Dartford" />
      <xs:enumeration value="Daventry" />
      <xs:enumeration value="Denton and Reddish" />
      <xs:enumeration value="Derby North" />
      <xs:enumeration value="Derby South" />
      <xs:enumeration value="Devizes" />
      <xs:enumeration value="Dewsbury" />
      <xs:enumeration value="Doncaster Central" />
      <xs:enumeration value="Doncaster North" />
      <xs:enumeration value="Don Valley" />
      <xs:enumeration value="Dover" />
      <xs:enumeration value="Dudley North" />
      <xs:enumeration value="Dudley South" />
      <xs:enumeration value="Dulwich and West Norwood" />
      <xs:enumeration value="Ealing, Acton and Shepherd's Bush" />
      <xs:enumeration value="Ealing North" />
      <xs:enumeration value="Ealing, Southall" />
      <xs:enumeration value="Easington" />
      <xs:enumeration value="East Devon" />
      <xs:enumeration value="East Ham" />
      <xs:enumeration value="East Hampshire" />
      <xs:enumeration value="East Surrey" />
      <xs:enumeration value="East Worthing and Shoreham" />
      <xs:enumeration value="East Yorkshire" />
      <xs:enumeration value="Eastbourne" />
      <xs:enumeration value="Eastleigh" />
      <xs:enumeration value="Eccles" />
      <xs:enumeration value="Eddisbury" />
      <xs:enumeration value="Edmonton" />
      <xs:enumeration value="Ellesmere Port and Neston" />
      <xs:enumeration value="Elmet" />
      <xs:enumeration value="Eltham" />
      <xs:enumeration value="Enfield North" />
      <xs:enumeration value="Enfield, Southgate" />
      <xs:enumeration value="Epping Forest" />
      <xs:enumeration value="Epsom and Ewell" />
      <xs:enumeration value="Erewash" />
      <xs:enumeration value="Erith and Thamesmead" />
      <xs:enumeration value="Esher and Walton" />
      <xs:enumeration value="Exeter" />
      <xs:enumeration value="Falmouth and Camborne" />
      <xs:enumeration value="Fareham" />
      <xs:enumeration value="Faversham and Mid Kent" />
      <xs:enumeration value="Feltham and Heston" />
      <xs:enumeration value="Finchley and Golders Green" />
      <xs:enumeration value="Folkestone and Hythe" />
      <xs:enumeration value="Forest of Dean" />
      <xs:enumeration value="Fylde" />
      <xs:enumeration value="Gainsborough" />
      <xs:enumeration value="Gateshead East and Washington West" />
      <xs:enumeration value="Gedling" />
      <xs:enumeration value="Gillingham" />
      <xs:enumeration value="Gloucester" />
      <xs:enumeration value="Gosport" />
      <xs:enumeration value="Grantham and Stamford" />
      <xs:enumeration value="Gravesham" />
      <xs:enumeration value="Great Grimsby" />
      <xs:enumeration value="Great Yarmouth" />
      <xs:enumeration value="Greenwich and Woolwich" />
      <xs:enumeration value="Guildford" />
      <xs:enumeration value="Hackney North and Stoke Newington" />
      <xs:enumeration value="Hackney South and Shoreditch" />
      <xs:enumeration value="Halesowen and Rowley Regis" />
      <xs:enumeration value="Halifax" />
      <xs:enumeration value="Haltemprice and Howden" />
      <xs:enumeration value="Halton" />
      <xs:enumeration value="Hammersmith and Fulham" />
      <xs:enumeration value="Hampstead and Highgate" />
      <xs:enumeration value="Harborough" />
      <xs:enumeration value="Harlow" />
      <xs:enumeration value="Harrogate and Knaresborough" />
      <xs:enumeration value="Harrow East" />
      <xs:enumeration value="Harrow West" />
      <xs:enumeration value="Hartlepool" />
      <xs:enumeration value="Harwich" />
      <xs:enumeration value="Hastings and Rye" />
      <xs:enumeration value="Havant" />
      <xs:enumeration value="Hayes and Harlington" />
      <xs:enumeration value="Hazel Grove" />
      <xs:enumeration value="Hemel Hempstead" />
      <xs:enumeration value="Hemsworth" />
      <xs:enumeration value="Hendon" />
      <xs:enumeration value="Henley" />
      <xs:enumeration value="Hereford" />
      <xs:enumeration value="Hertford and Stortford" />
      <xs:enumeration value="Hertsmere" />
      <xs:enumeration value="Hexham" />
      <xs:enumeration value="Heywood and Middleton" />
      <xs:enumeration value="High Peak" />
      <xs:enumeration value="Hitchin and Harpenden" />
      <xs:enumeration value="Holborn and St. Pancras" />
      <xs:enumeration value="Hornchurch" />
      <xs:enumeration value="Hornsey and Wood Green" />
      <xs:enumeration value="Horsham" />
      <xs:enumeration value="Houghton and Washington East" />
      <xs:enumeration value="Hove" />
      <xs:enumeration value="Huddersfield" />
      <xs:enumeration value="Huntingdon" />
      <xs:enumeration value="Hyndburn" />
      <xs:enumeration value="Ilford North" />
      <xs:enumeration value="Ilford South" />
      <xs:enumeration value="Ipswich" />
      <xs:enumeration value="Isle of Wight" />
      <xs:enumeration value="Islington North" />
      <xs:enumeration value="Islington South and Finsbury" />
      <xs:enumeration value="Jarrow" />
      <xs:enumeration value="Keighley" />
      <xs:enumeration value="Kensington and Chelsea" />
      <xs:enumeration value="Kettering" />
      <xs:enumeration value="Kingston and Surbiton" />
      <xs:enumeration value="Kingston upon Hull East" />
      <xs:enumeration value="Kingston upon Hull North" />
      <xs:enumeration value="Kingston upon Hull West and Hessle" />
      <xs:enumeration value="Kingswood" />
      <xs:enumeration value="Knowsley North and Sefton East" />
      <xs:enumeration value="Knowsley South" />
      <xs:enumeration value="Lancaster and Wyre" />
      <xs:enumeration value="Leeds Central" />
      <xs:enumeration value="Leeds East" />
      <xs:enumeration value="Leeds North East" />
      <xs:enumeration value="Leeds North West" />
      <xs:enumeration value="Leeds West" />
      <xs:enumeration value="Leicester East" />
      <xs:enumeration value="Leicester South" />
      <xs:enumeration value="Leicester West" />
      <xs:enumeration value="Leigh" />
      <xs:enumeration value="Leominster" />
      <xs:enumeration value="Lewes" />
      <xs:enumeration value="Lewisham, Deptford" />
      <xs:enumeration value="Lewisham East" />
      <xs:enumeration value="Lewisham West" />
      <xs:enumeration value="Leyton and Wanstead" />
      <xs:enumeration value="Lichfield" />
      <xs:enumeration value="Lincoln" />
      <xs:enumeration value="Liverpool, Garston" />
      <xs:enumeration value="Liverpool, Riverside" />
      <xs:enumeration value="Liverpool, Walton" />
      <xs:enumeration value="Liverpool, Wavertree" />
      <xs:enumeration value="Liverpool, West Derby" />
      <xs:enumeration value="Loughborough" />
      <xs:enumeration value="Louth and Horncastle" />
      <xs:enumeration value="Ludlow" />
      <xs:enumeration value="Luton North" />
      <xs:enumeration value="Luton South" />
      <xs:enumeration value="Macclesfield" />
      <xs:enumeration value="Maidenhead" />
      <xs:enumeration value="Maidstone and The Weald" />
      <xs:enumeration value="Makerfield" />
      <xs:enumeration value="Maldon and East Chelmsford" />
      <xs:enumeration value="Manchester, Blackley" />
      <xs:enumeration value="Manchester Central" />
      <xs:enumeration value="Manchester, Gorton" />
      <xs:enumeration value="Manchester, Withington" />
      <xs:enumeration value="Mansfield" />
      <xs:enumeration value="Medway" />
      <xs:enumeration value="Meriden" />
      <xs:enumeration value="Mid Bedfordshire" />
      <xs:enumeration value="Mid Dorset and North Poole" />
      <xs:enumeration value="Mid Norfolk" />
      <xs:enumeration value="Mid Sussex" />
      <xs:enumeration value="Mid Worcestershire" />
      <xs:enumeration value="Middlesbrough" />
      <xs:enumeration value="Middlesbrough South and East Cleveland" />
      <xs:enumeration value="Milton Keynes South West" />
      <xs:enumeration value="Mitcham and Morden" />
      <xs:enumeration value="Mole Valley" />
      <xs:enumeration value="Morecambe and Lunesdale" />
      <xs:enumeration value="Morley and Rothwell" />
      <xs:enumeration value="New Forest East" />
      <xs:enumeration value="New Forest West" />
      <xs:enumeration value="Newark" />
      <xs:enumeration value="Newbury" />
      <xs:enumeration value="Newcastle upon Tyne Central" />
      <xs:enumeration value="Newcastle upon Tyne East and Wallsend" />
      <xs:enumeration value="Newcastle upon Tyne North" />
      <xs:enumeration value="Newcastle-under-Lyme" />
      <xs:enumeration value="Normanton" />
      <xs:enumeration value="North Cornwall" />
      <xs:enumeration value="North Devon" />
      <xs:enumeration value="North Dorset" />
      <xs:enumeration value="North Durham" />
      <xs:enumeration value="North East Bedfordshire" />
      <xs:enumeration value="North East Cambridgeshire" />
      <xs:enumeration value="North East Derbyshire" />
      <xs:enumeration value="North East Hampshire" />
      <xs:enumeration value="North East Hertfordshire" />
      <xs:enumeration value="North East Milton Keynes" />
      <xs:enumeration value="North Essex" />
      <xs:enumeration value="North Norfolk" />
      <xs:enumeration value="North Shropshire" />
      <xs:enumeration value="North Southwark and Bermondsey" />
      <xs:enumeration value="North Swindon" />
      <xs:enumeration value="North Thanet" />
      <xs:enumeration value="North Tyneside" />
      <xs:enumeration value="North Warwickshire" />
      <xs:enumeration value="North West Cambridgeshire" />
      <xs:enumeration value="North West Durham" />
      <xs:enumeration value="North West Hampshire" />
      <xs:enumeration value="North West Leicestershire" />
      <xs:enumeration value="North West Norfolk" />
      <xs:enumeration value="North Wiltshire" />
      <xs:enumeration value="Northampton North" />
      <xs:enumeration value="Northampton South" />
      <xs:enumeration value="Northavon" />
      <xs:enumeration value="Norwich North" />
      <xs:enumeration value="Norwich South" />
      <xs:enumeration value="Nottingham East" />
      <xs:enumeration value="Nottingham North" />
      <xs:enumeration value="Nottingham South" />
      <xs:enumeration value="Nuneaton" />
      <xs:enumeration value="Old Bexley and Sidcup" />
      <xs:enumeration value="Oldham East and Saddleworth" />
      <xs:enumeration value="Oldham West and Royton" />
      <xs:enumeration value="Orpington" />
      <xs:enumeration value="Oxford East" />
      <xs:enumeration value="Oxford West and Abingdon" />
      <xs:enumeration value="Pendle" />
      <xs:enumeration value="Penrith and The Border" />
      <xs:enumeration value="Peterborough" />
      <xs:enumeration value="Plymouth, Devonport" />
      <xs:enumeration value="Plymouth, Sutton" />
      <xs:enumeration value="Pontefract and Castleford" />
      <xs:enumeration value="Poole" />
      <xs:enumeration value="Poplar and Canning Town" />
      <xs:enumeration value="Portsmouth North" />
      <xs:enumeration value="Portsmouth South" />
      <xs:enumeration value="Preston" />
      <xs:enumeration value="Pudsey" />
      <xs:enumeration value="Putney" />
      <xs:enumeration value="Rayleigh" />
      <xs:enumeration value="Reading East" />
      <xs:enumeration value="Reading West" />
      <xs:enumeration value="Redcar" />
      <xs:enumeration value="Redditch" />
      <xs:enumeration value="Regent's Park and North Kensington" />
      <xs:enumeration value="Reigate" />
      <xs:enumeration value="Ribble Valley" />
      <xs:enumeration value="Richmond (Yorks)" />
      <xs:enumeration value="Richmond Park" />
      <xs:enumeration value="Rochdale" />
      <xs:enumeration value="Rochford and Southend East" />
      <xs:enumeration value="Romford" />
      <xs:enumeration value="Romsey" />
      <xs:enumeration value="Rossendale and Darwen" />
      <xs:enumeration value="Rother Valley" />
      <xs:enumeration value="Rotherham" />
      <xs:enumeration value="Rugby and Kenilworth" />
      <xs:enumeration value="Ruislip-Northwood" />
      <xs:enumeration value="Runnymede and Weybridge" />
      <xs:enumeration value="Rushcliffe" />
      <xs:enumeration value="Rutland and Melton" />
      <xs:enumeration value="Ryedale" />
      <xs:enumeration value="Saffron Walden" />
      <xs:enumeration value="St. Albans" />
      <xs:enumeration value="St. Helens North" />
      <xs:enumeration value="St. Helens South" />
      <xs:enumeration value="St. Ives" />
      <xs:enumeration value="Salford" />
      <xs:enumeration value="Salisbury" />
      <xs:enumeration value="Scarborough and Whitby" />
      <xs:enumeration value="Scunthorpe" />
      <xs:enumeration value="Sedgefield" />
      <xs:enumeration value="Selby" />
      <xs:enumeration value="Sevenoaks" />
      <xs:enumeration value="Sheffield, Attercliffe" />
      <xs:enumeration value="Sheffield, Brightside" />
      <xs:enumeration value="Sheffield Central" />
      <xs:enumeration value="Sheffield, Hallam" />
      <xs:enumeration value="Sheffield, Heeley" />
      <xs:enumeration value="Sheffield, Hillsborough" />
      <xs:enumeration value="Sherwood" />
      <xs:enumeration value="Shipley" />
      <xs:enumeration value="Shrewsbury and Atcham" />
      <xs:enumeration value="Sittingbourne and Sheppey" />
      <xs:enumeration value="Skipton and Ripon" />
      <xs:enumeration value="Sleaford and North Hykeham" />
      <xs:enumeration value="Slough" />
      <xs:enumeration value="Solihull" />
      <xs:enumeration value="Somerton and Frome" />
      <xs:enumeration value="South Cambridgeshire" />
      <xs:enumeration value="South Derbyshire" />
      <xs:enumeration value="South Dorset" />
      <xs:enumeration value="South East Cambridgeshire" />
      <xs:enumeration value="South East Cornwall" />
      <xs:enumeration value="South Holland and The Deepings" />
      <xs:enumeration value="South Norfolk" />
      <xs:enumeration value="South Ribble" />
      <xs:enumeration value="South Shields" />
      <xs:enumeration value="South Staffordshire" />
      <xs:enumeration value="South Suffolk" />
      <xs:enumeration value="South Swindon" />
      <xs:enumeration value="South Thanet" />
      <xs:enumeration value="South West Bedfordshire" />
      <xs:enumeration value="South West Devon" />
      <xs:enumeration value="South West Hertfordshire" />
      <xs:enumeration value="South West Norfolk" />
      <xs:enumeration value="South West Surrey" />
      <xs:enumeration value="Southampton, Itchen" />
      <xs:enumeration value="Southampton, Test" />
      <xs:enumeration value="Southend West" />
      <xs:enumeration value="Southport" />
      <xs:enumeration value="Spelthorne" />
      <xs:enumeration value="Stafford" />
      <xs:enumeration value="Staffordshire Moorlands" />
      <xs:enumeration value="Stalybridge and Hyde" />
      <xs:enumeration value="Stevenage" />
      <xs:enumeration value="Stockport" />
      <xs:enumeration value="Stockton North" />
      <xs:enumeration value="Stockton South" />
      <xs:enumeration value="Stoke-on-Trent Central" />
      <xs:enumeration value="Stoke-on-Trent North" />
      <xs:enumeration value="Stoke-on-Trent South" />
      <xs:enumeration value="Stone" />
      <xs:enumeration value="Stourbridge" />
      <xs:enumeration value="Stratford-on-Avon" />
      <xs:enumeration value="Streatham" />
      <xs:enumeration value="Stretford and Urmston" />
      <xs:enumeration value="Stroud" />
      <xs:enumeration value="Suffolk Coastal" />
      <xs:enumeration value="Sunderland North" />
      <xs:enumeration value="Sunderland South" />
      <xs:enumeration value="Surrey Heath" />
      <xs:enumeration value="Sutton and Cheam" />
      <xs:enumeration value="Sutton Coldfield" />
      <xs:enumeration value="Tamworth" />
      <xs:enumeration value="Tatton" />
      <xs:enumeration value="Taunton" />
      <xs:enumeration value="Teignbridge" />
      <xs:enumeration value="Telford" />
      <xs:enumeration value="Tewkesbury" />
      <xs:enumeration value="The Wrekin" />
      <xs:enumeration value="Thurrock" />
      <xs:enumeration value="Tiverton and Honiton" />
      <xs:enumeration value="Tonbridge and Malling" />
      <xs:enumeration value="Tooting" />
      <xs:enumeration value="Torbay" />
      <xs:enumeration value="Torridge and West Devon" />
      <xs:enumeration value="Totnes" />
      <xs:enumeration value="Tottenham" />
      <xs:enumeration value="Truro and St. Austell" />
      <xs:enumeration value="Tunbridge Wells" />
      <xs:enumeration value="Twickenham" />
      <xs:enumeration value="Tyne Bridge" />
      <xs:enumeration value="Tynemouth" />
      <xs:enumeration value="Upminster" />
      <xs:enumeration value="Uxbridge" />
      <xs:enumeration value="Vale of York" />
      <xs:enumeration value="Vauxhall" />
      <xs:enumeration value="Wakefield" />
      <xs:enumeration value="Wallasey" />
      <xs:enumeration value="Walsall North" />
      <xs:enumeration value="Walsall South" />
      <xs:enumeration value="Walthamstow" />
      <xs:enumeration value="Wansbeck" />
      <xs:enumeration value="Wansdyke" />
      <xs:enumeration value="Wantage" />
      <xs:enumeration value="Warley" />
      <xs:enumeration value="Warrington North" />
      <xs:enumeration value="Warrington South" />
      <xs:enumeration value="Warwick and Leamington" />
      <xs:enumeration value="Watford" />
      <xs:enumeration value="Waveney" />
      <xs:enumeration value="Wealden" />
      <xs:enumeration value="Weaver Vale" />
      <xs:enumeration value="Wellingborough" />
      <xs:enumeration value="Wells" />
      <xs:enumeration value="Welwyn Hatfield" />
      <xs:enumeration value="Wentworth" />
      <xs:enumeration value="West Bromwich East" />
      <xs:enumeration value="West Bromwich West" />
      <xs:enumeration value="West Chelmsford" />
      <xs:enumeration value="West Derbyshire" />
      <xs:enumeration value="West Dorset" />
      <xs:enumeration value="West Ham" />
      <xs:enumeration value="West Lancashire" />
      <xs:enumeration value="West Suffolk" />
      <xs:enumeration value="West Worcestershire" />
      <xs:enumeration value="Westbury" />
      <xs:enumeration value="Westmorland and Lonsdale" />
      <xs:enumeration value="Weston-Super-Mare" />
      <xs:enumeration value="Wigan" />
      <xs:enumeration value="Wimbledon" />
      <xs:enumeration value="Winchester" />
      <xs:enumeration value="Windsor" />
      <xs:enumeration value="Wirral South" />
      <xs:enumeration value="Wirral West" />
      <xs:enumeration value="Witney" />
      <xs:enumeration value="Woking" />
      <xs:enumeration value="Wokingham" />
      <xs:enumeration value="Wolverhampton North East" />
      <xs:enumeration value="Wolverhampton South East" />
      <xs:enumeration value="Wolverhampton South West" />
      <xs:enumeration value="Woodspring" />
      <xs:enumeration value="Worcester" />
      <xs:enumeration value="Workington" />
      <xs:enumeration value="Worsley" />
      <xs:enumeration value="Worthing West" />
      <xs:enumeration value="Wycombe" />
      <xs:enumeration value="Wyre Forest" />
      <xs:enumeration value="Wythenshawe and Sale East" />
      <xs:enumeration value="Yeovil" />
      <xs:enumeration value="Aberavon" />
      <xs:enumeration value="Alyn and Deeside" />
      <xs:enumeration value="Blaenau Gwent" />
      <xs:enumeration value="Brecon and Radnorshire" />
      <xs:enumeration value="Bridgend" />
      <xs:enumeration value="Caernarfon" />
      <xs:enumeration value="Caerphilly" />
      <xs:enumeration value="Cardiff Central" />
      <xs:enumeration value="Cardiff North" />
      <xs:enumeration value="Cardiff South and Penarth" />
      <xs:enumeration value="Cardiff West" />
      <xs:enumeration value="Carmarthen East and Dinefwr" />
      <xs:enumeration value="Carmarthen West and South Pembrokeshire" />
      <xs:enumeration value="Ceredigion" />
      <xs:enumeration value="Clwyd South" />
      <xs:enumeration value="Clwyd West" />
      <xs:enumeration value="Conwy" />
      <xs:enumeration value="Cynon Valley" />
      <xs:enumeration value="Delyn" />
      <xs:enumeration value="Gower" />
      <xs:enumeration value="Islwyn" />
      <xs:enumeration value="Llanelli" />
      <xs:enumeration value="Meirionnydd Nant Conwy" />
      <xs:enumeration value="Merthyr Tydfil and Rhymney" />
      <xs:enumeration value="Monmouth" />
      <xs:enumeration value="Montgomeryshire" />
      <xs:enumeration value="Neath" />
      <xs:enumeration value="Newport East" />
      <xs:enumeration value="Newport West" />
      <xs:enumeration value="Ogmore" />
      <xs:enumeration value="Pontypridd" />
      <xs:enumeration value="Preseli Pembrokeshire" />
      <xs:enumeration value="Rhondda" />
      <xs:enumeration value="Swansea East" />
      <xs:enumeration value="Swansea West" />
      <xs:enumeration value="Torfaen" />
      <xs:enumeration value="Vale of Clwyd" />
      <xs:enumeration value="Vale of Glamorgan" />
      <xs:enumeration value="Wrexham" />
      <xs:enumeration value="Ynys Mon" />
      <xs:enumeration value="Belfast East" />
      <xs:enumeration value="Belfast North" />
      <xs:enumeration value="Belfast South" />
      <xs:enumeration value="Belfast West" />
      <xs:enumeration value="East Antrim" />
      <xs:enumeration value="East Londonderry" />
      <xs:enumeration value="Fermanagh &amp; South Tyrone" />
      <xs:enumeration value="Foyle" />
      <xs:enumeration value="Lagan Valley" />
      <xs:enumeration value="Mid Ulster" />
      <xs:enumeration value="Newry &amp; Armagh" />
      <xs:enumeration value="North Antrim" />
      <xs:enumeration value="North Down" />
      <xs:enumeration value="South Antrim" />
      <xs:enumeration value="South Down" />
      <xs:enumeration value="Strangford" />
      <xs:enumeration value="Upper Bann" />
      <xs:enumeration value="West Tyrone" />
      <xs:enumeration value="Aberdeen North" />
      <xs:enumeration value="Aberdeen South" />
      <xs:enumeration value="Airdrie and Shotts" />
      <xs:enumeration value="Angus" />
      <xs:enumeration value="Argyll and Bute" />
      <xs:enumeration value="Ayr, Carrick and Cumnock" />
      <xs:enumeration value="Banff and Buchan" />
      <xs:enumeration value="Berwickshire, Roxburgh and Selkirk" />
      <xs:enumeration value="Caithness, Sutherland and Easter Ross" />
      <xs:enumeration value="Central Ayrshire" />
      <xs:enumeration value="Coatbridge, Chryston and Bellshill" />
      <xs:enumeration value="Cumbernauld, Kilsyth and Kirkintilloch East" />
      <xs:enumeration value="Dumfries and Galloway" />
      <xs:enumeration value="Dumfriesshire, Clydesdale and Tweeddale" />
      <xs:enumeration value="Dundee East" />
      <xs:enumeration value="Dundee West" />
      <xs:enumeration value="Dunfermline and West Fife" />
      <xs:enumeration value="East Dunbartonshire" />
      <xs:enumeration value="East Kilbride, Strathaven and Lesmahagow" />
      <xs:enumeration value="East Lothian" />
      <xs:enumeration value="East Renfrewshire" />
      <xs:enumeration value="Edinburgh East" />
      <xs:enumeration value="Edinburgh North and Leith" />
      <xs:enumeration value="Edinburgh South" />
      <xs:enumeration value="Edinburgh South West" />
      <xs:enumeration value="Edinburgh West" />
      <xs:enumeration value="Falkirk" />
      <xs:enumeration value="Glasgow Central" />
      <xs:enumeration value="Glasgow East" />
      <xs:enumeration value="Glasgow North" />
      <xs:enumeration value="Glasgow North East" />
      <xs:enumeration value="Glasgow North West" />
      <xs:enumeration value="Glasgow South" />
      <xs:enumeration value="Glasgow South West" />
      <xs:enumeration value="Glenrothes" />
      <xs:enumeration value="Gordon" />
      <xs:enumeration value="Inverclyde" />
      <xs:enumeration value="Inverness, Nairn, Badenoch and Strathspey" />
      <xs:enumeration value="Kilmarnock and Loudoun" />
      <xs:enumeration value="Kirkcaldy and Cowdenbeath" />
      <xs:enumeration value="Lanark and Hamilton East" />
      <xs:enumeration value="Linlithgow and East Falkirk" />
      <xs:enumeration value="Livingston" />
      <xs:enumeration value="Midlothian" />
      <xs:enumeration value="Moray" />
      <xs:enumeration value="Motherwell and Wishaw" />
      <xs:enumeration value="Na h-Eileanan an Iar" />
      <xs:enumeration value="North Ayrshire and Arran" />
      <xs:enumeration value="North East Fife" />
      <xs:enumeration value="Ochil and South Perthshire" />
      <xs:enumeration value="Orkney and Shetland" />
      <xs:enumeration value="Paisley and Renfrewshire North" />
      <xs:enumeration value="Paisley and Renfrewshire South" />
      <xs:enumeration value="Perth and North Perthshire" />
      <xs:enumeration value="Ross, Skye and Lochaber" />
      <xs:enumeration value="Rutherglen and Hamilton West" />
      <xs:enumeration value="Stirling" />
      <xs:enumeration value="West Aberdeenshire and Kincardine" />
      <xs:enumeration value="West Dunbartonshire" />
    </xs:restriction>
  </xs:simpleType>

  <!--MonetaryAmountType-->

  <xs:complexType name="MonetaryAmountType">
    <xs:annotation>
      <xs:documentation>A monetary amount.</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="sif:XSDecimalOrEmpty">
        <xs:attribute name="Currency" use="optional" type="sif:ISO4217CurrencyNamesAndCodeElementsType">
          <xs:annotation>
            <xs:documentation>Currency code.  Where omitted, defaults to implementation-defined local currency, typically </xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>


  <!--URIOrBinaryType-->

  <xs:simpleType name="URIOrBinaryType">
    <xs:annotation>
      <xs:documentation>Allows for a URL or a Base-64 encoding.</xs:documentation>
    </xs:annotation>
    <xs:union>
      <xs:simpleType>
        <xs:restriction base="xs:anyURI" />
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:base64Binary" />
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>


  <!--GUIDType-->

  <xs:simpleType name="GUIDType">
    <xs:restriction>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:annotation>
            <xs:documentation>SIF format for a GUID.</xs:documentation>
          </xs:annotation>
          <xs:pattern value="[0-9A-F]{32}" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
        </xs:restriction>
      </xs:simpleType>
    </xs:restriction>
  </xs:simpleType>


  <!--MsgIdType-->

  <xs:simpleType name="MsgIdType">
    <xs:restriction base="sif:GUIDType">
      <xs:annotation>
        <xs:documentation>A message identifier.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>


  <!--RefIdType-->

  <xs:simpleType name="RefIdType">
    <xs:restriction base="sif:GUIDType">
      <xs:annotation>
        <xs:documentation>An object or element identifier.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>


  <!--IdRefType-->

  <xs:simpleType name="IdRefType">
    <xs:restriction base="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>A reference to a RefId.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>


  <!--VersionType-->

  <xs:simpleType name="VersionType">
    <xs:restriction>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:annotation>
            <xs:documentation>A SIF version number.</xs:documentation>
          </xs:annotation>
          <xs:pattern value="[0-9]+[.][0-9]+(r[0-9]+)?" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
        </xs:restriction>
      </xs:simpleType>
    </xs:restriction>
  </xs:simpleType>


  <!--VersionWithWildcardsType-->

  <xs:simpleType name="VersionWithWildcardsType">
    <xs:restriction>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:annotation>
            <xs:documentation>A SIF version number, with wildcards for matching multiple versions.</xs:documentation>
          </xs:annotation>
          <xs:pattern value="\*|([0-9]+[.]\*)|([0-9]+[.][0-9]+r\*)|([0-9]+[.][0-9]+(r[0-9]+)?)" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
        </xs:restriction>
      </xs:simpleType>
    </xs:restriction>
  </xs:simpleType>


  <!--DefinedProtocolsType-->

  <xs:simpleType name="DefinedProtocolsType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The transport protocols defined in SIF.</xs:documentation>
      </xs:annotation>
      <xs:enumeration value="HTTPS" />
      <xs:enumeration value="HTTP" />
    </xs:restriction>
  </xs:simpleType>


  <!--ExtendedContentType-->

  <xs:complexType name="ExtendedContentType">
    <xs:complexContent mixed="true" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:restriction base="xs:anyType">
        <xs:sequence>
          <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" />
        </xs:sequence>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>


  <!--SelectedContentType-->

  <xs:complexType name="SelectedContentType">
    <xs:complexContent mixed="true" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:restriction base="xs:anyType">
        <xs:sequence>
          <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded" />
        </xs:sequence>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>


  <!--SIF_LogEntryExtendedContentType-->

  <xs:complexType name="SIF_LogEntryExtendedContentType">
    <xs:complexContent mixed="true" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:restriction base="xs:anyType">
        <xs:sequence>
          <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded" />
        </xs:sequence>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>


  <!--SIF_ProvideObjectNamesType-->

  <xs:simpleType name="SIF_ProvideObjectNamesType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The SIF object names that can be specified in a </xs:documentation>
      </xs:annotation>
      <xs:enumeration value="ContactPersonal" />
      <xs:enumeration value="LAInfo" />
      <xs:enumeration value="LearnerAttendanceSummary" />
      <xs:enumeration value="LearnerContact" />
      <xs:enumeration value="LearnerExclusion" />
      <xs:enumeration value="LearnerGroupEnrolment" />
      <xs:enumeration value="LearnerPersonal" />
      <xs:enumeration value="LearnerSchoolEnrolment" />
      <xs:enumeration value="LearnerSpecialNeeds" />
      <xs:enumeration value="PersonPicture" />
      <xs:enumeration value="SchoolGroup" />
      <xs:enumeration value="SchoolGroupType" />
      <xs:enumeration value="SchoolInfo" />
      <xs:enumeration value="SIF_LogEntry" />
      <xs:enumeration value="TermInfo" />
      <xs:enumeration value="WorkforcePersonal" />
    </xs:restriction>
  </xs:simpleType>


  <!--SIF_SubscribeObjectNamesType-->

  <xs:simpleType name="SIF_SubscribeObjectNamesType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The SIF object names that can be specified in a </xs:documentation>
      </xs:annotation>
      <xs:enumeration value="ContactPersonal" />
      <xs:enumeration value="LAInfo" />
      <xs:enumeration value="LearnerAttendanceSummary" />
      <xs:enumeration value="LearnerContact" />
      <xs:enumeration value="LearnerExclusion" />
      <xs:enumeration value="LearnerGroupEnrolment" />
      <xs:enumeration value="LearnerPersonal" />
      <xs:enumeration value="LearnerSchoolEnrolment" />
      <xs:enumeration value="LearnerSpecialNeeds" />
      <xs:enumeration value="PersonPicture" />
      <xs:enumeration value="SchoolGroup" />
      <xs:enumeration value="SchoolGroupType" />
      <xs:enumeration value="SchoolInfo" />
      <xs:enumeration value="SIF_AgentACL" />
      <xs:enumeration value="SIF_LogEntry" />
      <xs:enumeration value="SIF_ZoneStatus" />
      <xs:enumeration value="TermInfo" />
      <xs:enumeration value="WorkforcePersonal" />
    </xs:restriction>
  </xs:simpleType>


  <!--SIF_RequestObjectNamesType-->

  <xs:simpleType name="SIF_RequestObjectNamesType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The SIF object names that can be specified in a </xs:documentation>
      </xs:annotation>
      <xs:enumeration value="ContactPersonal" />
      <xs:enumeration value="LAInfo" />
      <xs:enumeration value="LearnerAttendanceSummary" />
      <xs:enumeration value="LearnerContact" />
      <xs:enumeration value="LearnerExclusion" />
      <xs:enumeration value="LearnerGroupEnrolment" />
      <xs:enumeration value="LearnerPersonal" />
      <xs:enumeration value="LearnerSchoolEnrolment" />
      <xs:enumeration value="LearnerSpecialNeeds" />
      <xs:enumeration value="PersonPicture" />
      <xs:enumeration value="SchoolGroup" />
      <xs:enumeration value="SchoolGroupType" />
      <xs:enumeration value="SchoolInfo" />
      <xs:enumeration value="SIF_AgentACL" />
      <xs:enumeration value="SIF_LogEntry" />
      <xs:enumeration value="SIF_ZoneStatus" />
      <xs:enumeration value="TermInfo" />
      <xs:enumeration value="WorkforcePersonal" />
    </xs:restriction>
  </xs:simpleType>


  <!--SIF_ResponseObjectType-->

  <xs:complexType name="SIF_ResponseObjectType">
    <xs:annotation>
      <xs:documentation>The SIF objects that can be included in a </xs:documentation>
    </xs:annotation>
    <xs:choice>
      <xs:element ref="sif:ContactPersonal" />
      <xs:element ref="sif:LAInfo" />
      <xs:element ref="sif:LearnerAttendanceSummary" />
      <xs:element ref="sif:LearnerContact" />
      <xs:element ref="sif:LearnerExclusion" />
      <xs:element ref="sif:LearnerGroupEnrolment" />
      <xs:element ref="sif:LearnerPersonal" />
      <xs:element ref="sif:LearnerSchoolEnrolment" />
      <xs:element ref="sif:LearnerSpecialNeeds" />
      <xs:element ref="sif:PersonPicture" />
      <xs:element ref="sif:SchoolGroup" />
      <xs:element ref="sif:SchoolGroupType" />
      <xs:element ref="sif:SchoolInfo" />
      <xs:element ref="sif:SIF_AgentACL" />
      <xs:element ref="sif:SIF_LogEntry" />
      <xs:element ref="sif:SIF_ZoneStatus" />
      <xs:element ref="sif:TermInfo" />
      <xs:element ref="sif:WorkforcePersonal" />
    </xs:choice>
  </xs:complexType>


  <!--SIF_ResponseObjectsType-->

  <xs:complexType name="SIF_ResponseObjectsType">
    <xs:choice minOccurs="0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:sequence>
        <xs:element ref="sif:ContactPersonal" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LAInfo" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerAttendanceSummary" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerContact" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerExclusion" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerGroupEnrolment" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerPersonal" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerSchoolEnrolment" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:LearnerSpecialNeeds" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:PersonPicture" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SchoolGroup" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SchoolGroupType" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SchoolInfo" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SIF_AgentACL" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SIF_LogEntry" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:SIF_ZoneStatus" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:TermInfo" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:sequence>
        <xs:element ref="sif:WorkforcePersonal" maxOccurs="unbounded" />
      </xs:sequence>
    </xs:choice>
  </xs:complexType>


  <!--SIF_EventObjectType-->

  <xs:complexType name="SIF_EventObjectType">
    <xs:annotation>
      <xs:documentation>The SIF objects that can be included in a </xs:documentation>
    </xs:annotation>
    <xs:choice>
      <xs:element ref="sif:ContactPersonal" />
      <xs:element ref="sif:LAInfo" />
      <xs:element ref="sif:LearnerAttendanceSummary" />
      <xs:element ref="sif:LearnerContact" />
      <xs:element ref="sif:LearnerExclusion" />
      <xs:element ref="sif:LearnerGroupEnrolment" />
      <xs:element ref="sif:LearnerPersonal" />
      <xs:element ref="sif:LearnerSchoolEnrolment" />
      <xs:element ref="sif:LearnerSpecialNeeds" />
      <xs:element ref="sif:PersonPicture" />
      <xs:element ref="sif:SchoolGroup" />
      <xs:element ref="sif:SchoolGroupType" />
      <xs:element ref="sif:SchoolInfo" />
      <xs:element ref="sif:SIF_AgentACL" />
      <xs:element ref="sif:SIF_LogEntry" />
      <xs:element ref="sif:SIF_ZoneStatus" />
      <xs:element ref="sif:TermInfo" />
      <xs:element ref="sif:WorkforcePersonal" />
    </xs:choice>
  </xs:complexType>


  <!--SIF_ExampleObjectType-->

  <xs:complexType name="SIF_ExampleObjectType">
    <xs:annotation>
      <xs:documentation>The SIF objects that can be included in </xs:documentation>
    </xs:annotation>
  </xs:complexType>


  <!--SIF_HeaderDataModelType-->

  <xs:complexType name="SIF_HeaderDataModelType">
    <xs:annotation>
      <xs:documentation>Header information associated with a message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_MsgId" minOccurs="0" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>SIF_MsgId is a globally unique message identifier from the Agent or ZIS that sends out the message.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Timestamp" minOccurs="0" type="xs:dateTime">
        <xs:annotation>
          <xs:documentation>Timestamp of when the message was sent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Security" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SecureChannel" minOccurs="0">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_AuthenticationLevel" minOccurs="0" />
                  <xs:element ref="sif:SIF_EncryptionLevel" minOccurs="0" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SourceId" minOccurs="0" type="xs:token">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId is the ID of the originator of the message. Each source needs to have a zone unique case-sensitive identifier.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_DestinationId" minOccurs="0" nillable="true" type="xs:token">
        <xs:annotation>
          <xs:documentation>This element represents the ID of the recipient of the message and may be present as follows:</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Contexts" minOccurs="0" nillable="true" type="sif:SIF_ContextsType">
        <xs:annotation>
          <xs:documentation>
              Contains each SIF Context that applies to the message.  If omitted, the applicable context is SIF_Default.
              SIF_Context is repeatable for SIF_Events, not repeatable for SIF_Request or SIF_Response.
            </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>


  <!--SIF_ErrorDataModelType-->

  <xs:complexType name="SIF_ErrorDataModelType">
    <xs:annotation>
      <xs:documentation>This element is used to signal an unsuccessful response.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Category" minOccurs="0" type="sif:InfrastructureErrorCategoryType" />
      <xs:element name="SIF_Code" minOccurs="0">
        <xs:annotation>
          <xs:documentation>
              See Error Codes.
            </xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureXMLValidationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEncryptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAuthenticationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAccessAndPermissionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRegistrationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureProvisionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSubscriptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRequestAndResponseErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEventReportingAndProcessingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureTransportErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSystemErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureGenericMessageHandlingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="xs:token" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Desc" minOccurs="0" type="xs:string">
        <xs:annotation>
          <xs:documentation>A simple, easy to understand, description of the error. The primary consumer of this message is the application user. Example: "Unable to open database."</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_ExtendedDesc" minOccurs="0" nillable="true" type="xs:string">
        <xs:annotation>
          <xs:documentation>An optional error description that is more complete and technical in nature. It is to be used as a diagnostic message in trouble-shooting procedures. Example: "The 'Students' table is opened in exclusive mode by user 'ADM1' (dbm.cpp, line 300)."</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>


  <!--SIF_QueryDataModelType-->

  <xs:complexType name="SIF_QueryDataModelType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_QueryObject" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Individual elements/attributes being requested of matching object.  See SIF_Element Syntax below. 
						If specified, only the elements/attributes requested are returned in the SIF_Response (with any parent elements/attributes); 
						otherwise, all elements supported by the provider's object are returned.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being queried for.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_ConditionGroup" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Conditions" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Condition" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Element" minOccurs="0" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>This is the element/attribute being queried.  See below for syntax.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="SIF_Operator" minOccurs="0">
                          <xs:annotation>
                            <xs:documentation>The comparison operator for the condition.</xs:documentation>
                          </xs:annotation>
                          <xs:simpleType>
                            <xs:restriction base="xs:token">
                              <xs:enumeration value="EQ">
                                <xs:annotation>
                                  <xs:documentation>Equals</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="LT">
                                <xs:annotation>
                                  <xs:documentation>Less Than</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="GT">
                                <xs:annotation>
                                  <xs:documentation>Greater Than</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="LE">
                                <xs:annotation>
                                  <xs:documentation>Less Than Or Equals</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="GE">
                                <xs:annotation>
                                  <xs:documentation>Greater Than Or Equals</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="NE">
                                <xs:annotation>
                                  <xs:documentation>Not Equals</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                        <xs:element name="SIF_Value" minOccurs="0" type="xs:string">
                          <xs:annotation>
                            <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="And" />
                      <xs:enumeration value="Or" />
                      <xs:enumeration value="None" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="Type" use="required">
            <xs:annotation>
              <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="And" />
                <xs:enumeration value="Or" />
                <xs:enumeration value="None" />
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Example" minOccurs="0" nillable="true" type="sif:SIF_ExampleObjectType">
        <xs:annotation>
          <xs:documentation>
							An example SIF object that serves as a template for matching objects.  There is an implied EQ operator
							for every element/attribute value present and an implied And group of all resulting conditions.  Currently
							this is an experimental feature and limited to use with select objects; wider use may be considered in future
							versions of this specification.
						</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>


  <!--SIF_ExtendedQueryDataModelType-->

  <xs:complexType name="SIF_ExtendedQueryDataModelType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism for SIF_Request, SIF_Query, has several limitations that limit its usefulness when creating reporting applications
						that process data from a SIF zone.  SIF_Query is limited to matching only one object type per query, requiring applications to
						manually join together results as needed for reporting and general data processing.  SIF_ExtendedQuery is designed to allow for joins on
						object identifiers/RefIds and to allow retrieval of data in a row/column fashion similar to SQL.  Each returned column may contain hierarchical XML elements/objects.
						Providers and Responders in a Zone may support SIF_ExtendedQuery
							in addition to SIF_Query.  Support for SIF_ExtendedQuery can be declared in and retrieved from the Zone is various Infrastructure
							messages and objects.
						</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_DestinationProvider" minOccurs="0" nillable="true" type="sif:SIF_RequestObjectNamesType">
        <xs:annotation>
          <xs:documentation>
              If no SIF_DestinationId applies to the request and this element is supplied, the Requester specifies that the
              extended query be routed to the Provider on record for the given object name.  If this element is omitted and no SIF_DestinationId
              applies to the request, the ZIS routes the request to the Provider on record for the object name in SIF_From.
            </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Select" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Indicates the element/attribute to return as a column.  Contents can be left empty to return the whole object specified in ObjectName,
						or * can be designated to return all attributes and immediate child elements of the object specified in ObjectName, or 
							SIF_Element Syntax can be specified, relative to the object specified in ObjectName.  Requested attributes
							are to be returned as the text value of the corresponding attribute, elements as a copy of the XML element itself including attributes if they exist.
					</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Alias" use="optional" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>Optional caption for the column.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object from which to retrieve element/attributes.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="Distinct" use="required" type="xs:boolean">
            <xs:annotation>
              <xs:documentation>Specifies whether query results should return all rows (false) or just distinct ones (true).  Rows are distinct if
						at least one column differs between them.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RowCount" use="required">
            <xs:annotation>
              <xs:documentation>The maximum number of rows to return.  If All, return all rows, otherwise return the top rows up to the maximum
						row count indicated.
					</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:union>
                <xs:simpleType>
                  <xs:restriction base="xs:positiveInteger" />
                </xs:simpleType>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="All" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:union>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_From" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Join" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_JoinOn" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_LeftElement" minOccurs="0">
                          <xs:annotation>
                            <xs:documentation>Specifies the left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                        <xs:element name="SIF_RightElement" minOccurs="0">
                          <xs:annotation>
                            <xs:documentation>Specifies right left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>Type of relational join.</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Inner" />
                      <xs:enumeration value="LeftOuter" />
                      <xs:enumeration value="RightOuter" />
                      <xs:enumeration value="FullOuter" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The name of the object to query.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Where" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ConditionGroup" minOccurs="0">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Conditions" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Condition" minOccurs="0" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_Element" minOccurs="0">
                                <xs:annotation>
                                  <xs:documentation>This is the element/attribute being queried.</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                  <xs:simpleContent>
                                    <xs:extension base="xs:normalizedString">
                                      <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                        <xs:annotation>
                                          <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                                        </xs:annotation>
                                      </xs:attribute>
                                    </xs:extension>
                                  </xs:simpleContent>
                                </xs:complexType>
                              </xs:element>
                              <xs:element name="SIF_Operator" minOccurs="0">
                                <xs:annotation>
                                  <xs:documentation>The comparison operator for the condition.</xs:documentation>
                                </xs:annotation>
                                <xs:simpleType>
                                  <xs:restriction base="xs:token">
                                    <xs:enumeration value="EQ">
                                      <xs:annotation>
                                        <xs:documentation>Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LT">
                                      <xs:annotation>
                                        <xs:documentation>Less Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GT">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LE">
                                      <xs:annotation>
                                        <xs:documentation>Less Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GE">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="NE">
                                      <xs:annotation>
                                        <xs:documentation>Not Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                  </xs:restriction>
                                </xs:simpleType>
                              </xs:element>
                              <xs:element name="SIF_Value" minOccurs="0" type="xs:string">
                                <xs:annotation>
                                  <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                      <xs:attribute name="Type" use="required">
                        <xs:annotation>
                          <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                          <xs:restriction base="xs:token">
                            <xs:enumeration value="And" />
                            <xs:enumeration value="Or" />
                            <xs:enumeration value="None" />
                          </xs:restriction>
                        </xs:simpleType>
                      </xs:attribute>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="And" />
                      <xs:enumeration value="Or" />
                      <xs:enumeration value="None" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_OrderBy" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>
							Indicates the element/attribute by which to sort.
						</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Ordering" use="required">
                      <xs:annotation>
                        <xs:documentation>Whether to order the element/attribute in ascending or descending order.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Ascending" />
                          <xs:enumeration value="Descending" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>


  <!--SIF_ExtendedQueryResultsDataModelType-->

  <xs:complexType name="SIF_ExtendedQueryResultsDataModelType">
    <xs:annotation>
      <xs:documentation>
              This element provides a wrapper for data returned in response to a SIF_ExtendedQuery.  Used in SIF_Response
              and SIF_ReportObject.
            </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ColumnHeaders" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The element/attribute specified for the column in SIF_ExtendedQuery.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The object in which the element/attribute occurs.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Alias" use="optional" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>The caption for the column, if specified in SIF_ExtendedQuery.
					</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <!--<xs:attribute ref="xsi:type" use="optional" />-->
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Rows" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="R" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="C" minOccurs="0" maxOccurs="unbounded" type="sif:SelectedContentType">
                    <xs:annotation>
                      <xs:documentation>
              Contains the value of each column specified in SIF_ExtendedQuery/SIF_Select.  
							The order of the columns must correspond to the order of the elements as requested in SIF_ExtendedQuery.
							Note the number of columns may be expanded from the requested columns if * is indicated
							one or more times in the SIF_Select clause.
            </xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <!--XSDecimalOrEmpty-->

<xs:simpleType name="XSDecimalOrEmpty">
  <xs:union>
    <xs:simpleType>
      <xs:restriction base="xs:decimal" />
    </xs:simpleType>
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:length value="0" />
      </xs:restriction>
    </xs:simpleType>
  </xs:union>
</xs:simpleType>

<!--UKSENTypeTypeOrEmpty-->

<xs:simpleType name="UKSENTypeTypeOrEmpty">
  <xs:union>
    <xs:simpleType>
      <xs:restriction base="sif:UKSENTypeType" />
    </xs:simpleType>
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:length value="0" />
      </xs:restriction>
    </xs:simpleType>
  </xs:union>
</xs:simpleType>

<!--URIOrBinaryTypeOrEmpty-->

<xs:simpleType name="URIOrBinaryTypeOrEmpty">
  <xs:union>
    <xs:simpleType>
      <xs:restriction base="sif:URIOrBinaryType" />
    </xs:simpleType>
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:length value="0" />
      </xs:restriction>
    </xs:simpleType>
  </xs:union>
</xs:simpleType>

</xs:schema>