> ## Documentation Index
> Fetch the complete documentation index at: https://docs.udiconnect.io/llms.txt
> Use this file to discover all available pages before exploring further.

# EUDAMED SPP Submit

> Submit UDI-DI and Basic UDI-DI data to EUDAMED database (productive System).



## OpenAPI

````yaml post /api/v1/submit/EU_UDI_SPP
openapi: 3.1.0
info:
  title: OpenAPI definition
  version: v0
servers:
  - url: https://api-preview.udiconnect.io
    description: P36 UDI Hub API Server
security:
  - ApiKeyAuth: []
paths:
  /api/v1/submit/EU_UDI_SPP:
    post:
      tags:
        - Submission
      summary: EUDAMED SPP Submit
      description: >-
        Submit UDI-DI and Basic UDI-DI data to EUDAMED database (productive
        System).
      operationId: submitUdiData
      parameters: []
      requestBody:
        description: Data to be submitted
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmissionRequest'
            examples:
              Valid Request:
                description: A valid request for submitting a new data model
                value:
                  device:
                    IssuingAgency: GS1
                    Device: '00315616744805'
                    DeviceGroup: 439990265910KB
                    CommercialDistributionStatus: ON_THE_MARKET
                    ProductionIdentifier:
                      - BATCH_NUMBER
                    ReferenceNumber: 37588-474
                    MDN:
                      - A0101010101
                    Sterile: false
                    ReqSterilizatonPriorUse: true
                    AdditionalDeviceDescriptions:
                      - AdditionalDeviceDescription: p36 Test Device
                        AdditionalDeviceDescriptionLanguage: EN
                  deviceGroup:
                    DeviceGroupAgency: GS1
                    DeviceGroup: 439990265910KB
                    ApplicableLegislation: MDR_SPP
                    SPPType: SYSTEM
                    PRActorCode: DE-PR-000018401
                    DeviceName: p36 Test Device Name
                    RiskClass: CLASS_I
                    MedicalPurposes:
                      - MedicalPurposeLanguage: EN
                        MedicalPurpose: Medicinal Purpose
              Full Data Example:
                description: Full Data Example
                value:
                  device:
                    IssuingAgency: GS1
                    Device: '00323079270199'
                    Material: 123456-001
                    MaterialText: p36 Test Device
                    OrgUnit: Bad Hersfeld
                    DeviceGroup: 439990279001K4
                    CommercialDistributionStatus: ON_THE_MARKET
                    ProductionIdentifier:
                      - MANUFACTURING_DATE
                      - BATCH_NUMBER
                    ReferenceNumber: 37588-474
                    SecondaryDiAgency: HIBCC
                    SecondaryDi: +A999P36TESTDEVICEXX
                    MDN:
                      - A0101010101
                    Website: www.p36.io
                    Sterile: false
                    ReqSterilizatonPriorUse: true
                    Packages:
                      - PackagingDi: '00359412962322'
                        NumberOfItems: 10
                        Child: '00363932443216'
                        ChildIssuingAgency: GS1
                        Status: ON_THE_MARKET
                    AdditionalTradeNames:
                      - AdditionalTradeName: p36 Test Device
                        AdditionalTradeNameLanguage: EN
                    AdditionalDeviceDescriptions:
                      - AdditionalDeviceDescription: p36 Test Device
                        AdditionalDeviceDescriptionLanguage: EN
                    Storage:
                      - StorageType: SHC99
                        StorageConditionLocalized:
                          - language: EN
                            value: Special Storage Condition
                    Warnings:
                      - Type: CW999
                        WarningCommentLocalized:
                          - language: EN
                            value: Warning Comment
                  deviceGroup:
                    DeviceGroupAgency: GS1
                    DeviceGroup: 439990279001K4
                    ApplicableLegislation: MDR_SPP
                    OrgUnit: Bad Hersfeld
                    SPPType: SYSTEM
                    PRActorCode: DE-PR-000018401
                    DeviceName: p36 Test Device Name
                    RiskClass: CLASS_I
                    DeviceModel: p36 Test Device Name
                    MedicalPurposes:
                      - MedicalPurposeLanguage: EN
                        MedicalPurpose: Medicinal Purpose
        required: true
      responses:
        '200':
          description: Submission Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionSuccessResponse'
              examples:
                Submission Successful:
                  description: Submission processed successfully
                  value:
                    agency: EC
                    requestId: string
                    modelInformation: string
                    status: SUCCESS
                    statusText: Submission successfully validated and accepted
        '400':
          description: Submission Validation Error
          content:
            application/json:
              schema:
                type: object
                oneOf:
                  - $ref: '#/components/schemas/SubmissionValidationErrorResponse'
                  - $ref: >-
                      #/components/schemas/SubmissionRequestValidationErrorResponse
              examples:
                Submission Validation Error:
                  description: Submission validation error
                  value:
                    status: failed
                    message: Validation failed
                    deviceErrors:
                      - path: string
                        message: string
                        ruleId: string
                    deviceGroupErrors:
                      - path: string
                        message: string
                        ruleId: string
                Submission Request Validation Error:
                  description: Submission request validation error
                  value:
                    agency: EC
                    requestId: string
                    modelInformation: string
                    status: INVALID_REQUEST
                    statusText: request data is invalid according to the authority rules
                    reasons:
                      - No actor code was provided
        '409':
          description: Submission Blocked
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionBlockedResponse'
              examples:
                Submission Blocked:
                  description: >-
                    Submission blocked - Request cannot be processed due to
                    business rules
                  value:
                    agency: EC
                    requestId: string
                    modelInformation: string
                    status: BLOCKED
                    statusText: Submission blocked due to business rules
                    reasons:
                      - >-
                        Entity X is not submittable because of its current state
                        (In Submission) 
        '500':
          description: Technical Processing Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionTechnicalErrorResponse'
              examples:
                Internal Server Error:
                  description: Technical processing error - Internal server error occurred
                  value:
                    timestamp: string
                    status: 500
                    error: Internal Server Error
                    message: string
components:
  schemas:
    SubmissionRequest:
      type: object
      properties:
        actorCode:
          type: string
        securityToken:
          type: string
        authorizedRepresentativeCode:
          type: string
        device:
          $ref: '#/components/schemas/DEVICE_EU_UDI_SPP'
          description: required for all EC submissions
        deviceGroup:
          $ref: '#/components/schemas/DEVICE_GROUP_EU_UDI_SPP'
          description: required for all EC submissions if not already submitted & published
    SubmissionSuccessResponse:
      type: object
      description: Response for successful submission processing
      properties:
        agency:
          type: string
          description: Regulatory agency information
          enum:
            - COMMON_DEVICE_DATA
            - FDA
            - EC
            - NMPA
            - MFDS
            - GDSN
            - SFDA
            - TFDA
            - TGA
            - HSA
        requestId:
          type: string
          description: The unique identifier for the submission request
        modelInformation:
          type: string
          description: >-
            Information about the model and use case data used for processing
            the request
        status:
          type: string
          description: Submission response status
          enum:
            - INTERNAL_ERROR
            - SUCCESS
            - BLOCKED
            - VALIDATION_FAILED
            - INVALID_REQUEST
        statusText:
          type: string
          description: Submission response status text
          readOnly: true
    SubmissionValidationErrorResponse:
      type: object
      properties:
        agency:
          type: string
          description: Regulatory agency information
          enum:
            - COMMON_DEVICE_DATA
            - FDA
            - EC
            - NMPA
            - MFDS
            - GDSN
            - SFDA
            - TFDA
            - TGA
            - HSA
        requestId:
          type: string
          description: The unique identifier for the submission request
        modelInformation:
          type: string
          description: >-
            Information about the model and use case data used for processing
            the request
        validationResult:
          $ref: '#/components/schemas/ValidationResponse'
          description: Detailed information about the validation failures
        status:
          type: string
          description: Submission response status
          enum:
            - INTERNAL_ERROR
            - SUCCESS
            - BLOCKED
            - VALIDATION_FAILED
            - INVALID_REQUEST
        statusText:
          type: string
          description: Submission response status text
          readOnly: true
    SubmissionRequestValidationErrorResponse:
      type: object
      description: Response for validation failures during submission processing
      properties:
        agency:
          type: string
          description: Regulatory agency information
          enum:
            - COMMON_DEVICE_DATA
            - FDA
            - EC
            - NMPA
            - MFDS
            - GDSN
            - SFDA
            - TFDA
            - TGA
            - HSA
        requestId:
          type: string
          description: The unique identifier for the submission request
        modelInformation:
          type: string
          description: >-
            Information about the model and use case data used for processing
            the request
        reasons:
          type: array
          description: List of reasons why the request in not accepted
          items:
            type: string
        status:
          type: string
          description: Submission response status
          enum:
            - INTERNAL_ERROR
            - SUCCESS
            - BLOCKED
            - VALIDATION_FAILED
            - INVALID_REQUEST
        statusText:
          type: string
          description: Submission response status text
          readOnly: true
    SubmissionBlockedResponse:
      type: object
      description: Response for blocked submissions due to business rules
      properties:
        agency:
          type: string
          description: Regulatory agency information
          enum:
            - COMMON_DEVICE_DATA
            - FDA
            - EC
            - NMPA
            - MFDS
            - GDSN
            - SFDA
            - TFDA
            - TGA
            - HSA
        requestId:
          type: string
          description: The unique identifier for the submission request
        modelInformation:
          type: string
          description: >-
            Information about the model and use case data used for processing
            the request
        reasons:
          type: array
          description: List of reasons why the submission was blocked
          items:
            type: string
        status:
          type: string
          description: Submission response status
          enum:
            - INTERNAL_ERROR
            - SUCCESS
            - BLOCKED
            - VALIDATION_FAILED
            - INVALID_REQUEST
        statusText:
          type: string
          description: Submission response status text
          readOnly: true
    SubmissionTechnicalErrorResponse:
      type: object
      description: Response for technical errors during submission processing
      properties:
        agency:
          type: string
          description: Regulatory agency information
          enum:
            - COMMON_DEVICE_DATA
            - FDA
            - EC
            - NMPA
            - MFDS
            - GDSN
            - SFDA
            - TFDA
            - TGA
            - HSA
        requestId:
          type: string
          description: The unique identifier for the submission request
        modelInformation:
          type: string
          description: >-
            Information about the model and use case data used for processing
            the request
        reasons:
          type: array
          description: List of errors that occurred during submission processing
          items:
            type: string
        status:
          type: string
          description: Submission response status
          enum:
            - INTERNAL_ERROR
            - SUCCESS
            - BLOCKED
            - VALIDATION_FAILED
            - INVALID_REQUEST
        statusText:
          type: string
          description: Submission response status text
          readOnly: true
    DEVICE_EU_UDI_SPP:
      type: object
      properties:
        OrgUnit:
          type: string
        ReqSterilizatonPriorUse:
          type: boolean
          description: >-
            Property defines if the UDI-DI needs to be sterilised before use or
            not
        MaterialText:
          type: string
          description: Name of the Material of the device.
        Device:
          type: string
          description: >-
            The UDI-DI is a unique numeric or alphanumeric code specific to a 
            device and that is also used as the 'access key' to information
            stored in a UDI database
        AdditionalTradeNames:
          type: object
          description: >-
            Device Trade Name assigned to the UDI-DI\n\nTrade names can be
            provided if applicable for the device. Several Trade- Names can be
            provided for the Device in the same language or in different
            languages
          maxItems: 0
          minItems: 0
          properties:
            AdditionalTradeNameLanguage:
              type: string
              enum:
                - ANY
                - BG
                - CS
                - DA
                - DE
                - EL
                - EN
                - ES
                - ET
                - FI
                - FR
                - GA
                - HR
                - HU
                - IS
                - IT
                - LT
                - LV
                - MT
                - NL
                - 'NO'
                - PL
                - PT
                - RO
                - SK
                - SL
                - SV
                - TR
            AdditionalTradeName:
              type: string
              description: >-
                Device Trade Name assigned to the UDI-DI\n\nTrade names can be
                provided if applicable for the device. Several Trade- Names can
                be provided for the Device in the same language or in different
                languages
          required:
            - AdditionalTradeName
            - AdditionalTradeNameLanguage
        ReferenceNumber:
          type: string
          description: Property stores the Reference or Catalogue Number of the Device
        Sterile:
          type: boolean
          description: Property defines if the UDI-DI is labeled as Sterile or not
        DeviceGroup:
          type: string
          description: Reference to the Basic UDI-DI to which the Device is associated
        Website:
          type: string
          description: >-
            Manufacturer`s website where additional information about the device
            (UDI-DI)  are available
        IssuingAgency:
          type: string
          description: >-
            Organization accredited by European Commission to operate a system
            for the issuance of UDIs
          enum:
            - GS1
            - HIBCC
            - ICCBBA
            - IFA
        Material:
          type: string
          description: Material number of the device.
        SecondaryDi:
          type: string
          description: >-
            Secondary UDI DI Code - reference to the Secondary UDI-DI registered
            for the current UDI-DI . \n\nAdditional DI  associated to this
            UDI-DI. \nOnly one  Secondary UDI-DI (Additional UDI-DI)  can be
            associated to a UDI-DI
        SecondaryDiAgency:
          type: string
          description: >-
            Organization accredited by European Commission to operate a system
            for the issuance of UDIs
          enum:
            - GS1
            - HIBCC
            - ICCBBA
            - IFA
        CommercialDistributionStatus:
          type: string
          description: >-
            Status of the Device (On the EU market, Not intended to be placed on
            the EU Market,  No longer placed on the EU market).
          enum:
            - NOT_INTENDED_FOR_EU_MARKET
            - NO_LONGER_PLACED_ON_THE_MARKET
            - ON_THE_MARKET
        Storage:
          type: object
          description: >-
            References the Storage and Handling Conditions  associated to the
            Device (UDI-DI)
          properties:
            StorageType:
              type: string
              description: >-
                Storage and handling Conditions specified on the Label of the
                Device have to be registered in EUDAMED - if applicable.
                \n\nField stores the Type of Storage and Handling Conditions.
                Field is Applicable only when the type of Conditions for Use
                have the Type Storage / handling Conditions, being required in
                this case.
              enum:
                - SHC001
                - SHC002
                - SHC003
                - SHC004
                - SHC005
                - SHC006
                - SHC007
                - SHC008
                - SHC009
                - SHC010
                - SHC012
                - SHC013
                - SHC014
                - SHC015
                - SHC016
                - SHC017
                - SHC018
                - SHC019
                - SHC021
                - SHC022
                - SHC023
                - SHC024
                - SHC025
                - SHC033
                - SHC035
                - SHC036
                - SHC037
                - SHC038
                - SHC042
                - SHC044
                - SHC045
                - SHC046
                - SHC047
                - SHC099
            StorageConditionLocalized:
              type: string
              description: >-
                Comments or description associated to the values selected form
                the Storage or handling Conditions or Critical warnings
          required:
            - StorageType
        MDN:
          type: string
          description: >-
            The Device Nomenclature Code(s) associated with the UDI-DI. \nThe
            corresponding EMDN Nomenclature Code will be stored in the field\n\n
          enum:
            - A0101010101
            - A0101010102
            - A0101010201
            - A0101010202
            - A01010199
            - A01010201
            - A01010202
            - A01010301
            - A01010302
            - A010104
            - A01010501
            - A01010502
            - A010106
            - A01018001
            - A01018099
            - A010199
            - A0102010101
            - A0102010102
            - A01020102
            - A01020199
            - A01020201
            - A01020202
            - A01020203
            - A01020204
            - A01020299
            - A01020301
            - A01020302
            - A01020303
            - A01020399
            - A01020401
            - A01020402
            - A01020501
            - A01020502
            - A01020599
            - A010206
            - A010207
            - A010299
            - A01030101
            - A01030102
            - A01030103
            - A010302
            - A010399
            - A010401
            - A010480
            - A010499
            - A010501
            - A010502
            - A010503
            - A010504
            - A010505
            - A010506
            - A010599
            - A010601
            - A010602
            - A010699
            - A018001
            - A018002
            - A018003
            - A018004
            - A018005
            - A018006
            - A018099
            - A019001
            - A019002
            - A019003
            - A019004
            - A019005
            - A019006
            - A019007
            - A019008
            - A019009
            - A019010
            - A019011
            - A019012
            - A019013
            - A019014
            - A019015
            - A019016
            - A019099
            - A0199
            - A020101
            - A020102010101
            - A020102010102
            - A020102010201
            - A020102010202
            - A020102020101
            - A020102020102
            - A02010203
            - A02010204
            - A02010205
            - A02010299
            - A02010401
            - A02010499
            - A02010501
            - A02010502
            - A02010601
            - A02010602
            - A0201060301
            - A0201060302
            - A02010699
            - A02010701
            - A02010702
            - A02010799
            - A020108
            - A020109
            - A020199
            - A020201
            - A020202
            - A020203
            - A020299
            - A0280
            - A0299
            - A03010101
            - A03010102
            - A03010103
            - A03010104
            - A03010105
            - A03010199
            - A03010201
            - A03010202
            - A03010299
            - A03010301
            - A03010302
            - A03010399
            - A030104
            - A030105
            - A030199
            - A03020101
            - A03020102
            - A03020199
            - A0303
            - A03040101
            - A03040102
            - A03040199
            - A03040201
            - A03040202
            - A03040203
            - A03040204
            - A03040299
            - A030403
            - A030499
            - A0380
            - A0399
            - A04010101
            - A04010102
            - A04010199
            - A040180
            - A040199
            - A0499
            - A05010101
            - A05010102
            - A05010201
            - A05010202
            - A0502
            - A0580
            - A0599
            - A0601010101
            - A0601010102
            - A0601010103
            - A0601010199
            - A0601010201
            - A0601010299
            - A06010103
            - A0601010401
            - A0601010402
            - A0601010403
            - A0601010499
            - A06010199
            - A060102
            - A060199
            - A060201
            - A060202
            - A060203
            - A060204
            - A060205
            - A060206
            - A060299
            - A060301
            - A060302
            - A06030301
            - A06030302
            - A06030399
            - A06030401
            - A06030499
            - A060399
            - A0680
            - A0699
            - A070101
            - A070102
            - A070103
            - A070199
            - A0702
            - A0703
            - A0704
            - A070501
            - A07050201
            - A07050202
            - A070599
            - A0706
            - A0799
            - A080101
            - A080102
            - A080199
            - A080201
            - A080299
            - A088001
            - A088099
            - A0899
            - A090101
            - A090199
            - A0980
            - A0999
            - A1001010101
            - A1001010102
            - A1001010201
            - A1001010202
            - A1001020101
            - A1001020102
            - A1001020201
            - A1001020202
            - A1001030101
            - A1001030102
            - A1001030201
            - A1001030202
            - A100104
            - A100199
            - A1002010101
            - A1002010102
            - A1002010201
            - A1002010202
            - A1002010301
            - A1002010302
            - A1002010401
            - A1002010402
            - A10020201
            - A10020202
            - A10020301
            - A10020302
            - A10020401
            - A10020402
            - A100205
            - A100299
            - A100301
            - A100302
            - A100399
            - A108001
            - A108002
            - A108003
            - A108004
            - A108005
            - A108006
            - A108007
            - A108008
            - A108009
            - A108099
            - A1099
            - A1101
            - A1102
            - A12
            - A13
            - A99
            - B0101010101
            - B0101010199
            - B0101010201
            - B0101010202
            - B0101010203
            - B0101010299
            - B0101020101
            - B0101020102
            - B0101020199
            - B0101020201
            - B0101020202
            - B0101020299
            - B010199
            - B010201
            - B010202
            - B010299
            - B0103
            - B010401
            - B010402
            - B010403
            - B010499
            - B0105
            - B0180
            - B019001
            - B019002
            - B019003
            - B019004
            - B0199
            - B02010101
            - B02010102
            - B02010199
            - B02010201
            - B02010202
            - B02010299
            - B020201
            - B020202
            - B0280
            - B0299
            - B030101
            - B030102
            - B030103
            - B030104
            - B030199
            - B030201
            - B030202
            - B030203
            - B030204
            - B030299
            - B0380
            - B0399
            - B0401
            - B0402
            - B0480
            - B0499
            - B0501
            - B0502
            - B0599
            - B06
            - B07
            - B99
            - C0101010101
            - C0101010102
            - C0101010201
            - C0101010202
            - C01010103
            - C01010180
            - C01010199
            - C010102
            - C010103
            - C010104
            - C010180
            - C010199
            - C01020101
            - C01020102
            - C01020201
            - C01020202
            - C01020203
            - C01020301
            - C01020302
            - C01020303
            - C01020401
            - C01020402
            - C01020499
            - C010280
            - C010299
            - C010301
            - C010302
            - C010303
            - C010380
            - C010399
            - C0104010101
            - C0104010102
            - C0104010199
            - C010401020101
            - C010401020102
            - C010401020180
            - C010401020199
            - C0104010202
            - C0104010203
            - C010401020401
            - C010401020402
            - C010401020480
            - C010401020499
            - C010401020501
            - C010401020502
            - C010401020580
            - C0104010280
            - C0104010299
            - C01040180
            - C01040199
            - C0104020101
            - C0104020102
            - C0104020103
            - C0104020180
            - C0104020199
            - C010402020101
            - C010402020102
            - C010402020180
            - C010402020199
            - C0104020202
            - C010402020301
            - C010402020302
            - C010402020303
            - C010402020380
            - C010402020399
            - C0104020204
            - C0104020205
            - C010402020601
            - C010402020602
            - C010402020680
            - C010402020699
            - C010402020701
            - C010402020702
            - C010402020780
            - C0104020208
            - C0104020209
            - C0104020280
            - C0104020299
            - C01040280
            - C01040299
            - C010403
            - C010480
            - C010499
            - C01050101
            - C01050102
            - C01050201
            - C01050202
            - C01050203
            - C01050299
            - C010580
            - C010599
            - C0180
            - C019001
            - C019002
            - C019003
            - C019004
            - C019005
            - C019006
            - C019007
            - C019008
            - C019009
            - C019010
            - C01901101
            - C01901102
            - C01901201
            - C01901202
            - C019013
            - C019014
            - C019015
            - C019016
            - C019017
            - C019018
            - C01901901
            - C01901902
            - C01901903
            - C01901999
            - C019020
            - C0199
            - C020101
            - C020102
            - C020103
            - C02010401
            - C02010402
            - C02010403
            - C02010499
            - C020105
            - C020180
            - C020199
            - C020201
            - C020202
            - C020203
            - C020280
            - C020299
            - C020301
            - C020302
            - C020304
            - C020305
            - C020380
            - C020399
            - C020401
            - C02040201
            - C02040202
            - C02040299
            - C020480
            - C020499
            - C020501
            - C020599
            - C0280
            - C0299
            - C03010101
            - C03010102
            - C03010104
            - C03010199
            - C030102
            - C03010301
            - C03010399
            - C0301040101
            - C0301040102
            - C0301040201
            - C0301040202
            - C03010403
            - C0301040401
            - C0301040402
            - C0301040499
            - C03010405
            - C03010406
            - C03010499
            - C030180
            - C030199
            - C0380
            - C03900101
            - C03900102
            - C03900201
            - C03900202
            - C03900203
            - C03900299
            - C0399
            - C04010101
            - C04010102
            - C04010199
            - C04010201
            - C04010202
            - C04010299
            - C04020101
            - C04020102
            - C04020199
            - C04020201
            - C04020202
            - C04020299
            - C04030101
            - C04030102
            - C04030199
            - C04030201
            - C04030202
            - C04030299
            - C0480
            - C0499
            - C0501
            - C0502
            - C0503
            - C0504
            - C058001
            - C058099
            - C0599
            - C0601
            - C0602
            - C0603
            - C0699
            - C900101
            - C900102
            - C90010301
            - C90010302
            - C90010303
            - C90010399
            - C900180
            - C900199
            - C9002
            - C900301
            - C900399
            - C9005
            - C9006
            - C9080
            - C99
            - D01010101
            - D01010102
            - D01010103
            - D01010201
            - D010103
            - D010199
            - D0199
            - D02010101
            - D02010102
            - D02010199
            - D020102
            - D020199
            - D0299
            - D03010101
            - D03010102
            - D03010199
            - D030102
            - D030103
            - D030199
            - D0302
            - D030301
            - D030302
            - D030399
            - D0399
            - D050101
            - D050102
            - D050103
            - D050199
            - D0502
            - D0599
            - D06010101
            - D06010199
            - D060102
            - D060199
            - D0699
            - D0701
            - D0702
            - D0799
            - D0801
            - D0899
            - D0901
            - D0902
            - D99
            - F01060101
            - F01060102
            - F01060103
            - F01060199
            - F01060201
            - F01060202
            - F01060203
            - F01060299
            - F01060301
            - F01060302
            - F01060303
            - F01060399
            - F010604
            - F010701
            - F010702
            - F010799
            - F01080101
            - F01080102
            - F01080201
            - F01080202
            - F0109
            - F0199
            - F020101
            - F020102
            - F020104
            - F020180
            - F020199
            - F02020101
            - F02020102
            - F02020199
            - F02020201
            - F02020202
            - F02020299
            - F020280
            - F020299
            - F0299
            - F0301
            - F0302
            - F0303
            - F0304
            - F0305
            - F0306
            - F0307
            - F0399
            - F040101
            - F040102
            - F040201
            - F040202
            - F040302
            - F040399
            - F0404
            - F0499
            - F05
            - F900101
            - F900199
            - F900201
            - F900202
            - F900299
            - F900301
            - F900302
            - F90040101
            - F90040102
            - F900402
            - F9006
            - F9080
            - F9099
            - G010101
            - G010102
            - G010199
            - G010201
            - G010202
            - G010299
            - G010301
            - G010302
            - G010303
            - G010304
            - G010305
            - G010399
            - G0180
            - G0199
            - G020101
            - G020102
            - G020199
            - G02020101
            - G02020102
            - G02020199
            - G02020201
            - G02020202
            - G02020203
            - G020299
            - G020301
            - G020399
            - G020401
            - G020402
            - G020499
            - G020501
            - G020502
            - G020503
            - G020599
            - G02060101
            - G02060102
            - G02060199
            - G02060201
            - G02060202
            - G02060299
            - G02060301
            - G02060302
            - G02060303
            - G02060304
            - G02060305
            - G02060399
            - G0280
            - G0299
            - G0301010101
            - G0301010102
            - G0301010201
            - G0301010202
            - G0301010301
            - G0301010302
            - G0301010401
            - G0301010402
            - G0301010501
            - G0301010502
            - G03010199
            - G03010201
            - G03010202
            - G03020101
            - G03020102
            - G030202
            - G03020301
            - G03020302
            - G03020399
            - G030204
            - G030299
            - G03030101
            - G03030102
            - G03030199
            - G030399
            - G0304010101
            - G0304010102
            - G0304010103
            - G0304010104
            - G0304010199
            - G0304010201
            - G0304010202
            - G0304010203
            - G0304010204
            - G0304010299
            - G03040201
            - G03040202
            - G03040299
            - G03040301
            - G03040302
            - G03040303
            - G030499
            - G03050101
            - G0305010201
            - G0305010202
            - G03050103
            - G03050199
            - G030502
            - G030601
            - G030602
            - G030603
            - G030604
            - G030699
            - G030701
            - G030702
            - G030703
            - G030704
            - G030799
            - G0308010101
            - G0308010102
            - G03080102
            - G03080199
            - G03080301
            - G03080399
            - G030804
            - G030805
            - G030899
            - G0380
            - G0399
            - G0401
            - G0402
            - G0499
            - G05
            - G06
            - G99
            - H010101010101
            - H010101010102
            - H010101010103
            - H010101010104
            - H010101010201
            - H010101010202
            - H010101010203
            - H010101010301
            - H010101010302
            - H010101010303
            - H0101010199
            - H010101020101
            - H010101020102
            - H010101020103
            - H010101020201
            - H010101020202
            - H010101020203
            - H0101010299
            - H010101030101
            - H010101030102
            - H010101030103
            - H010101030201
            - H010101030202
            - H010101030203
            - H010101030301
            - H010101030302
            - H010101030303
            - H0101010399
            - H010101040101
            - H010101040102
            - H010101040201
            - H010101040202
            - H0101010499
            - H010201010101
            - H010201010102
            - H010201010103
            - H010201010201
            - H010201010202
            - H010201010203
            - H010201010301
            - H010201010302
            - H010201010401
            - H010201010402
            - H010201010403
            - H010201010404
            - H010201010501
            - H010201010502
            - H010201010601
            - H010201010602
            - H0102010199
            - H010201020101
            - H010201020102
            - H010201020201
            - H010201020202
            - H010201020203
            - H0102010299
            - H010202010101
            - H010202010102
            - H010202010201
            - H010202010202
            - H010202010301
            - H010202010302
            - H0102020199
            - H010202020101
            - H010202020102
            - H010202020201
            - H010202020202
            - H010202020301
            - H010202020302
            - H010202020401
            - H010202020402
            - H0102020299
            - H0199
            - H02010101
            - H02010102
            - H02010103
            - H02010104
            - H02010105
            - H02010106
            - H02010199
            - H02010201
            - H02010202
            - H02010299
            - H020180
            - H020199
            - H020201010101
            - H020201010102
            - H020201010201
            - H020201010202
            - H0202010199
            - H020201020101
            - H020201020102
            - H020201020201
            - H020201020202
            - H0202010299
            - H0202010301
            - H0202010302
            - H0202010399
            - H0202010401
            - H0202010402
            - H0202010499
            - H02020199
            - H0202020101
            - H0202020102
            - H0202020201
            - H0202020202
            - H02020203
            - H02020204
            - H02020299
            - H02020301
            - H02020302
            - H02020399
            - H020280
            - H020299
            - H020301040101
            - H020301040102
            - H020301040199
            - H020301040201
            - H020301040202
            - H020301040299
            - H0203010499
            - H020301050101
            - H020301050102
            - H020301050199
            - H020301050201
            - H020301050202
            - H020301050299
            - H02030106
            - H02030199
            - H0203020101
            - H0203020199
            - H02030299
            - H020303
            - H020380
            - H020399
            - H020401
            - H020402
            - H020403
            - H0299
            - H03010101
            - H03010102
            - H03010104
            - H03010105
            - H03010199
            - H03010201
            - H03010202
            - H030199
            - H03020101
            - H03020103
            - H03020199
            - H030299
            - H03030101
            - H03030102
            - H03800101
            - H03800102
            - H038099
            - H0399
            - H90010101
            - H90010102
            - H900102
            - H900199
            - H90020101
            - H90020102
            - H90020103
            - H90020199
            - H900202
            - H900203
            - H900299
            - H900301
            - H900302
            - H900303
            - H900304
            - H900305
            - H900399
            - H9005
            - H9006
            - H9007
            - H900801
            - H900802
            - H900899
            - H9080
            - H9099
            - J01010101
            - J01010102
            - J01010201
            - J01010202
            - J01010301
            - J01010302
            - J01010401
            - J010105
            - J010180
            - J010199
            - J010201
            - J010280
            - J010299
            - J01030101
            - J01030102
            - J01030103
            - J010380
            - J010399
            - J010401
            - J010480
            - J010499
            - J01050101
            - J01050201
            - J01050301
            - J010504
            - J010580
            - J010599
            - J0106
            - J010701
            - J010702
            - J010780
            - J010782
            - J010792
            - J010799
            - J019001010101
            - J019001010102
            - J0190010102
            - J0190010103
            - J0190010104
            - J0190010105
            - J019001020101
            - J019001020102
            - J019001020199
            - J0190010202
            - J01900180
            - J01900199
            - J01900203
            - J01900280
            - J01900282
            - J01900285
            - J01900292
            - J019003
            - J019004
            - J019005
            - J019099
            - J02010101
            - J02010102
            - J020102
            - J020180
            - J020199
            - J020201
            - J02020201
            - J02020202
            - J020203
            - J020280
            - J020299
            - J020301
            - J020302
            - J020380
            - J020399
            - J020401
            - J020402
            - J020403
            - J020480
            - J020499
            - J0206
            - J020701
            - J020780
            - J020782
            - J020785
            - J020792
            - J020801
            - J020802
            - J020803
            - J020804
            - J0209
            - J0210
            - J0211
            - J0280
            - J0299
            - J0301
            - J0302
            - J0303
            - J0380
            - J0399
            - J0401
            - J0402
            - J040301
            - J040380
            - J040382
            - J040385
            - J040392
            - J0480
            - J0499
            - J0501
            - J0502
            - J0580
            - J0601
            - J0602
            - J0680
            - J0701
            - J0702
            - J0780
            - J0799
            - J99
            - K01010101
            - K01010102
            - K01010103
            - K01010104
            - K01010105
            - K01010180
            - K01010199
            - K010102
            - K01020101
            - K01020102
            - K01020103
            - K01020104
            - K01020105
            - K01020106
            - K01020107
            - K01020109
            - K01020110
            - K01020111
            - K01020112
            - K01020113
            - K01020114
            - K01020115
            - K01020116
            - K01020117
            - K01020118
            - K01020119
            - K01020120
            - K01020199
            - K01020201
            - K01020202
            - K01020203
            - K01020204
            - K01020205
            - K01020299
            - K010301
            - K010302
            - K010399
            - K0104
            - K0105
            - K0106
            - K0107
            - K0108
            - K0180
            - K0199
            - K0201010101
            - K0201010102
            - K0201010201
            - K0201010202
            - K0201010301
            - K0201010302
            - K0201010401
            - K0201010402
            - K0201010501
            - K0201010502
            - K0201010601
            - K0201010602
            - K02010107
            - K0201010801
            - K0201010802
            - K0201010901
            - K0201010902
            - K0201011001
            - K0201011002
            - K0201011101
            - K0201011102
            - K0201011201
            - K0201011202
            - K02010113
            - K02010199
            - K02010201
            - K02010202
            - K02010203
            - K02010301
            - K02010302
            - K02010303
            - K020180
            - K020199
            - K0202010101
            - K0202010102
            - K0202010201
            - K0202010202
            - K0202010301
            - K0202010302
            - K0202010401
            - K0202010402
            - K0202010501
            - K0202010502
            - K0202010601
            - K0202010602
            - K0202010701
            - K0202010702
            - K0202010801
            - K0202010802
            - K0202010901
            - K0202010902
            - K02020199
            - K020280
            - K020299
            - K02030101
            - K02030102
            - K02030103
            - K02030104
            - K02030105
            - K02030106
            - K02030107
            - K02030108
            - K02030109
            - K02030110
            - K02030199
            - K020380
            - K020399
            - K0204010101
            - K0204010102
            - K0204010201
            - K0204010202
            - K0204010301
            - K0204010302
            - K0204010401
            - K0204010402
            - K0204010501
            - K0204010502
            - K0204010601
            - K0204010602
            - K0204010701
            - K0204010702
            - K0204010801
            - K0204010802
            - K02040109
            - K02040199
            - K020480
            - K020499
            - K02050101
            - K02050102
            - K02050103
            - K02050104
            - K02050105
            - K02050106
            - K02050107
            - K02050108
            - K02050109
            - K02050110
            - K0299
            - K0301
            - K030201
            - K030202
            - K030203
            - K030204
            - K030205
            - K030206
            - K030207
            - K030208
            - K030209
            - K030210
            - K030211
            - K030212
            - K030299
            - K0380
            - K0399
            - L010101
            - L010102
            - L010103
            - L0102
            - L0103
            - L01040101
            - L01040102
            - L01040103
            - L01040199
            - L01040201
            - L01040202
            - L01040299
            - L010403
            - L01040401
            - L01040402
            - L01040501
            - L01040502
            - L01040503
            - L01040504
            - L01040505
            - L01040506
            - L01040507
            - L01040508
            - L0104050901
            - L0104050999
            - L01040510
            - L01040599
            - L01040601
            - L01040602
            - L01040603
            - L01040604
            - L01040699
            - L01040701
            - L01040702
            - L01040799
            - L0104080101
            - L0104080102
            - L0104080199
            - L01040899
            - L010409
            - L01041001
            - L01041099
            - L0104110101
            - L0104110102
            - L0104110103
            - L0104110199
            - L0104110201
            - L0104110202
            - L0104110299
            - L01041199
            - L01041201
            - L01041202
            - L01041299
            - L010413
            - L010499
            - L010701
            - L010702
            - L010703
            - L0180
            - L0199
            - L0201
            - L0202
            - L0203
            - L0204
            - L0205
            - L0206
            - L0207
            - L020801
            - L020802
            - L0299
            - L030101
            - L030199
            - L031101
            - L031102
            - L031103
            - L031104
            - L031199
            - L031201
            - L031202
            - L031203
            - L031204
            - L031205
            - L031280
            - L031299
            - L031301
            - L031302
            - L031303
            - L03130401
            - L03130402
            - L03130403
            - L03130499
            - L031305
            - L031306
            - L031307
            - L031308
            - L031309
            - L031310
            - L031312
            - L031399
            - L03140101
            - L03140102
            - L03140103
            - L03140104
            - L03140105
            - L03140199
            - L031402
            - L0315
            - L0316
            - L0317
            - L0318
            - L0399
            - L0406
            - L04080101
            - L04080102
            - L04080103
            - L04080199
            - L04080201
            - L04080202
            - L0408020301
            - L0408020302
            - L0408020303
            - L0408020304
            - L0408020305
            - L0408020306
            - L0408020399
            - L04080204
            - L04080299
            - L040901
            - L040902
            - L040903
            - L040999
            - L04100101
            - L04100102
            - L04100201
            - L04100202
            - L04100299
            - L0411
            - L0499
            - L050801
            - L050802
            - L0508030101
            - L0508030199
            - L05080302
            - L05080303
            - L05080399
            - L050804
            - L050899
            - L050901
            - L0509020101
            - L0509020102
            - L0509020103
            - L0509020199
            - L0509020201
            - L0509020299
            - L05090301
            - L0509030201
            - L0509030202
            - L0509030203
            - L0509030299
            - L05090399
            - L05090501
            - L05090599
            - L050906
            - L059001
            - L059002
            - L059003
            - L059004
            - L059005
            - L059006
            - L059007
            - L059008
            - L059099
            - L060401
            - L060402
            - L060403
            - L060404
            - L06040501
            - L06040599
            - L060406
            - L060407
            - L060408
            - L060409
            - L060410
            - L060411
            - L060412
            - L060413
            - L060480
            - L060499
            - L06050101
            - L06050199
            - L06050201
            - L06050202
            - L06050299
            - L06060101
            - L06060102
            - L06060103
            - L06060199
            - L060602
            - L0606030101
            - L0606030199
            - L06060399
            - L060604
            - L060699
            - L0607
            - L0608
            - L0609
            - L0610
            - L0611
            - L0612
            - L0699
            - L070701
            - L0707020101
            - L0707020199
            - L07070202
            - L070703
            - L070704
            - L070705
            - L070799
            - L0708010101
            - L070801018001
            - L070801018099
            - L0708010199
            - L07080102
            - L07080103
            - L07080104
            - L0708010501
            - L0708010502
            - L0708010503
            - L0708010599
            - L07080199
            - L070802
            - L070803
            - L070804
            - L070805
            - L0708060101
            - L0708060199
            - L07080699
            - L070807
            - L07080801
            - L07080899
            - L070809
            - L070810
            - L070899
            - L0801
            - L0804
            - L080501
            - L08050201
            - L08050299
            - L080599
            - L08060101
            - L08060199
            - L08060201
            - L08060299
            - L0807
            - L080801
            - L080802
            - L080803
            - L080804
            - L080805
            - L080806
            - L080899
            - L0809
            - L0899
            - L0901
            - L0902
            - L0903
            - L090401
            - L090402
            - L090403
            - L090404
            - L0908
            - L090901
            - L090902
            - L090903
            - L090999
            - L091001
            - L091002
            - L091099
            - L091101
            - L091102
            - L091103
            - L091104
            - L091105
            - L091106
            - L091199
            - L091201
            - L091202
            - L091301
            - L091302
            - L091303
            - L091304
            - L091305
            - L091306
            - L091307
            - L091399
            - L0914
            - L0915
            - L0916
            - L0917
            - L0918
            - L0919
            - L0920
            - L0921
            - L0922
            - L0923
            - L0924
            - L0925
            - L0926
            - L0927
            - L098001
            - L098002
            - L098003
            - L098099
            - L0999
            - L1001
            - L1003
            - L1004
            - L1005
            - L1099
            - L1102
            - L1103
            - L1104
            - L11050101
            - L11050199
            - L110502
            - L11050301
            - L11050399
            - L110599
            - L110601
            - L110602
            - L11060301
            - L11060399
            - L110604
            - L110699
            - L11070101
            - L11070199
            - L110702
            - L110799
            - L1108
            - L1109
            - L1110
            - L1111
            - L1112
            - L1113
            - L1199
            - L1201
            - L1202
            - L1203
            - L1204
            - L1205
            - L1206
            - L1207
            - L1208
            - L1209
            - L1210
            - L1211
            - L1212
            - L1213
            - L1214
            - L1215
            - L1216
            - L1217
            - L1218
            - L1280
            - L1299
            - L1301
            - L1302
            - L1303
            - L1304
            - L1305
            - L1306
            - L1307
            - L1399
            - L14010101
            - L14010102
            - L14010103
            - L14010199
            - L14010201
            - L14010202
            - L14010203
            - L14010204
            - L14010205
            - L14010206
            - L14010299
            - L140201
            - L140202
            - L140203
            - L140204
            - L140205
            - L140206
            - L140299
            - L140301
            - L140399
            - L140401
            - L14040201
            - L14040202
            - L14040203
            - L14040204
            - L14040299
            - L140499
            - L14050101
            - L14050102
            - L14050103
            - L14050199
            - L140502
            - L140503
            - L140599
            - L140601
            - L140602
            - L149001
            - L149002
            - L149003
            - L149004
            - L149005
            - L149006
            - L149007
            - L149008
            - L149009
            - L149010
            - L149011
            - L149012
            - L149013
            - L149099
            - L150101
            - L150102
            - L150103
            - L150201
            - L150202
            - L150299
            - L150301
            - L150302
            - L150399
            - L1504
            - L1505
            - L1506
            - L150701
            - L150702
            - L150703
            - L150704
            - L150705
            - L150799
            - L1508
            - L159001
            - L159002
            - L159003
            - L159004
            - L159005
            - L15900601
            - L15900602
            - L15900699
            - L159007
            - L15900801
            - L15900899
            - L159009
            - L159010
            - L15901101
            - L15901102
            - L15901199
            - L159012
            - L159013
            - L159014
            - L159015
            - L159016
            - L159017
            - L159018
            - L159019
            - L159099
            - L160101
            - L160199
            - L160201
            - L160202
            - L160299
            - L1699
            - L17010101
            - L17010199
            - L170102
            - L170201
            - L170202
            - L170203
            - L170299
            - L1703
            - L170401
            - L170402
            - L170499
            - L1705
            - L1706
            - L1707
            - L1708
            - L1709
            - L1710
            - L1711
            - L1712
            - L1713
            - L1714
            - L1715
            - L179001
            - L179002
            - L17900301
            - L17900399
            - L179004
            - L179005
            - L1799
            - L180101
            - L180102
            - L180201
            - L180202
            - L180301
            - L180302
            - L180401
            - L180402
            - L180501
            - L180502
            - L180601
            - L180602
            - L180701
            - L180702
            - L180801
            - L180802
            - L180901
            - L180902
            - L181001
            - L181002
            - L181003
            - L189001
            - L189002
            - L1899
            - L1901
            - L1902
            - L1903
            - L1904
            - L1905
            - L1906
            - L1907
            - L1908
            - L1909
            - L1910
            - L1911
            - L1912
            - L1913
            - L1914
            - L1915
            - L1916
            - L1917
            - L1918
            - L1919
            - L1920
            - L1921
            - L1980
            - L1999
            - L2001
            - L2099
            - L21
            - L22
            - L23
            - L2401
            - L2402
            - L2403
            - L2499
            - L2501
            - L2502
            - L250301
            - L250399
            - L2599
            - L26
            - L80
            - L99
            - M010101
            - M010102
            - M010103
            - M010199
            - M010201
            - M01020201
            - M01020202
            - M010203
            - M010299
            - M0199
            - M0201010101
            - M0201010102
            - M0201010201
            - M0201010202
            - M0201020101
            - M0201020102
            - M0201020201
            - M0201020202
            - M0201030101
            - M0201030102
            - M0201030201
            - M0201030202
            - M020104
            - M0201050101
            - M0201050102
            - M0201050201
            - M0201050202
            - M020106
            - M020107
            - M020199
            - M0202010101
            - M0202010102
            - M0202010201
            - M0202010202
            - M0202020101
            - M0202020102
            - M0202020201
            - M0202020202
            - M0202030101
            - M0202030102
            - M0202030201
            - M0202030202
            - M020204
            - M020205
            - M020299
            - M020301
            - M02030201
            - M02030202
            - M020399
            - M0299
            - M030101
            - M030102
            - M030201
            - M03020201
            - M03020202
            - M03020299
            - M030299
            - M0303010101
            - M0303010103
            - M0303010201
            - M0303010203
            - M03030103
            - M03030199
            - M03030201
            - M03030202
            - M03030203
            - M03030299
            - M0304010101
            - M0304010102
            - M0304010103
            - M0304010201
            - M0304010202
            - M0304010203
            - M0304010301
            - M0304010302
            - M0304010303
            - M03040199
            - M030402010101
            - M030402010103
            - M030402020101
            - M030402020103
            - M030402030102
            - M030402030103
            - M03040299
            - M030403
            - M030404
            - M030405
            - M030499
            - M030501
            - M03050201
            - M03050202
            - M03050299
            - M030503
            - M030504
            - M030505
            - M030506
            - M030599
            - M0399
            - M04010101
            - M04010102
            - M04010199
            - M04010201
            - M04010202
            - M04010203
            - M04010299
            - M040199
            - M040201
            - M040202
            - M040203
            - M040204
            - M040299
            - M040301
            - M040302
            - M040303
            - M040304
            - M040305
            - M040306
            - M040399
            - M04040101
            - M04040102
            - M04040201
            - M04040202
            - M04040301
            - M04040302
            - M040404
            - M04040501
            - M04040502
            - M04040601
            - M04040602
            - M04040701
            - M04040702
            - M04040801
            - M04040802
            - M04040901
            - M04040902
            - M04041001
            - M04041002
            - M040411
            - M040412
            - M040413
            - M040414
            - M04041501
            - M04041502
            - M04041503
            - M040416
            - M040499
            - M040501
            - M040502
            - M040503
            - M040504
            - M04050501
            - M04050502
            - M040506
            - M040599
            - M0406
            - M040701
            - M040702
            - M040703
            - M040799
            - M0408
            - M0409
            - M0410
            - M0411
            - M0412
            - M0499
            - M050101
            - M050102
            - M050199
            - M050201
            - M050202
            - M050299
            - M0599
            - M9001
            - M9002
            - M9003
            - M9099
            - N010101
            - N0101020101
            - N0101020102
            - N0101020199
            - N01010202
            - N01010203
            - N01010299
            - N010103
            - N010180
            - N010199
            - N010201
            - N010202
            - N01028001
            - N01028002
            - N01028003
            - N01028099
            - N010299
            - N010301
            - N010302
            - N010303
            - N01038001
            - N01038002
            - N01038099
            - N010399
            - N010401
            - N010480
            - N010499
            - N01800101
            - N01800102
            - N01800103
            - N01800104
            - N01800105
            - N01800106
            - N01800199
            - N018099
            - N0199
            - N02010101
            - N02010102
            - N02010180
            - N02010199
            - N020102
            - N020180
            - N020199
            - N020201
            - N020202
            - N020280
            - N020299
            - N020301
            - N020302
            - N020380
            - N020399
            - N028001
            - N02800201
            - N02800202
            - N02800203
            - N02800204
            - N02800205
            - N02800206
            - N02800207
            - N02800208
            - N02800209
            - N02800299
            - N028099
            - N0299
            - N99
            - P010101
            - P010102
            - P010103
            - P01010401
            - P01010402
            - P010199
            - P01020101
            - P01020180
            - P010299
            - P0103
            - P0180
            - P0199
            - P02010101
            - P02010102
            - P02010103
            - P02010199
            - P02010201
            - P02010202
            - P02010299
            - P020103
            - P020180
            - P020199
            - P020201
            - P020202
            - P020203
            - P020299
            - P020301
            - P020399
            - P0204
            - P0205
            - P0280
            - P0299
            - P030101030101
            - P030101030102
            - P030101030103
            - P030101030104
            - P030101030199
            - P030101030201
            - P030101030202
            - P030101030203
            - P030101030299
            - P030101030301
            - P030101030302
            - P030101030303
            - P030101030399
            - P030101040101
            - P030101040102
            - P030101040103
            - P030101040199
            - P030101040201
            - P030101040202
            - P030101040203
            - P030101040299
            - P030101040301
            - P030101040302
            - P030101040303
            - P030101040399
            - P030102090101
            - P030102090102
            - P030102090103
            - P030102090104
            - P030102090199
            - P030102090201
            - P030102090202
            - P030102090203
            - P030102090299
            - P030102090301
            - P030102090302
            - P030102090303
            - P030102090399
            - P030102100101
            - P030102100102
            - P030102100103
            - P030102100199
            - P030102100201
            - P030102100202
            - P030102100203
            - P030102100299
            - P030102100301
            - P030102100302
            - P030102100303
            - P030102100399
            - P030102110101
            - P030102110102
            - P030102110103
            - P030102110199
            - P030102110201
            - P030102110202
            - P030102110203
            - P030102110299
            - P030102110301
            - P030102110302
            - P030102110303
            - P030102110399
            - P03019001
            - P030199
            - P0380
            - P0399
            - P0401
            - P0480
            - P0499
            - P050101
            - P050199
            - P0502
            - P0503
            - P050401
            - P050499
            - P058001
            - P058099
            - P0599
            - P0601010101
            - P0601010102
            - P0601010199
            - P0601010201
            - P0601010202
            - P0601010299
            - P0601020101
            - P0601020102
            - P0601020199
            - P0601020201
            - P0601020202
            - P0601020299
            - P060199
            - P060201
            - P060299
            - P0680
            - P0699
            - P0701010101
            - P0701010102
            - P0701010201
            - P0701010202
            - P07010199
            - P070102010101
            - P070102010102
            - P070102010201
            - P070102010202
            - P070102020101
            - P070102020102
            - P070102020201
            - P070102020202
            - P07010299
            - P070180
            - P07020101
            - P07020102
            - P07020199
            - P07020201
            - P07020202
            - P07020203
            - P07020204
            - P07020299
            - P070301010101
            - P070301010102
            - P070301010103
            - P070301010104
            - P070301010201
            - P070301010202
            - P070301010203
            - P070301010204
            - P0703010201
            - P0703010202
            - P070301030101
            - P070301030102
            - P070301030103
            - P070301030104
            - P070301030201
            - P070301030202
            - P070301030203
            - P070301030204
            - P07030104
            - P07030199
            - P07030201
            - P07030202
            - P0703020301
            - P0703020302
            - P0703020399
            - P07030299
            - P07030301
            - P07030302
            - P07030399
            - P07030401
            - P07030402
            - P07030403
            - P07030499
            - P07038001
            - P07038002
            - P07038003
            - P07038004
            - P07038099
            - P070399
            - P070401010101
            - P070401010102
            - P070401010199
            - P0704010102
            - P0704010103
            - P070401020101
            - P070401020102
            - P070401020103
            - P070401020199
            - P0704010202
            - P0704010203
            - P07040199
            - P070402010101
            - P070402010102
            - P070402010199
            - P0704020102
            - P070402010301
            - P070402010302
            - P0704020104
            - P0704020105
            - P0704020199
            - P070402020101
            - P070402020102
            - P070402020199
            - P0704020202
            - P0704020203
            - P0704020204
            - P0704020299
            - P07040301
            - P07040302
            - P07040303
            - P07040399
            - P070404
            - P0780
            - P0799
            - P080102
            - P080199
            - P080201
            - P080202
            - P080299
            - P08030101
            - P08030102
            - P08030199
            - P080302
            - P080399
            - P080401
            - P080499
            - P0805
            - P0880
            - P0899
            - P09010301
            - P09010302
            - P09010303
            - P09010304
            - P09010399
            - P090104010101
            - P090104010102
            - P090104010201
            - P090104010202
            - P0901040199
            - P0901040201
            - P0901040202
            - P090104020301
            - P090104020302
            - P0901040204
            - P0901040205
            - P0901040299
            - P09010403
            - P09010499
            - P09018001
            - P0901800201
            - P0901800202
            - P09018003
            - P09018099
            - P090199
            - P090203
            - P090204
            - P090205
            - P090280
            - P090299
            - P090303
            - P09030401
            - P09030402
            - P090305
            - P090380
            - P090399
            - P090403
            - P090404
            - P090480
            - P090499
            - P0905060101
            - P0905060102
            - P0905060201
            - P0905060202
            - P09050603
            - P0905070101
            - P0905070102
            - P0905070201
            - P0905070202
            - P09050703
            - P090508
            - P09058001
            - P09058099
            - P090599
            - P090603
            - P090604
            - P090605
            - P090680
            - P090699
            - P09070101
            - P09070199
            - P09070201
            - P09070301
            - P09070302
            - P09070304
            - P09070305
            - P09070399
            - P090780
            - P090799
            - P090803010101
            - P090803010102
            - P090803010199
            - P090803010201
            - P090803010202
            - P090803010203
            - P090803010299
            - P09080302
            - P0908030301
            - P0908030302
            - P090803040101
            - P090803040102
            - P090803040103
            - P0908030402
            - P0908030403
            - P0908030499
            - P090803050101
            - P090803050102
            - P0908030502
            - P0908030601
            - P0908030602
            - P0908030699
            - P090804010101
            - P090804010102
            - P090804010105
            - P090804010106
            - P090804010107
            - P090804010201
            - P090804010202
            - P090804010205
            - P090804010206
            - P090804010207
            - P09080402
            - P090804030101
            - P090804030102
            - P090804030201
            - P090804030202
            - P09080404
            - P090804050101
            - P090804050102
            - P090804050199
            - P090804050201
            - P090804050202
            - P090804050299
            - P0908040503
            - P0908040504
            - P09080406
            - P09080407
            - P090805
            - P09088001
            - P09088002
            - P09088003
            - P09088004
            - P09088005
            - P09088006
            - P09088007
            - P09088099
            - P090899
            - P0909030101
            - P0909030102
            - P0909030103
            - P090903020101
            - P090903020102
            - P090903020103
            - P090903020104
            - P090903020105
            - P090903020106
            - P090903020201
            - P090903020202
            - P090903020301
            - P090903020399
            - P0909040101
            - P0909040102
            - P090904020101
            - P090904020102
            - P090904020103
            - P090904020104
            - P090904020201
            - P090904020202
            - P090904020301
            - P090904020302
            - P090904020401
            - P090904020499
            - P09090501
            - P090905020101
            - P090905020102
            - P090905020201
            - P090905020202
            - P090906
            - P09090701
            - P0909070201
            - P0909070202
            - P090908
            - P09098001
            - P09098002
            - P09098003
            - P09098004
            - P0909800601
            - P0909800602
            - P09098099
            - P090999
            - P0910
            - P09120101
            - P09120102
            - P09120201
            - P09120202
            - P09120299
            - P09120301
            - P09120302
            - P09120399
            - P0912040101
            - P0912040102
            - P09120402
            - P09120403
            - P09120499
            - P09120501
            - P09120502
            - P09120503
            - P09120504
            - P09120599
            - P09120601
            - P09120602
            - P09120603
            - P09120604
            - P09120605
            - P09120606
            - P09120699
            - P091280
            - P091299
            - P091301
            - P091302
            - P091303
            - P091304
            - P091305
            - P091399
            - P099001
            - P099002
            - P099003
            - P0999
            - P1001
            - P1002
            - P1099
            - P900101
            - P900102
            - P900103
            - P900104
            - P900105
            - P900106
            - P900199
            - P900201
            - P900202
            - P900203
            - P900204
            - P900205
            - P900206
            - P900299
            - P900301
            - P900302
            - P900399
            - P900401
            - P900402
            - P900403
            - P900404
            - P9005
            - P9099
            - Q01010101
            - Q0101010201
            - Q0101010202
            - Q0101010203
            - Q0101010204
            - Q0101010299
            - Q01010103
            - Q01010104
            - Q01010105
            - Q01010106
            - Q01010199
            - Q01010201
            - Q01010202
            - Q01010203
            - Q01010299
            - Q01010301
            - Q01010399
            - Q01010401
            - Q01010402
            - Q01010403
            - Q010105
            - Q010199
            - Q01020101
            - Q01020102
            - Q01020103
            - Q01020104
            - Q01020199
            - Q01020201
            - Q01020202
            - Q01020203
            - Q01020299
            - Q010204
            - Q0102050101
            - Q0102050102
            - Q0102050199
            - Q01020502
            - Q01020601
            - Q01020602
            - Q01020603
            - Q01020604
            - Q01020605
            - Q010207
            - Q010280
            - Q010299
            - Q010301
            - Q010302
            - Q010303
            - Q010304
            - Q010305
            - Q010399
            - Q010401
            - Q010402
            - Q010403
            - Q010404
            - Q010405
            - Q010406
            - Q010407
            - Q010499
            - Q010501
            - Q010502
            - Q010503
            - Q010504
            - Q010505
            - Q010506
            - Q010507
            - Q010508
            - Q010599
            - Q010601
            - Q010699
            - Q019001
            - Q019002
            - Q019003
            - Q019004
            - Q019005
            - Q019006
            - Q019007
            - Q019008
            - Q0199
            - Q02010101
            - Q02010102
            - Q02010103
            - Q02010199
            - Q020102
            - Q020199
            - Q020201
            - Q020202
            - Q020203
            - Q020204
            - Q020299
            - Q02030101
            - Q02030199
            - Q02030201
            - Q02030202
            - Q02030203
            - Q02030204
            - Q02030205
            - Q02030206
            - Q02030299
            - Q02030301
            - Q02030399
            - Q020401
            - Q020402
            - Q02040301
            - Q02040302
            - Q02040399
            - Q020499
            - Q020501
            - Q020502
            - Q020503
            - Q020504
            - Q020599
            - Q020601
            - Q020680
            - Q020699
            - Q020701
            - Q020702
            - Q020703
            - Q020704
            - Q020705
            - Q020706
            - Q020799
            - Q0208
            - Q0209
            - Q0210010101
            - Q0210010102
            - Q0210010103
            - Q0210010199
            - Q0210010201
            - Q0210010202
            - Q0210010203
            - Q0210010299
            - Q02100201
            - Q02100202
            - Q02100203
            - Q02100299
            - Q0210030101
            - Q0210030102
            - Q0210030103
            - Q0210030199
            - Q0210030201
            - Q0210030202
            - Q0210030203
            - Q0210030299
            - Q021004010101
            - Q021004010102
            - Q0210040102
            - Q02100402
            - Q02100499
            - Q021099
            - Q021101
            - Q021102
            - Q021103
            - Q021104
            - Q021105
            - Q021106
            - Q021107
            - Q021108
            - Q021109
            - Q021110
            - Q021111
            - Q021112
            - Q021113
            - Q021199
            - Q029001
            - Q029002
            - Q029003
            - Q0299
            - Q03010101
            - Q03010199
            - Q03010201
            - Q03010299
            - Q030103
            - Q030199
            - Q030201
            - Q030299
            - Q030301
            - Q030302
            - Q030303
            - Q030304
            - Q030305
            - Q030306
            - Q030307
            - Q030308
            - Q030309
            - Q030310
            - Q030311
            - Q030312
            - Q030313
            - Q030314
            - Q030315
            - Q030316
            - Q030399
            - Q03040101
            - Q03040102
            - Q03040199
            - Q03040201
            - Q03040299
            - Q030499
            - Q0399
            - R010101
            - R010102
            - R010199
            - R01020101
            - R01020102
            - R01020199
            - R010202
            - R010203
            - R010280
            - R010299
            - R01030101
            - R01030102
            - R01030201
            - R01030202
            - R01038001
            - R01038099
            - R010399
            - R01040101
            - R01040102
            - R01040103
            - R01040199
            - R01040201
            - R01040202
            - R01040203
            - R01040299
            - R010480
            - R010499
            - R0105010101
            - R0105010102
            - R0105010201
            - R0105010202
            - R0105020101
            - R0105020102
            - R0105020201
            - R0105020202
            - R010503
            - R01058001
            - R01058002
            - R01058099
            - R010599
            - R010601
            - R010602
            - R010603
            - R010604
            - R010699
            - R018001
            - R018002
            - R018003
            - R018004
            - R018099
            - R0199
            - R02010101
            - R02010102
            - R02010199
            - R020102
            - R020103
            - R02010401
            - R02010402
            - R020106
            - R020107
            - R020108
            - R020109
            - R020199
            - R020201
            - R020202
            - R020299
            - R020301
            - R020302
            - R020399
            - R028001
            - R028002
            - R028003
            - R028099
            - R03010101
            - R0301010201
            - R0301010202
            - R0301010401
            - R0301010402
            - R03010180
            - R03010199
            - R03010201
            - R03010202
            - R0301020301
            - R0301020302
            - R03010204
            - R03010205
            - R03010206
            - R03010207
            - R03010280
            - R03010299
            - R03010301
            - R03010302
            - R03010303
            - R03010304
            - R03010380
            - R03010399
            - R030180
            - R030199
            - R03020101
            - R03020102
            - R03020199
            - R03020201
            - R03020202
            - R030280
            - R030299
            - R040101
            - R040102
            - R040199
            - R040201
            - R040299
            - R049001
            - R0499
            - R05010101
            - R05010102
            - R050102
            - R05010301
            - R05010302
            - R05010399
            - R050201
            - R050280
            - R050299
            - R0580
            - R0599
            - R060101
            - R060102
            - R060201
            - R060202
            - R060203
            - R060280
            - R060299
            - R0680
            - R0699
            - R070101
            - R070102
            - R070103
            - R070180
            - R070199
            - R0702010101
            - R0702010102
            - R07020102
            - R07020199
            - R07020301
            - R070204
            - R070205
            - R070206
            - R070207
            - R070208
            - R070280
            - R070299
            - R0799
            - R9001
            - R9002
            - R900301
            - R900302
            - R900399
            - R9004
            - R9005
            - R90060201
            - R90060202
            - R900680
            - R9007
            - R9008
            - R900901
            - R900902
            - R9080
            - R9099
            - S01010101
            - S01010102
            - S01010201
            - S01010301
            - S010199
            - S01020101
            - S01020102
            - S01020201
            - S01020301
            - S010299
            - S010301
            - S010302
            - S010399
            - S010401
            - S010402
            - S010499
            - S0199
            - S900101
            - S900102
            - S900103
            - S900199
            - S9002
            - S9003
            - S9080
            - S9099
            - T01010101
            - T01010102
            - T01010201
            - T01010202
            - T01010203
            - T01010299
            - T010199
            - T010201
            - T01020201
            - T01020202
            - T01020203
            - T01020204
            - T01020299
            - T010299
            - T0199
            - T02010101
            - T02010102
            - T020102
            - T020103
            - T020199
            - T0202
            - T0203
            - T020401
            - T020402
            - T020499
            - T0205
            - T020603
            - T020604
            - T020699
            - T0207
            - T0208
            - T0209
            - T0210
            - T0299
            - T030101
            - T030102
            - T030103
            - T030199
            - T030201
            - T030202
            - T030203
            - T030299
            - T030301
            - T030399
            - T030401
            - T030402
            - T030403
            - T030404
            - T030405
            - T030406
            - T030499
            - T030501
            - T030502
            - T030599
            - T0306
            - T0399
            - T04010101
            - T04010102
            - T04010103
            - T04010104
            - T04010199
            - T04010201
            - T04010202
            - T04010203
            - T04010299
            - T0499
            - T99
            - U010101
            - U010102
            - U010103
            - U010104
            - U01010501
            - U01010502
            - U01010601
            - U01010602
            - U010107
            - U010199
            - U010201
            - U010202
            - U010203
            - U010204
            - U010205
            - U010206
            - U010299
            - U0103
            - U0180
            - U0199
            - U020101
            - U020102
            - U020103
            - U020104
            - U020199
            - U020201
            - U020202
            - U020299
            - U020301
            - U020302
            - U020399
            - U0204
            - U0280
            - U0299
            - U03010101
            - U03010199
            - U03010201
            - U03010202
            - U030201
            - U030202
            - U0380
            - U0399
            - U040101
            - U040102
            - U040199
            - U040201
            - U040202
            - U040203
            - U040299
            - U040301
            - U040302
            - U040399
            - U0480
            - U0499
            - U05010101
            - U05010102
            - U050199
            - U050201
            - U050202
            - U050299
            - U05030101
            - U05030102
            - U050399
            - U050401
            - U050402
            - U0505
            - U0580
            - U0599
            - U0601
            - U0602
            - U0699
            - U070101
            - U070199
            - U070201
            - U070299
            - U070301
            - U070302
            - U070399
            - U0780
            - U0799
            - U080101
            - U080102
            - U080103
            - U080199
            - U08020101
            - U08020102
            - U08020180
            - U08020199
            - U08020201
            - U08020202
            - U0802030101
            - U0802030102
            - U0802030103
            - U0802030104
            - U0802030105
            - U0802030106
            - U0802030107
            - U0802030108
            - U0802030199
            - U0802030201
            - U0802030202
            - U08020380
            - U08020399
            - U08020401
            - U08020501
            - U08020502
            - U08020503
            - U08020599
            - U080206
            - U080207
            - U080299
            - U0803
            - U089002
            - U089003
            - U089005
            - U089006
            - U089009
            - U089010
            - U0899
            - U090101
            - U090102
            - U090199
            - U090201
            - U090202
            - U090203
            - U090204
            - U090299
            - U0903010101
            - U0903010102
            - U09030102
            - U09030199
            - U09030301
            - U090399
            - U0999
            - U100101
            - U100102
            - U100199
            - U100201
            - U100299
            - U1003
            - U1004
            - U1005
            - U1006
            - U1007
            - U1080
            - U1099
            - U110101
            - U110102
            - U110199
            - U110201
            - U110202
            - U110203
            - U110299
            - U1201
            - U1202
            - U1299
            - U1301
            - U1302
            - U99
            - V010101
            - V010102
            - V0102
            - V010301
            - V010302
            - V010401
            - V010402
            - V0199
            - V0201
            - V0202
            - V020301
            - V020302
            - V020303
            - V020380
            - V020399
            - V028002
            - V028099
            - V0299
            - V0301010201
            - V0301010202
            - V0301010299
            - V03010104
            - V03010199
            - V03010201
            - V03010299
            - V030180
            - V030199
            - V030201
            - V030202
            - V030203
            - V030204
            - V030205
            - V030206
            - V030207
            - V030208
            - V030209
            - V030210
            - V03021101
            - V03021199
            - V030299
            - V0380
            - V0399
            - V0401
            - V0402
            - V0480
            - V0499
            - V0501
            - V0502
            - V0599
            - V06010101
            - V06010102
            - V06010103
            - V06010199
            - V060102
            - V0602
            - V0603
            - V0604
            - V0605
            - V0606
            - V0607
            - V0680
            - V0699
            - V070101
            - V070102
            - V070103
            - V070104
            - V070105
            - V0702
            - V0703
            - V0704
            - V0799
            - V08020101
            - V08020102
            - V08020199
            - V080202
            - V080280
            - V080299
            - V08030101
            - V08030102
            - V080302
            - V080399
            - V0804
            - V08050101
            - V08050102
            - V08050103
            - V08050104
            - V08050199
            - V080502
            - V0805030101
            - V0805030102
            - V08050302
            - V08050303
            - V0805038001
            - V0805038002
            - V08050399
            - V080504
            - V08060101
            - V08060102
            - V08060103
            - V08060104
            - V08060105
            - V08060106
            - V0806010701
            - V0806010702
            - V08060199
            - V080602
            - V080603
            - V08068001
            - V08068002
            - V08068099
            - V080699
            - V080701
            - V080702
            - V0808
            - V0809
            - V0810
            - V0811
            - V0812
            - V0880
            - V0899
            - V0901
            - V0902
            - V0903
            - V0904
            - V0905
            - V0999
            - V80
            - V9001
            - V9002
            - V9003
            - V9004
            - V9005
            - V9007
            - V901001
            - V901099
            - V9011
            - V9012
            - V9015
            - V901601
            - V901602
            - V901603
            - V901699
            - V9017
            - V9018
            - V9099
            - V92
            - W01010101
            - W01010102
            - W01010103
            - W01010104
            - W01010105
            - W01010106
            - W01010107
            - W01010108
            - W01010109
            - W01010110
            - W01010111
            - W01010112
            - W01010113
            - W01010114
            - W01010115
            - W01010116
            - W01010117
            - W01010118
            - W01010119
            - W01010120
            - W01010121
            - W01010122
            - W01010123
            - W01010124
            - W01010125
            - W01010126
            - W01010127
            - W01010128
            - W01010129
            - W01010130
            - W01010131
            - W01010199
            - W01010201
            - W01010202
            - W01010203
            - W01010204
            - W01010205
            - W01010206
            - W01010207
            - W01010208
            - W01010209
            - W01010210
            - W01010211
            - W01010212
            - W01010213
            - W01010214
            - W01010215
            - W01010216
            - W01010217
            - W01010218
            - W01010219
            - W01010220
            - W01010221
            - W01010222
            - W01010223
            - W01010224
            - W01010225
            - W01010226
            - W01010227
            - W01010228
            - W01010229
            - W01010230
            - W01010231
            - W01010232
            - W01010233
            - W01010234
            - W01010235
            - W01010236
            - W01010299
            - W01010301
            - W01010302
            - W01010303
            - W01010304
            - W01010305
            - W01010306
            - W01010307
            - W01010308
            - W01010309
            - W01010399
            - W01010401
            - W01010402
            - W01010403
            - W01010404
            - W01010499
            - W0101050101
            - W0101050102
            - W0101050199
            - W0101050201
            - W0101050202
            - W0101050203
            - W0101050204
            - W0101050205
            - W0101050207
            - W0101050208
            - W0101050299
            - W0101050301
            - W0101050302
            - W0101050303
            - W0101050399
            - W0101060101
            - W0101060102
            - W0101060103
            - W0101060104
            - W0101060105
            - W0101060106
            - W0101060107
            - W010106010801
            - W010106010802
            - W0101060109
            - W0101060110
            - W0101060111
            - W0101060112
            - W0101060199
            - W0101060201
            - W010106020301
            - W010106020302
            - W0101060204
            - W0101060205
            - W010106020601
            - W010106020602
            - W0101060299
            - W0101060301
            - W0101060302
            - W0101060303
            - W0101060399
            - W0101060401
            - W010106040201
            - W010106040202
            - W0101060499
            - W0101060601
            - W0101060602
            - W0101060603
            - W0101060604
            - W0101060605
            - W0101060606
            - W0101060607
            - W0101060608
            - W0101060609
            - W0101060610
            - W0101060699
            - W01010699
            - W0101070101
            - W0101070102
            - W0101070103
            - W0101070104
            - W0101070105
            - W0101070106
            - W0101070107
            - W0101070108
            - W0101070199
            - W0101070201
            - W0101070202
            - W0101070203
            - W0101070204
            - W0101070205
            - W0101070206
            - W0101070299
            - W0101070301
            - W0101070302
            - W0101070303
            - W0101070304
            - W0101070399
            - W01010801
            - W01010802
            - W01010803
            - W01010804
            - W01010805
            - W01010899
            - W01010901
            - W01010902
            - W01010999
            - W01019001
            - W01019002
            - W01019099
            - W0102010101
            - W0102010102
            - W0102010103
            - W0102010104
            - W0102010105
            - W0102010106
            - W0102010107
            - W0102010108
            - W0102010109
            - W0102010110
            - W0102010111
            - W0102010112
            - W0102010113
            - W0102010114
            - W0102010199
            - W0102010201
            - W0102010202
            - W0102010203
            - W0102010204
            - W0102010205
            - W0102010206
            - W0102010207
            - W0102010208
            - W0102010299
            - W0102010301
            - W0102010302
            - W0102010303
            - W0102010304
            - W0102010305
            - W0102010306
            - W0102010307
            - W0102010308
            - W0102010309
            - W0102010399
            - W0102010401
            - W0102010402
            - W0102010403
            - W0102010404
            - W0102010405
            - W0102010499
            - W0102019001
            - W0102019002
            - W0102019003
            - W0102019004
            - W0102019005
            - W0102019006
            - W0102019007
            - W0102019008
            - W0102019009
            - W0102019010
            - W0102019011
            - W0102019012
            - W0102019013
            - W0102019014
            - W0102019015
            - W0102019016
            - W0102019017
            - W0102019099
            - W01020201
            - W01020202
            - W01020203
            - W01020204
            - W01020205
            - W01020206
            - W01020207
            - W01020208
            - W01020209
            - W01020299
            - W0102030101
            - W0102030102
            - W0102030103
            - W0102030104
            - W0102030105
            - W0102030106
            - W0102030107
            - W0102030108
            - W0102030109
            - W0102030110
            - W0102030111
            - W0102030112
            - W0102030113
            - W0102030114
            - W0102030115
            - W0102030116
            - W0102030117
            - W0102030118
            - W0102030119
            - W0102030120
            - W0102030121
            - W0102030122
            - W0102030123
            - W0102030124
            - W0102030125
            - W0102030126
            - W0102030127
            - W0102030199
            - W0102030201
            - W0102030202
            - W0102030299
            - W0102030301
            - W0102030302
            - W0102030399
            - W0102039001
            - W0102039002
            - W0102039003
            - W0102039004
            - W0102039005
            - W0102039006
            - W0102039007
            - W0102039008
            - W0102039009
            - W0102039010
            - W0102039011
            - W0102039013
            - W0102039014
            - W0102039015
            - W0102039017
            - W0102039018
            - W0102039019
            - W0102039099
            - W01020401
            - W01020402
            - W01020403
            - W01020404
            - W01020405
            - W01020406
            - W01020407
            - W01020408
            - W01020409
            - W01020410
            - W01020411
            - W01020499
            - W0102050101
            - W0102050102
            - W0102050103
            - W0102050104
            - W0102050105
            - W0102050106
            - W0102050107
            - W0102050108
            - W0102050109
            - W0102050110
            - W0102050111
            - W0102050112
            - W0102050114
            - W0102050115
            - W0102050199
            - W0102050201
            - W0102050202
            - W0102050203
            - W0102050204
            - W0102050205
            - W0102050206
            - W0102050207
            - W0102050208
            - W0102050209
            - W0102050210
            - W0102050211
            - W0102050212
            - W0102050213
            - W0102050214
            - W0102050215
            - W0102050299
            - W0102060101
            - W0102060102
            - W0102060103
            - W0102060104
            - W0102060105
            - W0102060106
            - W0102060107
            - W0102060108
            - W0102060109
            - W0102060199
            - W0102060201
            - W0102060202
            - W0102060203
            - W0102060204
            - W0102060205
            - W0102060206
            - W0102060207
            - W0102060208
            - W0102060299
            - W0102060301
            - W0102060302
            - W0102060303
            - W0102060304
            - W0102060305
            - W0102060306
            - W0102060307
            - W0102060308
            - W0102060309
            - W0102060310
            - W0102060311
            - W0102060312
            - W0102060313
            - W0102060314
            - W0102060315
            - W0102060316
            - W0102060317
            - W0102060318
            - W0102060399
            - W0102060401
            - W0102060402
            - W0102060403
            - W0102060404
            - W0102060405
            - W0102060406
            - W0102060407
            - W0102060408
            - W0102060499
            - W0102060501
            - W0102060502
            - W0102060503
            - W0102060504
            - W0102060505
            - W0102060506
            - W0102060507
            - W0102060508
            - W0102060509
            - W0102060599
            - W0102060601
            - W0102060699
            - W0102069001
            - W0102069002
            - W0102069003
            - W0102069004
            - W0102069005
            - W0102069006
            - W0102069007
            - W0102069008
            - W0102069009
            - W0102069010
            - W0102069011
            - W0102069012
            - W0102069013
            - W0102069014
            - W0102069015
            - W0102069016
            - W0102069017
            - W0102069099
            - W0102070101
            - W0102070102
            - W0102070103
            - W0102070104
            - W0102070105
            - W0102070106
            - W0102070107
            - W0102070199
            - W0102070201
            - W0102070202
            - W0102070203
            - W0102070204
            - W0102070205
            - W0102070206
            - W0102070299
            - W0102070301
            - W0102070399
            - W0102080101
            - W0102080102
            - W0102080103
            - W0102080104
            - W0102080105
            - W0102080106
            - W0102080107
            - W0102080108
            - W0102080109
            - W0102080199
            - W0102080201
            - W0102080202
            - W0102080203
            - W0102080204
            - W0102080205
            - W0102080206
            - W0102080207
            - W0102080208
            - W0102080209
            - W0102080210
            - W0102080211
            - W0102080212
            - W0102080213
            - W0102080214
            - W0102080215
            - W0102080299
            - W0102080301
            - W0102080303
            - W0102080305
            - W0102080307
            - W0102080309
            - W0102080311
            - W0102080313
            - W0102080315
            - W0102080317
            - W0102080319
            - W0102080321
            - W0102080399
            - W0102080401
            - W0102080402
            - W0102080499
            - W0102080501
            - W0102080599
            - W0102080601
            - W0102080602
            - W0102080603
            - W0102080604
            - W0102080605
            - W0102080606
            - W0102080699
            - W0102080701
            - W0102080702
            - W0102080703
            - W0102080704
            - W0102080799
            - W01020899
            - W0102090101
            - W0102090102
            - W0102090103
            - W0102090104
            - W0102090105
            - W0102090106
            - W0102090107
            - W0102090108
            - W0102090109
            - W0102090110
            - W0102090111
            - W0102090112
            - W0102090113
            - W0102090114
            - W0102090115
            - W0102090116
            - W0102090117
            - W0102090118
            - W0102090119
            - W0102090120
            - W0102090121
            - W0102090122
            - W0102090123
            - W0102090199
            - W0102090201
            - W0102090202
            - W0102090203
            - W0102090204
            - W0102090205
            - W0102090206
            - W0102090207
            - W0102090208
            - W0102090209
            - W0102090210
            - W0102090211
            - W0102090212
            - W0102090213
            - W0102090214
            - W0102090215
            - W0102090216
            - W0102090217
            - W0102090218
            - W0102090220
            - W0102090299
            - W0102100101
            - W0102100102
            - W0102100105
            - W0102100106
            - W0102100107
            - W0102100108
            - W0102100109
            - W0102100110
            - W0102100111
            - W0102100112
            - W0102100113
            - W0102100114
            - W0102100115
            - W0102100117
            - W0102100118
            - W0102100199
            - W0102100201
            - W0102100202
            - W0102100203
            - W0102100204
            - W0102100205
            - W0102100206
            - W0102100207
            - W0102100208
            - W0102100209
            - W0102100210
            - W0102100211
            - W0102100212
            - W0102100299
            - W0102100301
            - W0102100302
            - W0102100303
            - W0102100304
            - W0102100399
            - W0102100401
            - W0102100402
            - W0102100403
            - W0102100499
            - W0102100501
            - W0102100502
            - W0102100503
            - W0102100504
            - W0102100599
            - W0102100601
            - W0102100602
            - W0102100603
            - W0102100604
            - W0102100699
            - W0102100701
            - W0102100702
            - W0102100703
            - W0102100704
            - W0102100705
            - W0102100706
            - W0102100707
            - W0102100799
            - W0102100801
            - W0102100802
            - W0102100899
            - W0102109005
            - W0102109007
            - W0102109013
            - W0102109014
            - W0102109022
            - W0102109023
            - W0102109099
            - W01021101
            - W01021102
            - W01021103
            - W01021104
            - W01021105
            - W01021106
            - W01021107
            - W01021108
            - W01021109
            - W01021110
            - W01021111
            - W01021112
            - W01021199
            - W0102120101
            - W0102120102
            - W0102120103
            - W0102120104
            - W0102120105
            - W0102120199
            - W01021299
            - W01021301
            - W01021302
            - W01021303
            - W01021304
            - W01021305
            - W01021306
            - W01021307
            - W01021308
            - W01021309
            - W01021310
            - W01021311
            - W01021312
            - W01021313
            - W01021314
            - W01021315
            - W01021316
            - W01021399
            - W01021499
            - W0102152001
            - W0102152002
            - W0102152003
            - W0102152004
            - W0102152005
            - W0102152006
            - W0102152008
            - W0102152009
            - W0102152010
            - W0102152011
            - W0102152099
            - W01021521
            - W0102152201
            - W0102152202
            - W0102152203
            - W0102152204
            - W0102152205
            - W0102152206
            - W0102152208
            - W0102152209
            - W0102152210
            - W0102152211
            - W0102152299
            - W0102160101
            - W0102160102
            - W0102160199
            - W0102160201
            - W0102160202
            - W0102160203
            - W0102160299
            - W0102160301
            - W0102160302
            - W0102160303
            - W0102160304
            - W0102160399
            - W0102160401
            - W0102160499
            - W0102160501
            - W0102160502
            - W0102160503
            - W0102160504
            - W0102160505
            - W0102160506
            - W0102160507
            - W0102160508
            - W0102160509
            - W0102160510
            - W0102160511
            - W0102160599
            - W0102160601
            - W0102160699
            - W0102160701
            - W0102160702
            - W0102160703
            - W0102160704
            - W0102160705
            - W0102160706
            - W0102160799
            - W0102160801
            - W0102160802
            - W0102160901
            - W0102160902
            - W0102160903
            - W0102160999
            - W01021699
            - W01021701
            - W01021702
            - W01021799
            - W01029001
            - W01029002
            - W01029003
            - W01029004
            - W01029099
            - W0103010102
            - W0103010103
            - W0103010104
            - W0103010105
            - W0103010199
            - W0103010201
            - W0103010202
            - W0103010299
            - W0103010301
            - W0103010302
            - W0103010399
            - W0103010501
            - W0103010502
            - W0103010503
            - W0103010504
            - W0103010505
            - W0103010506
            - W0103010507
            - W0103010599
            - W0103010601
            - W0103010602
            - W0103010603
            - W0103010604
            - W0103010605
            - W0103010606
            - W0103010607
            - W0103010699
            - W01030107
            - W0103019001
            - W01030199
            - W0103020101
            - W0103020102
            - W0103020103
            - W0103020104
            - W0103020199
            - W0103020201
            - W0103020202
            - W0103020203
            - W0103020204
            - W0103020205
            - W0103020206
            - W0103020207
            - W0103020208
            - W0103020209
            - W0103020210
            - W0103020211
            - W0103020212
            - W0103020213
            - W0103020214
            - W0103020215
            - W0103020216
            - W0103020217
            - W0103020218
            - W0103020299
            - W0103020301
            - W0103020302
            - W0103020303
            - W0103020304
            - W0103020305
            - W0103020306
            - W0103020307
            - W0103020308
            - W0103020309
            - W0103020310
            - W0103020311
            - W0103020399
            - W0103020401
            - W0103020402
            - W0103020403
            - W0103020404
            - W0103020405
            - W0103020406
            - W0103020407
            - W0103020499
            - W0103020501
            - W0103020502
            - W0103020503
            - W0103020504
            - W0103020505
            - W0103020506
            - W0103020507
            - W0103020508
            - W0103020509
            - W0103020599
            - W0103020601
            - W0103020602
            - W0103020603
            - W0103020604
            - W0103020605
            - W0103020606
            - W0103020607
            - W0103020608
            - W0103020609
            - W0103020610
            - W0103020611
            - W0103020612
            - W0103020613
            - W0103020614
            - W0103020615
            - W0103020699
            - W0103020701
            - W0103020702
            - W0103020799
            - W0103020801
            - W0103020802
            - W0103020803
            - W0103020804
            - W010302080501
            - W010302080502
            - W0103020806
            - W0103020899
            - W0103020901
            - W0103020902
            - W0103020903
            - W0103020904
            - W0103020999
            - W01030299
            - W0103030101
            - W0103030102
            - W0103030199
            - W0103030201
            - W0103030202
            - W0103030299
            - W0103030301
            - W0103030302
            - W0103030303
            - W0103030304
            - W0103030305
            - W0103030306
            - W0103030307
            - W0103030308
            - W0103030399
            - W0103030401
            - W0103030402
            - W0103030499
            - W0103030501
            - W0103030901
            - W0103030902
            - W0103030999
            - W01030399
            - W01030401
            - W01030402
            - W01030403
            - W01030404
            - W01030405
            - W01030406
            - W01030499
            - W01030601
            - W01030602
            - W01030603
            - W01030604
            - W01030605
            - W01030606
            - W01030607
            - W01030608
            - W01030609
            - W01030699
            - W01030701
            - W01030702
            - W01030703
            - W01030704
            - W01030705
            - W01030706
            - W01030707
            - W01030708
            - W01030709
            - W01030710
            - W01030711
            - W01030799
            - W0103080101
            - W0103080102
            - W0103080103
            - W0103080104
            - W0103080105
            - W0103080106
            - W0103080199
            - W0103080201
            - W0103080202
            - W0103080203
            - W0103080204
            - W0103080299
            - W01030803
            - W0103080401
            - W0103080402
            - W0103080403
            - W0103080404
            - W0103080499
            - W0103080501
            - W0103080502
            - W0103080599
            - W0103080699
            - W010399
            - W0104010101
            - W0104010103
            - W0104010104
            - W0104010199
            - W0104010203
            - W0104010204
            - W0104010206
            - W0104010299
            - W0104010306
            - W0104010402
            - W0104010403
            - W0104010404
            - W0104010405
            - W0104010407
            - W0104010499
            - W0104010501
            - W0104010504
            - W0104010599
            - W0104010603
            - W0104010604
            - W0104010699
            - W0104010701
            - W0104010702
            - W0104010703
            - W0104010799
            - W0104010804
            - W0104010805
            - W0104010899
            - W0104010901
            - W0104010999
            - W0104030101
            - W0104030199
            - W0104030201
            - W0104030202
            - W0104030299
            - W0104030301
            - W0104030302
            - W0104030303
            - W0104030399
            - W0104030403
            - W0104030404
            - W0104030405
            - W0104030499
            - W0104030501
            - W0104030599
            - W010403060101
            - W010403060102
            - W010403060199
            - W01040401
            - W01040402
            - W01040403
            - W01040404
            - W01040499
            - W0104050101
            - W0104050102
            - W0104050199
            - W0104050201
            - W0104050202
            - W0104050203
            - W0104050299
            - W01040601
            - W01040699
            - W010407
            - W0104080101
            - W0104080103
            - W0104080105
            - W0104080107
            - W0104080108
            - W0104080109
            - W0104080110
            - W0104080111
            - W0104080112
            - W0104080113
            - W0104080201
            - W0104080203
            - W0104080207
            - W0104080208
            - W0104080209
            - W0104080299
            - W0104080301
            - W0104080302
            - W0104080303
            - W0104080304
            - W0104080399
            - W0104080501
            - W0104080502
            - W0104080503
            - W0104080504
            - W0104080505
            - W0104080506
            - W0104080590
            - W0104080599
            - W0104080601
            - W0104080602
            - W0104080604
            - W0104080605
            - W0104080606
            - W0104080607
            - W0104080608
            - W0104080699
            - W010499
            - W0105010107
            - W0105010108
            - W0105010109
            - W0105010110
            - W0105010111
            - W0105010112
            - W0105010113
            - W0105010114
            - W0105010115
            - W0105010116
            - W0105010117
            - W0105010118
            - W0105010199
            - W0105010201
            - W0105010202
            - W0105010203
            - W0105010299
            - W0105010301
            - W0105010302
            - W0105010303
            - W0105010304
            - W0105010305
            - W0105010399
            - W0105010401
            - W0105010402
            - W0105010403
            - W0105010499
            - W0105010501
            - W0105010502
            - W0105010503
            - W0105010599
            - W0105010601
            - W0105010602
            - W0105010603
            - W0105010604
            - W0105010605
            - W0105010699
            - W0105010701
            - W0105010702
            - W0105010703
            - W0105010704
            - W0105010799
            - W0105010801
            - W0105010802
            - W0105010803
            - W0105010899
            - W0105010901
            - W0105010902
            - W0105010999
            - W0105011001
            - W0105011002
            - W0105011003
            - W0105011099
            - W0105011101
            - W0105011102
            - W0105011103
            - W0105011104
            - W0105011105
            - W0105011199
            - W0105011201
            - W0105011202
            - W0105011203
            - W0105011299
            - W0105011301
            - W0105011302
            - W0105011303
            - W0105011304
            - W0105011305
            - W0105011399
            - W0105011401
            - W0105011402
            - W0105011499
            - W0105011501
            - W0105011502
            - W0105011503
            - W0105011599
            - W0105011601
            - W0105011603
            - W0105011604
            - W0105011605
            - W0105011606
            - W0105011607
            - W0105011608
            - W0105011609
            - W0105011610
            - W0105011611
            - W0105011612
            - W0105011613
            - W0105011614
            - W0105011699
            - W0105011701
            - W0105011703
            - W0105011704
            - W0105011705
            - W0105011706
            - W0105011707
            - W0105011708
            - W0105011709
            - W0105011710
            - W0105011711
            - W0105011712
            - W0105011713
            - W0105011714
            - W0105011799
            - W0105011801
            - W0105011802
            - W0105011803
            - W0105011804
            - W0105011899
            - W0105020101
            - W0105020102
            - W0105020103
            - W0105020104
            - W0105020105
            - W0105020199
            - W0105020201
            - W0105020202
            - W0105020203
            - W0105020204
            - W0105020205
            - W0105020206
            - W0105020207
            - W0105020208
            - W0105020209
            - W0105020210
            - W0105020211
            - W0105020212
            - W0105020213
            - W0105020214
            - W0105020215
            - W0105020216
            - W0105020217
            - W0105020218
            - W0105020299
            - W0105020301
            - W0105020302
            - W0105020303
            - W0105020304
            - W0105020305
            - W0105020306
            - W0105020307
            - W0105020308
            - W0105020309
            - W0105020399
            - W0105020401
            - W0105020402
            - W0105020403
            - W0105020404
            - W0105020405
            - W0105020406
            - W0105020499
            - W0105020501
            - W0105020502
            - W0105020503
            - W0105020504
            - W0105020505
            - W0105020506
            - W0105020507
            - W0105020599
            - W0105020601
            - W0105020602
            - W0105020603
            - W0105020604
            - W0105020605
            - W0105020606
            - W0105020699
            - W0105020701
            - W0105020702
            - W0105020703
            - W0105020704
            - W0105020705
            - W0105020706
            - W0105020799
            - W0105029099
            - W0105030101
            - W0105030102
            - W0105030103
            - W0105030104
            - W0105030105
            - W0105030106
            - W0105030107
            - W0105030108
            - W0105030199
            - W0105030201
            - W0105030202
            - W0105030203
            - W0105030204
            - W0105030205
            - W0105030299
            - W0105030301
            - W0105030302
            - W0105030303
            - W0105030399
            - W0105030401
            - W0105030402
            - W0105030403
            - W0105030404
            - W0105030405
            - W0105030499
            - W0105030501
            - W0105030502
            - W0105030503
            - W0105030504
            - W0105030599
            - W0105030601
            - W0105030602
            - W0105030603
            - W0105030604
            - W0105030699
            - W0105030701
            - W0105030702
            - W0105030703
            - W0105030704
            - W0105030799
            - W0105040101
            - W0105040102
            - W0105040103
            - W0105040104
            - W0105040199
            - W0105040201
            - W0105040202
            - W0105040203
            - W0105040204
            - W0105040205
            - W0105040206
            - W0105040299
            - W0105040301
            - W0105040302
            - W0105040303
            - W0105040304
            - W0105040305
            - W0105040306
            - W0105040307
            - W0105040308
            - W0105040309
            - W0105040310
            - W0105040311
            - W0105040399
            - W010504040101
            - W010504040102
            - W010504040103
            - W010504040104
            - W010504040105
            - W010504040106
            - W010504040107
            - W010504040108
            - W010504040199
            - W0105040403
            - W0105040499
            - W0105040501
            - W0105040502
            - W0105040504
            - W0105040505
            - W0105040506
            - W0105040509
            - W0105040511
            - W0105040512
            - W0105040513
            - W0105040514
            - W0105040515
            - W0105040516
            - W0105040517
            - W0105040518
            - W0105040520
            - W0105040521
            - W0105040522
            - W0105040523
            - W0105040524
            - W0105040525
            - W0105040526
            - W0105040528
            - W0105040529
            - W0105040530
            - W0105040531
            - W0105040532
            - W0105040599
            - W0105040601
            - W0105040602
            - W0105040604
            - W0105040605
            - W0105040606
            - W0105040609
            - W0105040611
            - W0105040612
            - W0105040613
            - W0105040614
            - W0105040615
            - W0105040616
            - W0105040617
            - W0105040618
            - W0105040620
            - W0105040621
            - W0105040622
            - W0105040623
            - W0105040624
            - W0105040625
            - W0105040626
            - W0105040627
            - W0105040628
            - W0105040629
            - W0105040630
            - W0105040699
            - W0105040701
            - W0105040702
            - W0105040703
            - W0105040704
            - W0105040799
            - W0105040801
            - W0105040802
            - W0105040803
            - W0105040804
            - W0105040899
            - W0105040901
            - W0105040902
            - W0105040903
            - W0105040904
            - W0105040999
            - W0105041001
            - W0105041002
            - W0105041003
            - W0105041004
            - W0105041005
            - W0105041099
            - W0105041101
            - W0105041102
            - W0105041103
            - W0105041104
            - W0105041105
            - W0105041106
            - W0105041199
            - W01050499
            - W0105050101
            - W0105050102
            - W0105050103
            - W0105050104
            - W0105050105
            - W0105050199
            - W0105050201
            - W0105050202
            - W0105050203
            - W0105050204
            - W0105050205
            - W0105050206
            - W0105050207
            - W0105050208
            - W0105050209
            - W0105050210
            - W0105050299
            - W0105050301
            - W0105050302
            - W0105050303
            - W0105050304
            - W0105050305
            - W0105050306
            - W0105050307
            - W0105050308
            - W0105050309
            - W0105050310
            - W0105050399
            - W0105060301
            - W0105060302
            - W0105060303
            - W0105060399
            - W0105060401
            - W0105060402
            - W0105060403
            - W0105060404
            - W0105060405
            - W0105060499
            - W0105070201
            - W0105070202
            - W0105070203
            - W0105070301
            - W0105070302
            - W0105070303
            - W0105070304
            - W0105070399
            - W01050704
            - W0105070501
            - W0105070502
            - W0105070503
            - W0105070504
            - W0105070505
            - W0105070506
            - W0105070507
            - W0105070599
            - W01050799
            - W0105080801
            - W0105080802
            - W0105080803
            - W0105080804
            - W0105080805
            - W0105080806
            - W0105080807
            - W0105080808
            - W0105080899
            - W0105080901
            - W0105080902
            - W0105080903
            - W0105080904
            - W0105080905
            - W0105080906
            - W0105080907
            - W0105080908
            - W0105080999
            - W0105090101
            - W0105090102
            - W0105090103
            - W0105090104
            - W0105090105
            - W0105090106
            - W0105090107
            - W0105090108
            - W0105090109
            - W0105090199
            - W0105090201
            - W0105090202
            - W0105090299
            - W0105090301
            - W0105090302
            - W0105090303
            - W0105090399
            - W0105090401
            - W0105090499
            - W0105090501
            - W0105090502
            - W0105090599
            - W0105090601
            - W0105090699
            - W0105094001
            - W0105094002
            - W0105099001
            - W0105099002
            - W0105099003
            - W0105099004
            - W0105099006
            - W0105099007
            - W0105099008
            - W0105099099
            - W0105900101
            - W0105900102
            - W0105900103
            - W0105900201
            - W0105900299
            - W0106010101
            - W0106010102
            - W0106010103
            - W0106010104
            - W0106010105
            - W0106010106
            - W0106010107
            - W0106010108
            - W0106010109
            - W0106010110
            - W0106010111
            - W0106010112
            - W0106010113
            - W0106010114
            - W0106010115
            - W0106010116
            - W0106010117
            - W0106010199
            - W0106010201
            - W0106010202
            - W0106010203
            - W0106010204
            - W0106010205
            - W0106010206
            - W0106010207
            - W0106010299
            - W0106010301
            - W0106010302
            - W0106010303
            - W0106010304
            - W0106010305
            - W0106010399
            - W0106010401
            - W0106010499
            - W01060201
            - W01060202
            - W01060203
            - W01060204
            - W01060205
            - W01060206
            - W01060207
            - W01060208
            - W01060209
            - W01060210
            - W01060211
            - W01060212
            - W01060213
            - W01060214
            - W01060215
            - W01060299
            - W0106030101
            - W0106030102
            - W0106030103
            - W0106030104
            - W0106030105
            - W010699
            - W0201010101
            - W0201010102
            - W0201010103
            - W0201010104
            - W0201010105
            - W0201010106
            - W0201010107
            - W0201010108
            - W0201010180
            - W0201010182
            - W0201010185
            - W0201010192
            - W020101020101
            - W020101020102
            - W020101020103
            - W020101020180
            - W020101020182
            - W020101020185
            - W020101020192
            - W0201010202
            - W0201010203
            - W0201010280
            - W0201010282
            - W0201010285
            - W0201010292
            - W0201010299
            - W02010199
            - W0201020101
            - W0201020102
            - W0201020103
            - W0201020104
            - W0201020180
            - W0201020182
            - W0201020185
            - W0201020192
            - W0201020201
            - W0201020202
            - W0201020203
            - W0201020204
            - W0201020205
            - W0201020280
            - W0201020282
            - W0201020285
            - W0201020292
            - W0201020299
            - W02010299
            - W0201030101
            - W0201030102
            - W0201030103
            - W0201030180
            - W0201030182
            - W0201030185
            - W0201030192
            - W02010399
            - W0201040101
            - W0201040102
            - W0201040180
            - W0201040182
            - W0201040185
            - W0201040192
            - W0201040201
            - W0201040202
            - W0201040203
            - W0201040280
            - W0201040282
            - W0201040285
            - W0201040292
            - W0201040299
            - W02010499
            - W0201050101
            - W020105010201
            - W020105010202
            - W020105010203
            - W020105010280
            - W020105010282
            - W020105010285
            - W020105010292
            - W020105010299
            - W020105019001
            - W020105019002
            - W020105019080
            - W020105019082
            - W020105019085
            - W020105019092
            - W020105019099
            - W0201050201
            - W0201050280
            - W0201050282
            - W0201050285
            - W0201050292
            - W0201050299
            - W0201060101
            - W0201060102
            - W020106019080
            - W020106019082
            - W020106019085
            - W020106019092
            - W020106019099
            - W0201069001
            - W0201069002
            - W0201069003
            - W0201069004
            - W0201069005
            - W0201069080
            - W0201069082
            - W0201069085
            - W0201069092
            - W0201069099
            - W02010701
            - W02010780
            - W02010782
            - W02010785
            - W02010792
            - W0202010101
            - W0202010102
            - W0202010103
            - W0202010180
            - W0202010182
            - W0202010185
            - W0202010192
            - W0202010201
            - W0202010202
            - W0202010280
            - W0202010282
            - W0202010285
            - W0202010292
            - W0202010299
            - W02020199
            - W0202020101
            - W0202020102
            - W0202020180
            - W0202020182
            - W0202020185
            - W0202020192
            - W0202029001
            - W0202029080
            - W0202029082
            - W0202029085
            - W0202029092
            - W0202029099
            - W0202030101
            - W0202030102
            - W0202030180
            - W0202030182
            - W0202030185
            - W0202030192
            - W0202030201
            - W0202030202
            - W0202030203
            - W0202030280
            - W0202030282
            - W0202030285
            - W0202030292
            - W02020399
            - W0202040101
            - W0202040102
            - W0202040103
            - W0202040180
            - W0202040182
            - W0202040185
            - W0202040192
            - W02020499
            - W02020501
            - W02020502
            - W0202050301
            - W0202050302
            - W0202050303
            - W0202050304
            - W0202050380
            - W0202050382
            - W0202050385
            - W0202050392
            - W0202059001
            - W0202059002
            - W0202059003
            - W0202059004
            - W0202059005
            - W0202059006
            - W0202059007
            - W0202059008
            - W0202059009
            - W0202059010
            - W0202059011
            - W0202059012
            - W0202059013
            - W0202059014
            - W0202059015
            - W0202059016
            - W0202059017
            - W0202059080
            - W0202059082
            - W0202059085
            - W0202059092
            - W0202059099
            - W02020601
            - W02020602
            - W02020680
            - W02020682
            - W02020685
            - W02020692
            - W02020699
            - W02029001
            - W02029002
            - W02029003
            - W02029005
            - W02029006
            - W02029007
            - W02029008
            - W02029009
            - W02029010
            - W02029080
            - W02029082
            - W02029085
            - W02029092
            - W02029099
            - W0203010180
            - W0203010182
            - W0203010185
            - W0203010192
            - W02030199
            - W02030201
            - W02030299
            - W020303
            - W020304
            - W020305
            - W020306
            - W02039001
            - W02039002
            - W02039003
            - W02039004
            - W02039005
            - W02039006
            - W02039080
            - W02039082
            - W02039085
            - W02039092
            - W02039099
            - W0204
            - W02050101
            - W02050102
            - W02050103
            - W02050104
            - W02050105
            - W02050106
            - W02050107
            - W02050108
            - W02050109
            - W02050110
            - W02050111
            - W02050112
            - W02050113
            - W02050114
            - W02050115
            - W02050116
            - W02050180
            - W02050182
            - W02050185
            - W02050192
            - W02050199
            - W02050201
            - W02050202
            - W02050280
            - W02050282
            - W02050285
            - W02050292
            - W02050299
            - W02050301
            - W02050380
            - W02050382
            - W02050385
            - W02050392
            - W02050399
            - W02060101
            - W02060102
            - W02060180
            - W02060182
            - W02060185
            - W02060192
            - W02060199
            - W02060201
            - W02060280
            - W02060282
            - W02060285
            - W02060292
            - W02060299
            - W02069001
            - W02069002
            - W02069003
            - W02069004
            - W02069005
            - W02069006
            - W02069080
            - W02069082
            - W02069085
            - W02069092
            - W02069099
            - W02070101
            - W02070102
            - W02070103
            - W020702
            - W02070301
            - W02070302
            - W02070303
            - W02070304
            - W02070401
            - W02070402
            - W02070403
            - W02070404
            - W02079001
            - W02079002
            - W02079003
            - W02079004
            - W02079006
            - W02079007
            - W02079008
            - W02079009
            - W02079011
            - W02079012
            - W02079013
            - W02079014
            - W02079015
            - W02079016
            - W02079017
            - W02079080
            - W02079082
            - W02079085
            - W02079092
            - W02079099
            - W0299
            - W050101010101
            - W050101010102
            - W050101010201
            - W050101010202
            - W0501010103
            - W0501010180
            - W0501010199
            - W0501010201
            - W0501010202
            - W0501010203
            - W0501010280
            - W0501010299
            - W0501020101
            - W0501020102
            - W05010202
            - W05010203
            - W05010280
            - W05010299
            - W050180
            - W05019001
            - W05019002
            - W05019003
            - W05019005
            - W05019099
            - W05020101
            - W05020102
            - W05020103
            - W05020104
            - W05020105
            - W05020106
            - W05020180
            - W05020199
            - W050280
            - W050299
            - W0503010101
            - W0503010102
            - W0503010103
            - W0503010104
            - W0503010105
            - W0503010106
            - W0503010180
            - W0503010199
            - W050301020101
            - W050301020102
            - W050301020180
            - W050301020201
            - W050301020202
            - W050301020280
            - W0503010203
            - W0503010204
            - W0503010205
            - W0503010206
            - W0503010207
            - W0503010208
            - W0503010209
            - W0503010280
            - W050301029001
            - W050301029099
            - W05030199
            - W050302010101
            - W050302010102
            - W0503020180
            - W0503020199
            - W0503020201
            - W0503020202
            - W0503020280
            - W0503030101
            - W0503030199
            - W05030302
            - W05030380
            - W05030399
            - W0503040101
            - W0503040102
            - W0503040103
            - W0503040104
            - W0503040105
            - W0503040180
            - W0503040199
            - W05030402
            - W05030480
            - W05030499
            - W05030501
            - W05030502
            - W05030580
            - W05030599
            - W0503900101
            - W0503900102
            - W0503900199
            - W0503900201
            - W0503900202
            - W05039080
            - W05039099
            - W0580
            - W0599
            - X01010101
            - X01010102
            - X010102
            - X0102
            - X020101
            - X020102
            - X020201
            - X020202
            - X0301
            - X0302
            - X0303
            - X0304
            - X0401
            - X0402
            - X0403
            - X0501
            - X0502
            - X0599
            - X06
            - Y0501
            - Y050201
            - Y050202
            - Y0503
            - Y0504
            - Y0580
            - Y0599
            - Y060303
            - Y060306
            - Y060307
            - Y060308
            - Y060309
            - Y060312
            - Y060315
            - Y060318
            - Y060380
            - Y060399
            - Y060403
            - Y060406
            - Y060499
            - Y060603
            - Y060606
            - Y060609
            - Y060612
            - Y060613
            - Y060615
            - Y060618
            - Y060619
            - Y060621
            - Y060624
            - Y060627
            - Y060630
            - Y060680
            - Y060699
            - Y061203
            - Y06120601
            - Y06120602
            - Y061209
            - Y06121201
            - Y06121202
            - Y06121203
            - Y061215
            - Y061216
            - Y061217
            - Y061218
            - Y061219
            - Y061280
            - Y061299
            - Y061803
            - Y061806
            - Y061809
            - Y061812
            - Y061815
            - Y061818
            - Y061899
            - Y062403
            - Y062409
            - Y062412
            - Y062415
            - Y062418
            - Y062499
            - Y062703
            - Y063018
            - Y063021
            - Y063099
            - Y063303
            - Y0699
            - Y090312
            - Y090327
            - Y090342
            - Y090399
            - Y090612
            - Y090618
            - Y090699
            - Y091203
            - Y091209
            - Y091212
            - Y091215
            - Y091299
            - Y093303
            - Y093312
            - Y093399
            - Y0999
            - Y120303
            - Y12030601
            - Y12030602
            - Y12030603
            - Y120315
            - Y120318
            - Y120380
            - Y120399
            - Y120603
            - Y120606
            - Y120609
            - Y120612
            - Y120615
            - Y120680
            - Y120699
            - Y121801
            - Y121806
            - Y121809
            - Y121821
            - Y121899
            - Y122103
            - Y122106
            - Y122109
            - Y122124
            - Y122127
            - Y122130
            - Y122199
            - Y122403
            - Y122406
            - Y122409
            - Y122410
            - Y122411
            - Y122412
            - Y122499
            - Y122703
            - Y122799
            - Y1299
            - Y150912
            - Y150915
            - Y150918
            - Y150921
            - Y150999
            - Y1599
            - Y1803
            - Y180918
            - Y180939
            - Y180980
            - Y180999
            - Y181803
            - Y181806
            - Y181809
            - Y181899
            - Y183012
            - Y183015
            - Y183099
            - Y1899
            - Y210306
            - Y210321
            - Y210324
            - Y210330
            - Y210333
            - Y210336
            - Y210399
            - Y210603
            - Y210606
            - Y210609
            - Y210699
            - Y210905
            - Y210906
            - Y210915
            - Y210924
            - Y210999
            - Y211518
            - Y211599
            - Y212703
            - Y212706
            - Y213603
            - Y213609
            - Y213624
            - Y213699
            - Y213924
            - Y213999
            - Y214209
            - Y214212
            - Y214224
            - Y214299
            - Y2145060101
            - Y2145060102
            - Y2145060201
            - Y2145060202
            - Y2145060203
            - Y2145060204
            - Y21450603
            - Y21450901
            - Y21450902
            - Y21450903
            - Y21450904
            - Y214580
            - Y214599
            - Y215112
            - Y215199
            - Y2199
            - Y240918
            - Y240999
            - Y241203
            - Y241299
            - Y241815
            - Y241899
            - Y242103
            - Y242199
            - Y2499
            - Y99
            - Z11010101
            - Z11010102
            - Z11010103
            - Z11010104
            - Z11010180
            - Z11010182
            - Z11010185
            - Z11010192
            - Z11010199
            - Z11010201
            - Z11010202
            - Z11010280
            - Z11010282
            - Z11010285
            - Z11010292
            - Z11010301
            - Z11010380
            - Z11010382
            - Z11010385
            - Z11010392
            - Z11010401
            - Z11010480
            - Z11010482
            - Z11010485
            - Z11010492
            - Z11010501
            - Z11010580
            - Z11010582
            - Z11010585
            - Z11010592
            - Z11010701
            - Z11010780
            - Z11010782
            - Z11010785
            - Z11010792
            - Z11010801
            - Z11010880
            - Z11010882
            - Z11010885
            - Z11010892
            - Z11010901
            - Z11010980
            - Z11010982
            - Z11010985
            - Z11010992
            - Z11011001
            - Z11011080
            - Z11011082
            - Z11011085
            - Z11011092
            - Z11019001
            - Z11019002
            - Z11019004
            - Z11019005
            - Z11019080
            - Z11019082
            - Z11019085
            - Z11019092
            - Z11019099
            - Z11020101
            - Z11020102
            - Z11020103
            - Z11020104
            - Z11020105
            - Z11020180
            - Z11020182
            - Z11020185
            - Z11020192
            - Z11020201
            - Z11020280
            - Z11020282
            - Z11020285
            - Z11020292
            - Z11020301
            - Z11020380
            - Z11020382
            - Z11020385
            - Z11020392
            - Z11020401
            - Z11020480
            - Z11020482
            - Z11020485
            - Z11020492
            - Z110205
            - Z110206
            - Z11020701
            - Z11020780
            - Z11020782
            - Z11020785
            - Z11020792
            - Z11029001
            - Z11029002
            - Z11029003
            - Z11029004
            - Z11029005
            - Z11029080
            - Z11029082
            - Z11029085
            - Z11029092
            - Z11029099
            - Z11030101
            - Z11030102
            - Z11030103
            - Z11030180
            - Z11030182
            - Z11030185
            - Z11030192
            - Z11030201
            - Z11030202
            - Z1103028001
            - Z1103028099
            - Z11030282
            - Z11030285
            - Z11030292
            - Z1103030101
            - Z1103030102
            - Z11030302
            - Z11030380
            - Z11030382
            - Z11030385
            - Z11030392
            - Z1103040101
            - Z1103040102
            - Z11030402
            - Z11030480
            - Z11030482
            - Z11030485
            - Z11030492
            - Z11030501
            - Z11030502
            - Z11030503
            - Z11030504
            - Z11030505
            - Z11030506
            - Z11030507
            - Z11030580
            - Z11030582
            - Z11030585
            - Z11030592
            - Z11030599
            - Z11030601
            - Z11030602
            - Z11030603
            - Z11030605
            - Z11030606
            - Z11030607
            - Z11030680
            - Z11030682
            - Z11030685
            - Z11030692
            - Z11030699
            - Z11030701
            - Z11030702
            - Z11030703
            - Z11030704
            - Z11030780
            - Z11030782
            - Z11030785
            - Z11030792
            - Z110310
            - Z11031101
            - Z11031102
            - Z11031180
            - Z11031182
            - Z11031192
            - Z11039001
            - Z11039002
            - Z11039003
            - Z11039004
            - Z11039005
            - Z11039006
            - Z11039007
            - Z11039008
            - Z11039009
            - Z11039010
            - Z11039011
            - Z11039012
            - Z11039013
            - Z11039014
            - Z11039015
            - Z11039016
            - Z11039017
            - Z11039018
            - Z11039019
            - Z11039020
            - Z11039021
            - Z11039080
            - Z11039082
            - Z11039085
            - Z11039092
            - Z11039099
            - Z11040101
            - Z11040102
            - Z11040103
            - Z11040104
            - Z11040105
            - Z11040106
            - Z11040107
            - Z1104018099
            - Z11040182
            - Z11040185
            - Z11040192
            - Z11040199
            - Z110402010101
            - Z110402010102
            - Z110402010201
            - Z110402010202
            - Z110402010301
            - Z110402010302
            - Z110402010401
            - Z110402010402
            - Z110402010501
            - Z110402010502
            - Z1104020201
            - Z1104020202
            - Z1104020301
            - Z1104020302
            - Z11040299
            - Z11049080
            - Z11049082
            - Z11049085
            - Z11049092
            - Z11049099
            - Z11050101
            - Z11050102
            - Z11050103
            - Z11050104
            - Z11050105
            - Z11050106
            - Z1105018001
            - Z1105018002
            - Z1105018099
            - Z11050182
            - Z11050185
            - Z11050192
            - Z11059001
            - Z11059080
            - Z11059082
            - Z11059085
            - Z11059092
            - Z11059099
            - Z110601
            - Z11060201
            - Z11060202
            - Z11060280
            - Z11060282
            - Z11060285
            - Z11060292
            - Z110603
            - Z11069001
            - Z11069002
            - Z11069003
            - Z11069004
            - Z11069005
            - Z11069080
            - Z11069082
            - Z11069085
            - Z11069092
            - Z11069099
            - Z110701
            - Z110702
            - Z110703
            - Z110704
            - Z110705
            - Z110706
            - Z11070701
            - Z11070702
            - Z11070780
            - Z11070785
            - Z11079001
            - Z11079002
            - Z11079003
            - Z11079004
            - Z11079005
            - Z11079006
            - Z11079007
            - Z11079008
            - Z11079080
            - Z11079082
            - Z11079085
            - Z11079092
            - Z11079099
            - Z11900101
            - Z11900102
            - Z11900103
            - Z11900180
            - Z11900182
            - Z11900185
            - Z11900192
            - Z119002
            - Z119003
            - Z119004
            - Z119005
            - Z119007
            - Z11900801
            - Z11900802
            - Z11900880
            - Z11900885
            - Z119010
            - Z119011
            - Z119012
            - Z119013
            - Z119014
            - Z119080
            - Z119082
            - Z119085
            - Z119092
            - Z119099
            - Z120101
            - Z120102
            - Z120103
            - Z120104
            - Z120105
            - Z120106
            - Z12010701
            - Z12010702
            - Z12010780
            - Z12010785
            - Z12010799
            - Z12010801
            - Z12010880
            - Z12010882
            - Z12010885
            - Z12010892
            - Z12010901
            - Z12010902
            - Z12010903
            - Z12010904
            - Z12010905
            - Z12010980
            - Z12010982
            - Z12010985
            - Z12010992
            - Z12010999
            - Z12011001
            - Z12011002
            - Z12011003
            - Z12011004
            - Z12011005
            - Z12011006
            - Z12011007
            - Z12011008
            - Z12011009
            - Z12011010
            - Z12011011
            - Z12011012
            - Z12011013
            - Z12011014
            - Z12011015
            - Z12011016
            - Z12011017
            - Z12011018
            - Z12011019
            - Z12011080
            - Z12011082
            - Z12011085
            - Z12011092
            - Z12011099
            - Z12011101
            - Z1201118001
            - Z1201118099
            - Z12011182
            - Z12011185
            - Z12011192
            - Z12011199
            - Z12011201
            - Z12011202
            - Z12011280
            - Z12011285
            - Z12011299
            - Z12011301
            - Z12011302
            - Z12011303
            - Z12011304
            - Z12011305
            - Z12011306
            - Z12011307
            - Z12011309
            - Z1201131001
            - Z1201131002
            - Z1201131003
            - Z1201131099
            - Z12011311
            - Z12011312
            - Z12011313
            - Z12011314
            - Z12011380
            - Z12011382
            - Z12011385
            - Z12011392
            - Z12011399
            - Z12011401
            - Z12011480
            - Z12011482
            - Z12011485
            - Z12011492
            - Z12019001
            - Z12019002
            - Z12019003
            - Z12019004
            - Z12019005
            - Z12019006
            - Z12019007
            - Z12019008
            - Z12019009
            - Z12019010
            - Z12019080
            - Z12019082
            - Z12019085
            - Z12019092
            - Z12019099
            - Z12020101
            - Z1202018001
            - Z1202018002
            - Z1202018099
            - Z12020182
            - Z12020185
            - Z12020192
            - Z12020199
            - Z12020201
            - Z12020280
            - Z12020282
            - Z12020285
            - Z12020292
            - Z12020301
            - Z12020302
            - Z12020303
            - Z12020304
            - Z12020380
            - Z12020382
            - Z12020385
            - Z12020392
            - Z12020401
            - Z12020402
            - Z12020403
            - Z12020404
            - Z12020405
            - Z12020406
            - Z12020480
            - Z12020482
            - Z12020485
            - Z12020492
            - Z12020499
            - Z12020501
            - Z12020502
            - Z12020503
            - Z12020504
            - Z12020505
            - Z12020506
            - Z12020507
            - Z12020508
            - Z12020509
            - Z12020510
            - Z12020511
            - Z12020580
            - Z12020582
            - Z12020585
            - Z12020592
            - Z12020599
            - Z12020601
            - Z12020602
            - Z12020603
            - Z12020604
            - Z12020605
            - Z12020606
            - Z12020607
            - Z12020608
            - Z12020680
            - Z12020682
            - Z12020685
            - Z12020692
            - Z12020699
            - Z12020701
            - Z12020702
            - Z12020703
            - Z12020704
            - Z12020705
            - Z12020706
            - Z12020707
            - Z1202070801
            - Z1202070880
            - Z1202070882
            - Z1202070885
            - Z1202070892
            - Z12020709
            - Z12020710
            - Z12020711
            - Z12020712
            - Z12020713
            - Z12020780
            - Z12020782
            - Z12020785
            - Z12020792
            - Z12020799
            - Z12020801
            - Z12020802
            - Z12020880
            - Z12020882
            - Z12020885
            - Z12020892
            - Z12020899
            - Z12020901
            - Z12020902
            - Z12020903
            - Z12020980
            - Z12020982
            - Z12020985
            - Z12020992
            - Z12020999
            - Z12021001
            - Z12021002
            - Z12021003
            - Z12021004
            - Z12021005
            - Z12021006
            - Z12021007
            - Z12021008
            - Z12021009
            - Z12021010
            - Z1202101101
            - Z1202101180
            - Z1202101182
            - Z1202101185
            - Z1202101192
            - Z12021080
            - Z12021082
            - Z12021085
            - Z12021092
            - Z12021099
            - Z12021101
            - Z1202110201
            - Z1202110280
            - Z1202110282
            - Z1202110285
            - Z1202110292
            - Z12021180
            - Z12021182
            - Z12021185
            - Z12021192
            - Z12021199
            - Z12021201
            - Z12021202
            - Z12021280
            - Z12021282
            - Z12021285
            - Z12021292
            - Z12029001
            - Z12029002
            - Z12029003
            - Z12029004
            - Z12029005
            - Z12029006
            - Z12029007
            - Z12029008
            - Z12029009
            - Z12029011
            - Z12029012
            - Z12029014
            - Z12029015
            - Z12029016
            - Z12029017
            - Z12029080
            - Z12029082
            - Z12029085
            - Z12029092
            - Z12029099
            - Z1203010101
            - Z1203010180
            - Z1203010182
            - Z1203010185
            - Z1203010192
            - Z1203010199
            - Z12030102
            - Z12030103
            - Z12030104
            - Z1203010501
            - Z1203010502
            - Z1203010503
            - Z1203010504
            - Z1203010580
            - Z1203010582
            - Z1203010585
            - Z1203010592
            - Z1203010599
            - Z1203019001
            - Z1203019002
            - Z1203019003
            - Z1203019004
            - Z1203019005
            - Z1203019080
            - Z1203019082
            - Z1203019085
            - Z1203019092
            - Z1203019099
            - Z12030201
            - Z1203020201
            - Z1203020202
            - Z1203020280
            - Z1203020282
            - Z1203020285
            - Z1203020292
            - Z1203020299
            - Z1203020301
            - Z1203020302
            - Z1203020401
            - Z1203020402
            - Z1203020403
            - Z1203020404
            - Z1203020405
            - Z1203020406
            - Z1203020407
            - Z1203020408
            - Z1203020480
            - Z1203020482
            - Z1203020485
            - Z1203020492
            - Z1203020499
            - Z1203020501
            - Z1203020599
            - Z12030280
            - Z12030282
            - Z12030285
            - Z12030292
            - Z12030299
            - Z12030301
            - Z12030302
            - Z12030303
            - Z12030304
            - Z12030305
            - Z12030306
            - Z12030380
            - Z12030382
            - Z12030385
            - Z12030392
            - Z12030399
            - Z120304
            - Z12030501
            - Z12030502
            - Z12030503
            - Z12030580
            - Z12030582
            - Z12030585
            - Z12030592
            - Z12030599
            - Z12030601
            - Z12030602
            - Z12030603
            - Z12030680
            - Z12030682
            - Z12030685
            - Z12030692
            - Z120308
            - Z120309
            - Z12039001
            - Z12039002
            - Z12039080
            - Z12039082
            - Z12039085
            - Z12039092
            - Z12039099
            - Z12040101
            - Z12040102
            - Z12040103
            - Z12040104
            - Z12040105
            - Z12040106
            - Z12040107
            - Z12040108
            - Z12040109
            - Z12040110
            - Z12040111
            - Z12040112
            - Z12040113
            - Z12040114
            - Z1204011501
            - Z1204011502
            - Z1204011585
            - Z1204011599
            - Z12040116
            - Z12040117
            - Z12040118
            - Z12040180
            - Z12040182
            - Z12040185
            - Z12040192
            - Z12040199
            - Z12040201
            - Z12040202
            - Z12040203
            - Z12040205
            - Z12040206
            - Z12040207
            - Z12040208
            - Z12040210
            - Z12040211
            - Z12040213
            - Z12040214
            - Z1204021501
            - Z1204021580
            - Z1204021582
            - Z1204021585
            - Z1204021592
            - Z120402160101
            - Z120402160102
            - Z120402160103
            - Z1204021602
            - Z1204021603
            - Z1204021680
            - Z1204021685
            - Z1204021699
            - Z12040218
            - Z12040219
            - Z12040280
            - Z12040282
            - Z12040285
            - Z12040292
            - Z12040299
            - Z120499
            - Z12050101
            - Z12050180
            - Z12050182
            - Z12050185
            - Z12050192
            - Z12050201
            - Z12050280
            - Z12050282
            - Z12050285
            - Z12050292
            - Z12050301
            - Z12050302
            - Z12050303
            - Z12050380
            - Z12050382
            - Z12050385
            - Z12050392
            - Z12050401
            - Z12050402
            - Z12050403
            - Z12050404
            - Z12050480
            - Z12050482
            - Z12050485
            - Z12050492
            - Z12050499
            - Z12050501
            - Z12050580
            - Z12050582
            - Z12050585
            - Z12050592
            - Z12050601
            - Z12050602
            - Z12050603
            - Z12050680
            - Z12050682
            - Z12050685
            - Z12050692
            - Z12050699
            - Z12050701
            - Z12050702
            - Z12050703
            - Z1205078001
            - Z1205078099
            - Z12050782
            - Z12050785
            - Z12050792
            - Z12050801
            - Z12050802
            - Z12050803
            - Z12050804
            - Z12050880
            - Z12050882
            - Z12050885
            - Z12050892
            - Z12050899
            - Z12059001
            - Z12059002
            - Z12059003
            - Z12059004
            - Z12059005
            - Z12059006
            - Z12059007
            - Z12059008
            - Z12059009
            - Z12059010
            - Z12059011
            - Z12059012
            - Z12059013
            - Z12059080
            - Z12059082
            - Z12059085
            - Z12059092
            - Z12059099
            - Z120601
            - Z120602
            - Z120603
            - Z120604
            - Z120605
            - Z120606
            - Z120607
            - Z120608
            - Z120609
            - Z120610
            - Z120611
            - Z120612
            - Z120613
            - Z120614
            - Z120615
            - Z120616
            - Z120617
            - Z120618
            - Z120619
            - Z120620
            - Z120621
            - Z120622
            - Z120623
            - Z12062401
            - Z12062402
            - Z12062403
            - Z12062404
            - Z12062480
            - Z12062482
            - Z12062485
            - Z12062492
            - Z12062499
            - Z12062501
            - Z12062502
            - Z12062503
            - Z12062504
            - Z12062505
            - Z12062506
            - Z12062580
            - Z12062582
            - Z12062585
            - Z12062592
            - Z12062599
            - Z12062601
            - Z12062602
            - Z12062603
            - Z12062680
            - Z12062682
            - Z12062685
            - Z12062692
            - Z12062699
            - Z12062701
            - Z12062702
            - Z12062703
            - Z12062704
            - Z12062705
            - Z12062780
            - Z12062782
            - Z12062785
            - Z12062792
            - Z12062799
            - Z12062801
            - Z12062802
            - Z12062880
            - Z12062882
            - Z12062885
            - Z12062892
            - Z12062899
            - Z12069001
            - Z12069002
            - Z12069003
            - Z12069080
            - Z12069082
            - Z12069085
            - Z12069092
            - Z12069099
            - Z120701
            - Z120702
            - Z120703
            - Z120704
            - Z120706
            - Z120707
            - Z120780
            - Z120782
            - Z120785
            - Z120792
            - Z120799
            - Z12080101
            - Z12080102
            - Z12080103
            - Z1208010401
            - Z1208010402
            - Z1208010403
            - Z1208010480
            - Z1208010482
            - Z1208010485
            - Z1208010492
            - Z1208010499
            - Z12080105
            - Z12080180
            - Z12080182
            - Z12080185
            - Z12080192
            - Z12080199
            - Z12080201
            - Z12080202
            - Z12080203
            - Z12080204
            - Z12080205
            - Z12080280
            - Z12080282
            - Z12080285
            - Z12080292
            - Z12080299
            - Z12080301
            - Z12080303
            - Z12080304
            - Z12080305
            - Z12080380
            - Z12080382
            - Z12080385
            - Z12080392
            - Z12080399
            - Z12080401
            - Z12080402
            - Z1208040301
            - Z1208040302
            - Z1208040380
            - Z1208040382
            - Z1208040385
            - Z1208040392
            - Z12080404
            - Z12080405
            - Z12080406
            - Z12080407
            - Z12080408
            - Z12080409
            - Z12080410
            - Z12080480
            - Z12080482
            - Z12080485
            - Z12080492
            - Z12080499
            - Z120899
            - Z12090101
            - Z12090180
            - Z12090182
            - Z12090185
            - Z12090192
            - Z12090201
            - Z12090280
            - Z12090282
            - Z12090285
            - Z12090292
            - Z12090301
            - Z12090380
            - Z12090382
            - Z12090385
            - Z12090392
            - Z12099001
            - Z12099002
            - Z12099003
            - Z12099004
            - Z12099005
            - Z12099006
            - Z12099007
            - Z12099080
            - Z12099082
            - Z12099085
            - Z12099092
            - Z12099099
            - Z121001
            - Z121002
            - Z12100301
            - Z12100302
            - Z12100303
            - Z12100380
            - Z12100382
            - Z12100385
            - Z12100392
            - Z12100401
            - Z12100480
            - Z12100482
            - Z12100485
            - Z12100492
            - Z12100501
            - Z12100580
            - Z12100582
            - Z12100585
            - Z12100592
            - Z12100601
            - Z12100680
            - Z12100682
            - Z12100685
            - Z12100692
            - Z12100701
            - Z12100702
            - Z12100703
            - Z12100780
            - Z12100782
            - Z12100785
            - Z12100792
            - Z12100801
            - Z12100802
            - Z12100803
            - Z12100880
            - Z12100882
            - Z12100885
            - Z12100892
            - Z12100901
            - Z12100902
            - Z12100980
            - Z12100982
            - Z12100985
            - Z12100992
            - Z12101001
            - Z12101002
            - Z12101003
            - Z12101080
            - Z12101082
            - Z12101085
            - Z12101092
            - Z12101101
            - Z12101102
            - Z12101103
            - Z12101104
            - Z12101105
            - Z12101106
            - Z12101180
            - Z12101182
            - Z12101185
            - Z12101192
            - Z12101199
            - Z12101201
            - Z12101280
            - Z12101282
            - Z12101285
            - Z12101292
            - Z12109001
            - Z12109002
            - Z12109003
            - Z12109004
            - Z12109005
            - Z12109006
            - Z12109007
            - Z12109080
            - Z12109082
            - Z12109085
            - Z12109092
            - Z12109099
            - Z12110101
            - Z12110102
            - Z12110180
            - Z12110182
            - Z12110185
            - Z12110192
            - Z12110199
            - Z12119001
            - Z12119002
            - Z12119003
            - Z12119004
            - Z12119005
            - Z12119006
            - Z12119007
            - Z12119008
            - Z12119009
            - Z12119080
            - Z12119082
            - Z12119085
            - Z12119092
            - Z12119099
            - Z12120101
            - Z12120102
            - Z12120103
            - Z12120104
            - Z12120105
            - Z12120106
            - Z12120107
            - Z12120108
            - Z12120109
            - Z12120110
            - Z12120111
            - Z12120112
            - Z12120113
            - Z12120114
            - Z12120115
            - Z12120116
            - Z12120117
            - Z12120118
            - Z12120119
            - Z1212012001
            - Z1212012002
            - Z1212012003
            - Z1212012004
            - Z1212012005
            - Z1212012080
            - Z1212012082
            - Z1212012085
            - Z1212012092
            - Z1212012099
            - Z12120121
            - Z12120122
            - Z12120123
            - Z12120124
            - Z12120125
            - Z12120180
            - Z12120182
            - Z12120185
            - Z12120192
            - Z12120199
            - Z12120201
            - Z12120202
            - Z12120203
            - Z12120204
            - Z1212020501
            - Z1212020502
            - Z1212020580
            - Z1212020582
            - Z1212020585
            - Z1212020592
            - Z1212020599
            - Z1212020601
            - Z1212020602
            - Z1212020680
            - Z1212020682
            - Z1212020685
            - Z1212020692
            - Z1212020699
            - Z1212020701
            - Z1212020702
            - Z1212020703
            - Z1212020780
            - Z1212020782
            - Z1212020785
            - Z1212020792
            - Z1212020799
            - Z12120208
            - Z12120280
            - Z12120282
            - Z12120285
            - Z12120292
            - Z12120299
            - Z12129001
            - Z12129080
            - Z12129082
            - Z12129085
            - Z12129092
            - Z12129099
            - Z121301
            - Z12130201
            - Z12130202
            - Z12130280
            - Z12130282
            - Z12130285
            - Z12130292
            - Z12130301
            - Z12130380
            - Z12130382
            - Z12130385
            - Z12130392
            - Z12130401
            - Z12130480
            - Z12130482
            - Z12130485
            - Z12130492
            - Z12130501
            - Z12130502
            - Z12130503
            - Z12130580
            - Z12130582
            - Z12130585
            - Z12130592
            - Z12130599
            - Z12139001
            - Z12139002
            - Z12139003
            - Z12139004
            - Z12139005
            - Z12139006
            - Z12139080
            - Z12139082
            - Z12139085
            - Z12139092
            - Z12139099
            - Z121401
            - Z121402
            - Z12140301
            - Z12140302
            - Z12140380
            - Z12140382
            - Z12140385
            - Z12140392
            - Z12140401
            - Z12140402
            - Z12140403
            - Z12140404
            - Z12140480
            - Z12140482
            - Z12140485
            - Z12140492
            - Z12140501
            - Z12140580
            - Z12140582
            - Z12140585
            - Z12140592
            - Z12149001
            - Z12149002
            - Z12149003
            - Z12149004
            - Z12149005
            - Z12149006
            - Z12149007
            - Z12149008
            - Z12149009
            - Z12149010
            - Z12149011
            - Z12149080
            - Z12149082
            - Z12149085
            - Z12149092
            - Z12149099
            - Z12150101
            - Z12150102
            - Z12150180
            - Z12150182
            - Z12150185
            - Z12150192
            - Z12150199
            - Z12150201
            - Z12150202
            - Z12150203
            - Z12150280
            - Z12150282
            - Z12150285
            - Z12150292
            - Z12159001
            - Z12159002
            - Z12159003
            - Z12159004
            - Z12159005
            - Z12159006
            - Z12159007
            - Z12159008
            - Z12159009
            - Z12159010
            - Z12159011
            - Z12159080
            - Z12159082
            - Z12159085
            - Z12159092
            - Z12159099
            - Z12160101
            - Z12160180
            - Z12160182
            - Z12160185
            - Z12160192
            - Z12160201
            - Z12160202
            - Z12160280
            - Z12160282
            - Z12160285
            - Z12160292
            - Z12160301
            - Z12160302
            - Z12160303
            - Z12160380
            - Z12160382
            - Z12160385
            - Z12160392
            - Z12160399
            - Z12160401
            - Z12160480
            - Z12160482
            - Z12160485
            - Z12160492
            - Z121605
            - Z12169001
            - Z12169002
            - Z12169003
            - Z12169004
            - Z12169080
            - Z12169082
            - Z12169085
            - Z12169092
            - Z12169099
            - Z121701
            - Z121702
            - Z121703
            - Z12170401
            - Z12170402
            - Z121780
            - Z121799
            - Z129003
            - Z129004
            - Z129005
            - Z129006
            - Z129007
            - Z129009
            - Z129010
            - Z129011
            - Z129012
            - Z129013
            - Z129017
            - Z129080
            - Z129082
            - Z129085
            - Z129092
            - Z129099
            - Z130101
            - Z130102
            - Z130103
            - Z130104
            - Z130105
            - Z130106
            - Z130107
            - Z13019001
            - Z13019002
            - Z13019099
            - Z1302
            - Z1399
        Packages:
          type: object
          description: >-
            Reference to the Container Package Structure associated to the
            UDI-DI
          maxItems: 0
          minItems: 0
          properties:
            Status:
              type: string
              description: >-
                Status of the Container Package element (On the EU market, Not
                intended to be placed on the EU market,  No longer placed on the
                EU market)
              enum:
                - NO_LONGER_PLACED_ON_THE_MARKET
                - ON_THE_MARKET
            PackagingDi:
              type: string
              description: Unique identifier of the Package UDI-DI
            NumberOfItems:
              type: number
              description: >-
                Number of Items in the Package Structure. \n\nUsed when
                describing the Container Packaging Structure of a Device
              minimum: 0
            Child:
              type: string
              description: >-
                Container Packaging Structure is a hierarchical structure
                defining how the Device is packaged together for shipping and
                selling reasons. \nWhen defining the package structure, it
                starts from the highest element in the structure (highest
                package in the structure) which contains no more parents and
                continues till the UDI-DI. For all structures defined , the last
                element (lowest element in the structure) defined must be  the
                UDI-DI.\n\nThe field stores a link to the child element in the
                structure (current element being its parent). Field will not be
                provided for the lowest element - the UDI-DI (as it has no more
                childs)
            ChildIssuingAgency:
              type: string
              description: >-
                Organization accredited by European Commission to operate a
                system for the issuance of UDIs
              enum:
                - GS1
                - HIBCC
                - ICCBBA
                - IFA
          required:
            - Child
            - ChildIssuingAgency
            - NumberOfItems
            - PackagingDi
            - Status
        ProductionIdentifier:
          type: string
          description: >-
            Reference to the Types of UDI-PI (production Identifiers) applicable
            for the current Device (UDI-DI). Defines the way the production is
            controled
          enum:
            - BATCH_NUMBER
            - EXPIRATION_DATE
            - MANUFACTURING_DATE
            - SERIALISATION_NUMBER
            - SOFTWARE_VERSION
        AdditionalDeviceDescriptions:
          type: object
          description: >-
            Additional Product Description.\n\nAdditional Product Description is
            required for System or Procedure Packs or for Standard Devices being
            marked as System or Procedure Packs (as a Device in themselvs)
          maxItems: 0
          minItems: 0
          properties:
            AdditionalDeviceDescriptionLanguage:
              type: string
              enum:
                - BG
                - CS
                - DA
                - DE
                - EL
                - EN
                - ES
                - ET
                - FI
                - FR
                - GA
                - HR
                - HU
                - IS
                - IT
                - LT
                - LV
                - MT
                - NL
                - 'NO'
                - PL
                - PT
                - RO
                - SK
                - SL
                - SV
                - TR
            AdditionalDeviceDescription:
              type: string
          required:
            - AdditionalDeviceDescription
            - AdditionalDeviceDescriptionLanguage
        Warnings:
          type: object
          description: >-
            References the Critical warnings  associated  to  the Device
            (UDI-DI)
          maxItems: 0
          minItems: 0
          properties:
            WarningCommentLocalized:
              type: string
              description: >-
                Comments or description associated to the values selected for
                the Critical warnings 
            Type:
              type: string
              description: >-
                Storage and handling Conditions and Critical Warnings or
                Contra-Indications specified on the Label of the Device or in
                the Instruction of Use have to be registered in EUDAMED - if
                applicable. \n\nField stores the Type of Critical Warnings or
                Contra-Indications, being required in this case
              enum:
                - CW001
                - CW006
                - CW007
                - CW008
                - CW009
                - CW010
                - CW011
                - CW012
                - CW013
                - CW014
                - CW015
                - CW016
                - CW017
                - CW018
                - CW020
                - CW022
                - CW023
                - CW024
                - CW025
                - CW026
                - CW027
                - CW028
                - CW029
                - CW030
                - CW031
                - CW032
                - CW035
                - CW036
                - CW037
                - CW038
                - CW039
                - CW040
                - CW041
                - CW042
                - CW043
                - CW044
                - CW045
                - CW046
                - CW047
                - CW048
                - CW049
                - CW050
                - CW051
                - CW052
                - CW053
                - CW054
                - CW055
                - CW056
                - CW057
                - CW058
                - CW059
                - CW060
                - CW061
                - CW062
                - CW063
                - CW064
                - CW065
                - CW066
                - CW067
                - CW068
                - CW069
                - CW070
                - CW071
                - CW072
                - CW073
                - CW074
                - CW075
                - CW076
                - CW077
                - CW078
                - CW079
                - CW080
                - CW081
                - CW082
                - CW083
                - CW084
                - CW085
                - CW086
                - CW087
                - CW088
                - CW089
                - CW090
                - CW091
                - CW092
                - CW093
                - CW094
                - CW095
                - CW096
                - CW097
                - CW098
                - CW099
                - CW100
                - CW101
                - CW102
                - CW103
                - CW104
                - CW105
                - CW106
                - CW107
                - CW108
                - CW109
                - CW110
                - CW111
                - CW112
                - CW113
                - CW114
                - CW115
                - CW116
                - CW117
                - CW118
                - CW119
                - CW120
                - CW121
                - CW122
                - CW123
                - CW124
                - CW125
                - CW126
                - CW127
                - CW128
                - CW129
                - CW130
                - CW131
                - CW132
                - CW133
                - CW134
                - CW135
                - CW136
                - CW137
                - CW138
                - CW139
                - CW140
                - CW141
                - CW142
                - CW143
                - CW144
                - CW146
                - CW147
                - CW148
                - CW149
                - CW150
                - CW151
                - CW152
                - CW153
                - CW154
                - CW155
                - CW156
                - CW157
                - CW158
                - CW159
                - CW160
                - CW161
                - CW162
                - CW163
                - CW164
                - CW165
                - CW166
                - CW167
                - CW168
                - CW169
                - CW170
                - CW171
                - CW172
                - CW173
                - CW175
                - CW176
                - CW177
                - CW178
                - CW179
                - CW180
                - CW181
                - CW182
                - CW183
                - CW184
                - CW185
                - CW186
                - CW187
                - CW188
                - CW189
                - CW190
                - CW191
                - CW192
                - CW193
                - CW194
                - CW195
                - CW196
                - CW197
                - CW198
                - CW199
                - CW201
                - CW202
                - CW203
                - CW206
                - CW207
                - CW208
                - CW209
                - CW210
                - CW211
                - CW212
                - CW213
                - CW216
                - CW217
                - CW218
                - CW219
                - CW220
                - CW221
                - CW223
                - CW224
                - CW225
                - CW226
                - CW254
                - CW255
                - CW257
                - CW258
                - CW259
                - CW260
                - CW261
                - CW262
                - CW263
                - CW264
                - CW265
                - CW266
                - CW267
                - CW268
                - CW269
                - CW270
                - CW271
                - CW272
                - CW273
                - CW274
                - CW275
                - CW276
                - CW277
                - CW278
                - CW279
                - CW280
                - CW281
                - CW282
                - CW283
                - CW284
                - CW285
                - CW286
                - CW287
                - CW288
                - CW289
                - CW290
                - CW291
                - CW292
                - CW293
                - CW294
                - CW295
                - CW296
                - CW297
                - CW298
                - CW299
                - CW300
                - CW301
                - CW302
                - CW303
                - CW304
                - CW305
                - CW306
                - CW307
                - CW308
                - CW309
                - CW310
                - CW311
                - CW312
                - CW313
                - CW314
                - CW315
                - CW316
                - CW317
                - CW318
                - CW319
                - CW320
                - CW321
                - CW322
                - CW323
                - CW324
                - CW325
                - CW326
                - CW327
                - CW328
                - CW329
                - CW330
                - CW331
                - CW332
                - CW333
                - CW334
                - CW335
                - CW336
                - CW337
                - CW338
                - CW339
                - CW340
                - CW341
                - CW342
                - CW343
                - CW344
                - CW345
                - CW346
                - CW347
                - CW348
                - CW349
                - CW350
                - CW351
                - CW352
                - CW353
                - CW354
                - CW355
                - CW356
                - CW357
                - CW358
                - CW359
                - CW360
                - CW361
                - CW362
                - CW363
                - CW364
                - CW365
                - CW366
                - CW367
                - CW368
                - CW369
                - CW370
                - CW371
                - CW372
                - CW373
                - CW374
                - CW375
                - CW376
                - CW377
                - CW378
                - CW379
                - CW380
                - CW381
                - CW382
                - CW383
                - CW384
                - CW385
                - CW386
                - CW387
                - CW388
                - CW389
                - CW390
                - CW391
                - CW392
                - CW393
                - CW394
                - CW395
                - CW396
                - CW397
                - CW398
                - CW399
                - CW400
                - CW401
                - CW402
                - CW403
                - CW404
                - CW405
                - CW406
                - CW407
                - CW408
                - CW409
                - CW410
                - CW411
                - CW412
                - CW413
                - CW414
                - CW415
                - CW416
                - CW417
                - CW418
                - CW419
                - CW420
                - CW421
                - CW422
                - CW423
                - CW424
                - CW425
                - CW426
                - CW427
                - CW428
                - CW429
                - CW430
                - CW431
                - CW432
                - CW433
                - CW434
                - CW435
                - CW436
                - CW437
                - CW438
                - CW439
                - CW440
                - CW441
                - CW442
                - CW443
                - CW444
                - CW445
                - CW446
                - CW447
                - CW448
                - CW449
                - CW450
                - CW451
                - CW452
                - CW453
                - CW454
                - CW455
                - CW456
                - CW457
                - CW458
                - CW459
                - CW460
                - CW461
                - CW462
                - CW463
                - CW464
                - CW465
                - CW466
                - CW999
          required:
            - Type
      required:
        - AdditionalDeviceDescriptions
        - CommercialDistributionStatus
        - Device
        - DeviceGroup
        - IssuingAgency
        - MDN
        - ProductionIdentifier
        - ReferenceNumber
        - ReqSterilizatonPriorUse
        - Sterile
    DEVICE_GROUP_EU_UDI_SPP:
      type: object
      properties:
        DeviceModel:
          type: string
          description: >-
            Information allowing the identification of the device - Device
            Model. \n\nAt least one of the Device identification details (Device
            Model or the Device Name) have to be provided for a Basic UDI-DI
        OrgUnit:
          type: string
        DeviceGroupAgency:
          type: string
          description: >-
            Organization accredited by European Commission to operate a system
            for the issuance of Basic UDIs
          enum:
            - GS1
            - HIBCC
            - ICCBBA
            - IFA
        RiskClass:
          type: string
          description: >-
            Risk Class of the Device associated with the Basic UDI-DI.\n\nDevice
            Risk Class is dependent directly on the Applicable Legislation of
            the Device
          enum:
            - CLASS_I
            - CLASS_IIA
            - CLASS_IIB
            - CLASS_III
        SPPType:
          type: string
          description: Determine if it is a System or a Procedure Pack
          enum:
            - PROCEDURE_PACK
            - SYSTEM
        PRActorCode:
          type: string
          description: SRN of the System or Procedure Pack
        DeviceGroup:
          type: string
          description: >-
            Device Identifier code/value (DI Code). Together with the Issuing
            Entity creates the uniqness of the element to which they are
            assigned (Basic UDI-DI , UDI-DI, etc.)\n\nThe Basic UDI-DI is the
            primary identifier of a device model.It is the main key for records
            in the UDI database and is referenced in relevant certificates and
            EU declarations of conformity
        MedicalPurposes:
          type: object
          description: >-
            Description of the Medical Purpose of the System or Procedure
            Pack.\n\nField is applicable for System and Procedure Packs and
            refers to the Indication of the specific medical purpose of the
            System or Procedure Pack Producer
          maxItems: 0
          minItems: 0
          properties:
            MedicalPurpose:
              type: string
              description: >-
                Description of the Medical Purpose of the System or Procedure
                Pack.\n\nField is applicable for System and Procedure Packs and
                refers to the Indication of the specific medical purpose of the
                System or Procedure Pack Producer
            MedicalPurposeLanguage:
              type: string
              enum:
                - BG
                - CS
                - DA
                - DE
                - EL
                - EN
                - ES
                - ET
                - FI
                - FR
                - GA
                - HR
                - HU
                - IS
                - IT
                - LT
                - LV
                - MT
                - NL
                - 'NO'
                - PL
                - PT
                - RO
                - SK
                - SL
                - SV
                - TR
          required:
            - MedicalPurpose
            - MedicalPurposeLanguage
        ApplicableLegislation:
          type: string
          description: >-
            Applicable Legislation of the Device.\n\nThe device can have only
            one Applicable Legislation. Either a Regulation value can be
            selected/provided (MDR or IVDR) or a Directive Regulation value
            (MDD, AIMDD or IVDD) - in the case of Directive Devices
          enum:
            - MDR_SPP
        DeviceName:
          type: string
          description: >-
            Information allowing the identification of the device - Device Name.
            \n\nAt least one of the Device identification details (Device Model
            or the Device Name) have to be provided for a Basic UDI-DI
      required:
        - ApplicableLegislation
        - DeviceGroup
        - DeviceGroupAgency
        - MedicalPurposes
        - PRActorCode
        - RiskClass
        - SPPType
    ValidationResponse:
      type: object
      properties:
        status:
          type: string
          description: Overall status of the validation
        message:
          type: string
          description: Validation message
        deviceErrors:
          type: array
          description: Validation errors related to the device (DI)
          items:
            $ref: '#/components/schemas/ValidationError'
        deviceGroupErrors:
          type: array
          description: Validation errors related to the device group (BUDI)
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      type: object
      properties:
        path:
          type: string
          description: (JSON)-Path to the field the validation error is related to
        message:
          type: string
          description: Validation message
        ruleId:
          type: string
          description: Validation rule identifier
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header

````