rbedi 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/bin/edi +897 -0
  3. data/lib/rbedi/codes/aaa.rb +437 -0
  4. data/lib/rbedi/codes/ak1.rb +278 -0
  5. data/lib/rbedi/codes/ak2.rb +336 -0
  6. data/lib/rbedi/codes/ak9.rb +55 -0
  7. data/lib/rbedi/codes/bht.rb +706 -0
  8. data/lib/rbedi/codes/codeset.rb +27 -0
  9. data/lib/rbedi/codes/dmg.rb +1583 -0
  10. data/lib/rbedi/codes/dtp.rb +1342 -0
  11. data/lib/rbedi/codes/eb.rb +1511 -0
  12. data/lib/rbedi/codes/eq.rb +286 -0
  13. data/lib/rbedi/codes/ge.rb +14 -0
  14. data/lib/rbedi/codes/gs.rb +287 -0
  15. data/lib/rbedi/codes/hl.rb +273 -0
  16. data/lib/rbedi/codes/iea.rb +14 -0
  17. data/lib/rbedi/codes/ik3.rb +32 -0
  18. data/lib/rbedi/codes/ik4.rb +37 -0
  19. data/lib/rbedi/codes/ik5.rb +56 -0
  20. data/lib/rbedi/codes/isa.rb +137 -0
  21. data/lib/rbedi/codes/le.rb +13 -0
  22. data/lib/rbedi/codes/ls.rb +13 -0
  23. data/lib/rbedi/codes/msg.rb +25 -0
  24. data/lib/rbedi/codes/n3.rb +14 -0
  25. data/lib/rbedi/codes/n4.rb +706 -0
  26. data/lib/rbedi/codes/nm1.rb +1916 -0
  27. data/lib/rbedi/codes/per.rb +308 -0
  28. data/lib/rbedi/codes/ref.rb +1749 -0
  29. data/lib/rbedi/codes/se.rb +14 -0
  30. data/lib/rbedi/codes/segment_names.rb +44 -0
  31. data/lib/rbedi/codes/st.rb +336 -0
  32. data/lib/rbedi/codes/trn.rb +22 -0
  33. data/lib/rbedi/codes.rb +8 -0
  34. data/lib/rbedi/edi_date_time.rb +69 -0
  35. data/lib/rbedi/functional_group.rb +52 -0
  36. data/lib/rbedi/non_existent_element_error.rb +4 -0
  37. data/lib/rbedi/parser.rb +102 -0
  38. data/lib/rbedi/segment.rb +114 -0
  39. data/lib/rbedi/transaction_envelope.rb +77 -0
  40. data/lib/rbedi/transaction_set.rb +40 -0
  41. data/lib/rbedi.rb +20 -4
  42. metadata +79 -10
@@ -0,0 +1,1916 @@
1
+ module RBEDI
2
+ module Codes
3
+ module NM1
4
+ extend CodeSet
5
+
6
+ SEGMENT_POSITIONS = {
7
+ 1 => :entity_identifier_code,
8
+ 2 => :entity_type_qualifier,
9
+ 3 => :last_name_or_organization_name,
10
+ 4 => :first_name,
11
+ 5 => :middle_name,
12
+ 6 => :name_prefix,
13
+ 7 => :name_suffix,
14
+ 8 => :identification_code_qualifier,
15
+ 9 => :identification_code,
16
+ 10 => :entity_relationship_code,
17
+ 11 => :related_entity_identifier_code,
18
+ 12 => :related_last_name_or_organization_name,
19
+ }
20
+
21
+ CODES = {
22
+ 1 => {
23
+ "00" => :alternate_insurer,
24
+ "0a" => :comparable_rentals,
25
+ "0b" => :interim_funding_organization,
26
+ "0d" => :nonoccupant_coborrower,
27
+ "0e" => :list_owner,
28
+ "0f" => :list_mailer,
29
+ "0g" => :primary_electronic_business_contact,
30
+ "0h" => :state_division,
31
+ "0i" => :alternate_electronic_business_contact,
32
+ "0j" => :primary_practice_location,
33
+ "0p" => :party_to_declare_goods,
34
+ "01" => :loan_applicant,
35
+ "001" => :pumper,
36
+ "1a" => :subgroup,
37
+ "1b" => :applicant,
38
+ "1c" => :group_purchasing_organization_gpo,
39
+ "1d" => :cooperative,
40
+ "1e" => :health_maintenance_organization_hmo,
41
+ "1f" => :alliance,
42
+ "1g" => :oncology_center,
43
+ "1h" => :kidney_dialysis_unit,
44
+ "1i" => :preferred_provider_organization_ppo,
45
+ "1j" => :connectionthe_name_of_pipeline_company_to_which_a_well_lease_or_field_is_connected,
46
+ "1k" => :franchisor,
47
+ "1l" => :franchisee,
48
+ "1m" => :previous_group,
49
+ "1n" => :shareholder,
50
+ "1o" => :acute_care_hospital,
51
+ "1p" => :provider,
52
+ "1q" => :military_facility,
53
+ "1r" => :university_college_or_school,
54
+ "1s" => :outpatient_surgicenter,
55
+ "1t" => :physician_clinic_or_group_practice,
56
+ "1u" => :long_term_care_facility,
57
+ "1v" => :extended_care_facility,
58
+ "1w" => :psychiatric_health_facility,
59
+ "1x" => :laboratory,
60
+ "1y" => :retail_pharmacy,
61
+ "1z" => :home_health_care,
62
+ "02" => :loan_broker,
63
+ "002" => :surface_management_entity,
64
+ "2a" => :federal_state_county_or_city_facility,
65
+ "2b" => :thirdparty_administrator,
66
+ "2c" => :coparticipant,
67
+ "2d" => :miscellaneous_health_care_facility,
68
+ "2e" => :nonhealth_care_miscellaneous_facility,
69
+ "2f" => :state,
70
+ "2g" => :assigner,
71
+ "2h" => :hospital_district_or_authority,
72
+ "2i" => :church_operated_facility,
73
+ "2j" => :individual,
74
+ "2k" => :partnership,
75
+ "2l" => :corporation,
76
+ "2m" => :air_force_facility,
77
+ "2n" => :army_facility,
78
+ "2o" => :navy_facility,
79
+ "2p" => :public_health_service_facility,
80
+ "2q" => :veterans_administration_facility,
81
+ "2r" => :federal_facility,
82
+ "2s" => :public_health_service_indian_service_facility,
83
+ "2t" => :department_of_justice_facility,
84
+ "2u" => :other_notforprofit_facility,
85
+ "2v" => :individual_forprofit_facility,
86
+ "2w" => :partnership_forprofit_facility,
87
+ "2x" => :corporation_forprofit_facility,
88
+ "2y" => :general_medical_and_surgical_facility,
89
+ "2z" => :hospital_unit_of_an_institution_prison_hospital_college_infirmary_etc,
90
+ "03" => :dependent,
91
+ "003" => :application_party,
92
+ "3a" => :hospital_unit_within_an_institution_for_the_mentally_retarded,
93
+ "3b" => :psychiatric_facility,
94
+ "3c" => :tuberculosis_and_other_respiratory_diseases_facility,
95
+ "3d" => :obstetrics_and_gynecology_facility,
96
+ "3e" => :eye_ear_nose_and_throat_facility,
97
+ "3f" => :rehabilitation_facility,
98
+ "3g" => :orthopedic_facility,
99
+ "3h" => :chronic_disease_facility,
100
+ "3i" => :other_specialty_facility,
101
+ "3j" => :childrens_general_facility,
102
+ "3k" => :childrens_hospital_unit_of_an_institution,
103
+ "3l" => :childrens_psychiatric_facility,
104
+ "3m" => :childrens_tuberculosis_and_other_respiratory_diseases_facility,
105
+ "3n" => :childrens_eye_ear_nose_and_throat_facility,
106
+ "3o" => :childrens_rehabilitation_facility,
107
+ "3p" => :childrens_orthopedic_facility,
108
+ "3q" => :childrens_chronic_disease_facility,
109
+ "3r" => :childrens_other_specialty_facility,
110
+ "3s" => :institution_for_mental_retardation,
111
+ "3t" => :alcoholism_and_other_chemical_dependency_facility,
112
+ "3u" => :general_inpatient_care_for_aidsarc_facility,
113
+ "3v" => :aidsarc_unit,
114
+ "3w" => :specialized_outpatient_program_for_aidsarc,
115
+ "3x" => :alcoholdrug_abuse_or_dependency_inpatient_unit,
116
+ "3y" => :alcoholdrug_abuse_or_dependency_outpatient_services,
117
+ "3z" => :arthritis_treatment_center,
118
+ "04" => :asset_account_holder,
119
+ "004" => :site_operator,
120
+ "4a" => :birthing_roomldrp_room,
121
+ "4b" => :burn_care_unit,
122
+ "4c" => :cardiac_catherization_laboratory,
123
+ "4d" => :openheart_surgery_facility,
124
+ "4e" => :cardiac_intensive_care_unit,
125
+ "4f" => :angioplasty_facility,
126
+ "4g" => :chronic_obstructive_pulmonary_disease_service_facility,
127
+ "4h" => :emergency_department,
128
+ "4i" => :trauma_center_certified,
129
+ "4j" => :extracorporeal_shockwave_lithotripter_eswl_unit,
130
+ "4k" => :fitness_center,
131
+ "4l" => :genetic_counselingscreening_services,
132
+ "4m" => :adult_day_care_program_facility,
133
+ "4n" => :alzheimers_diagnosticassessment_services,
134
+ "4o" => :comprehensive_geriatric_assessment_facility,
135
+ "4p" => :emergency_response_geriatric_unit,
136
+ "4q" => :geriatric_acute_care_unit,
137
+ "4r" => :geriatric_clinics,
138
+ "4s" => :respite_care_facility,
139
+ "4t" => :senior_membership_program,
140
+ "4u" => :patient_education_unit,
141
+ "4v" => :community_health_promotion_facility,
142
+ "4w" => :worksite_health_promotion_facility,
143
+ "4x" => :hemodialysis_facility,
144
+ "4y" => :home_health_services,
145
+ "4z" => :hospice,
146
+ "05" => :tenant,
147
+ "005" => :construction_contractor,
148
+ "5a" => :medical_surgical_or_other_intensive_care_unit,
149
+ "5b" => :hisopathology_laboratory,
150
+ "5c" => :blood_bank,
151
+ "5d" => :neonatal_intensive_care_unit,
152
+ "5e" => :obstetrics_unit,
153
+ "5f" => :occupational_health_services,
154
+ "5g" => :organized_outpatient_services,
155
+ "5h" => :pediatric_acute_inpatient_unit,
156
+ "5i" => :psychiatric_childadolescent_services,
157
+ "5j" => :psychiatric_consultationliaison_services,
158
+ "5k" => :psychiatric_education_services,
159
+ "5l" => :psychiatric_emergency_services,
160
+ "5m" => :psychiatric_geriatric_services,
161
+ "5n" => :psychiatric_inpatient_unit,
162
+ "5o" => :psychiatric_outpatient_services,
163
+ "5p" => :psychiatric_partial_hospitalization_program,
164
+ "5q" => :megavoltage_radiation_therapy_unit,
165
+ "5r" => :radioactive_implants_unit,
166
+ "5s" => :therapeutic_radioisotope_facility,
167
+ "5t" => :xray_radiation_therapy_unit,
168
+ "5u" => :ct_scanner_unit,
169
+ "5v" => :diagnostic_radioisotope_facility,
170
+ "5w" => :magnetic_resonance_imaging_mri_facility,
171
+ "5x" => :ultrasound_unit,
172
+ "5y" => :rehabilitation_inpatient_unit,
173
+ "5z" => :rehabilitation_outpatient_services,
174
+ "06" => :recipient_of_civil_or_legal_liability_payment,
175
+ "006" => :drilling_contractor,
176
+ "6a" => :reproductive_health_services,
177
+ "6b" => :skilled_nursing_or_other_longterm_care_unit,
178
+ "6c" => :single_photon_emission_computerized_tomography_spect_unit,
179
+ "6d" => :organized_social_work_service_facility,
180
+ "6e" => :outpatient_social_work_services,
181
+ "6f" => :emergency_department_social_work_services,
182
+ "6g" => :sports_medicine_clinicservices,
183
+ "6h" => :hospital_auxiliary_unit,
184
+ "6i" => :patient_representative_services,
185
+ "6j" => :volunteer_services_department,
186
+ "6k" => :outpatient_surgery_services,
187
+ "6l" => :organtissue_transplant_unit,
188
+ "6m" => :orthopedic_surgery_facility,
189
+ "6n" => :occupational_therapy_services,
190
+ "6o" => :physical_therapy_services,
191
+ "6p" => :recreational_therapy_services,
192
+ "6q" => :respiratory_therapy_services,
193
+ "6r" => :speech_therapy_services,
194
+ "6s" => :womens_health_centerservices,
195
+ "6t" => :health_sciences_library,
196
+ "6u" => :cardiac_rehabilitation_program_facility,
197
+ "6v" => :noninvasive_cardiac_assessment_services,
198
+ "6w" => :emergency_medical_technician,
199
+ "6x" => :disciplinary_contact,
200
+ "6y" => :case_manager,
201
+ "6z" => :advisor,
202
+ "07" => :titleholder,
203
+ "007" => :spud_contractorcontractor_responsible_for_initiating_the_drilling_of_an_oil_or_gas_well,
204
+ "7a" => :premises,
205
+ "7b" => :bottler,
206
+ "7c" => :place_of_occurrence,
207
+ "7d" => :contracting_officer_representative,
208
+ "7e" => :party_authorized_to_definitize_contract_action,
209
+ "7f" => :filing_address,
210
+ "7g" => :hazardous_material_office,
211
+ "7h" => :government_furnished_property_fob_point,
212
+ "7i" => :project_name,
213
+ "7j" => :codefendant,
214
+ "7k" => :cooccupant,
215
+ "7l" => :preliminary_inspection_location,
216
+ "7m" => :inspection_and_acceptance_location,
217
+ "7n" => :party_to_receive_proposal,
218
+ "7o" => :federally_chartered_facility,
219
+ "7p" => :transportation_office,
220
+ "7q" => :party_to_whom_protest_submitted,
221
+ "7r" => :birthplacelocation_where_individual_was_born_may_be_the_country_or_a_more_complete_address,
222
+ "7s" => :pipeline_segment,
223
+ "7t" => :home_state_namename_filed_by_a_business_in_the_state_where_it_is_incorporated_when_this_name_is_used_by_another_business_in_the_state_where_it_is_registering_to_do_business,
224
+ "7u" => :liquidator,
225
+ "7v" => :petitioning_creditors_attorney,
226
+ "7w" => :merged_namename_of_survivor_company_resulting_from_a_merger,
227
+ "7x" => :party_represented,
228
+ "7y" => :professional_organization,
229
+ "7z" => :referee,
230
+ "08" => :nonmortgage_liability_account_holder,
231
+ "008" => :lien_holder,
232
+ "8a" => :vacation_home,
233
+ "8b" => :primary_residence,
234
+ "8c" => :second_home,
235
+ "8d" => :permit_holder,
236
+ "8e" => :minority_institution,
237
+ "8f" => :bailment_warehousea_warehouse_property_that_is_owned_by_an_organization_but_the_inventory_contained_in_the_warehouse_belongs_to_the_supplier_until_the_organization_owning_the_warehouse_legally_purchases_the_goods,
238
+ "8g" => :first_appraiser,
239
+ "8h" => :tax_exempt_organization,
240
+ "8i" => :service_organization,
241
+ "8j" => :emerging_small_business,
242
+ "8k" => :surplus_dealer,
243
+ "8l" => :polling_site,
244
+ "8m" => :socially_disadvantaged_individual,
245
+ "8n" => :economically_disadvantaged_individual,
246
+ "8o" => :disabled_individual,
247
+ "8p" => :producer,
248
+ "8q" => :public_or_private_organization_for_the_disabled,
249
+ "8r" => :consumer_service_provider_csp_customer,
250
+ "8s" => :consumer_service_provider_csp,
251
+ "8t" => :voter,
252
+ "8u" => :native_hawaiian_organization,
253
+ "8v" => :primary_intralata_local_access_transport_area_carrier,
254
+ "8w" => :payment_address,
255
+ "8x" => :oil_and_gas_custodian,
256
+ "8y" => :registered_officeaddress_where_legal_correspondence_should_be_sent,
257
+ "09" => :note_cosigner,
258
+ "9a" => :debtor_individual,
259
+ "9b" => :country_of_export,
260
+ "9c" => :country_of_destination,
261
+ "9d" => :new_service_provider,
262
+ "9e" => :subservicer,
263
+ "9f" => :loss_payee,
264
+ "9g" => :nickname,
265
+ "9h" => :assignee,
266
+ "9i" => :registered_principal,
267
+ "9j" => :additional_debtor,
268
+ "9k" => :key_person,
269
+ "9l" => :incorporated_by,
270
+ "9n" => :party_to_lease,
271
+ "9o" => :party_to_contract,
272
+ "9p" => :investigator,
273
+ "9q" => :last_supplier,
274
+ "9r" => :downstream_first_supplier,
275
+ "9s" => :coinvestigator,
276
+ "9t" => :telephone_answering_service_bureau,
277
+ "9u" => :author,
278
+ "9v" => :first_supplier,
279
+ "9w" => :ultimate_parent_company,
280
+ "9x" => :contractual_receipt_meter,
281
+ "9y" => :contractual_delivery_meter,
282
+ "9z" => :codebtora_person_or_entity_that_is_also_liable_on_a_debt_listed_by_the_debtor_in_a_bankruptcy_case_excluding_the_spouse_in_a_joint_case_but_including_guarantors_and_cosigners,
283
+ "10" => :conduit,
284
+ "11" => :party_to_be_billedaar_accounting_rule_11,
285
+ "12" => :regional_office,
286
+ "13" => :contracted_service_provider,
287
+ "14" => :whollyowned_subsidiary,
288
+ "15" => :accounts_payable_office,
289
+ "16" => :plant,
290
+ "17" => :consultants_office,
291
+ "18" => :production,
292
+ "19" => :nonproduction_supplier,
293
+ "20" => :foreign_supplier,
294
+ "21" => :small_business,
295
+ "22" => :minorityowned_business_small,
296
+ "23" => :minorityowned_business_large,
297
+ "24" => :womanowned_business_small,
298
+ "25" => :womanowned_business_large,
299
+ "26" => :socially_disadvantaged_business,
300
+ "27" => :small_disadvantaged_business,
301
+ "28" => :subcontractor,
302
+ "29" => :prototype_supplier,
303
+ "30" => :service_supplier,
304
+ "31" => :postal_mailing_address,
305
+ "32" => :party_to_receive_material_release,
306
+ "33" => :inquiry_address,
307
+ "34" => :material_change_notice_address,
308
+ "35" => :electronic_data_interchange_edi_coordinator_point_address,
309
+ "36" => :employer,
310
+ "37" => :previous_debt_holder,
311
+ "38" => :mortgage_liability_account_holder,
312
+ "39" => :appraisal_company,
313
+ "40" => :receiverentity_to_accept_transmission,
314
+ "41" => :submitterentity_transmitting_transaction_set,
315
+ "42" => :component_manufacturerprovider_of_a_proprietary_designed_and_manufactured_subassembly_that_meets_defined_customer_specifications,
316
+ "43" => :claimant_authorized_representative,
317
+ "44" => :data_processing_service_bureau,
318
+ "45" => :dropoff_location,
319
+ "46" => :invoicing_dealersource_with_whom_monetary_transactions_for_component_manufacturer_extended_service_coverages_will_occur,
320
+ "47" => :estimator,
321
+ "48" => :inservice_sourcesource_placing_product_into_service,
322
+ "49" => :initial_dealerthe_dealer_who_initially_attempted_the_repair,
323
+ "50" => :manufacturers_representative,
324
+ "51" => :parts_distributor,
325
+ "52" => :part_remanufacturer,
326
+ "53" => :registered_ownerunique_code_of_entity_owning_the_equipment,
327
+ "54" => :order_writerindividual_who_receives_the_product_from_the_customer_and_prepares_the_repair_order_describing_work_to_be_performed,
328
+ "55" => :service_managerperson_responsible_for_service_department,
329
+ "56" => :servicing_dealer,
330
+ "57" => :servicing_organization,
331
+ "58" => :store_manager,
332
+ "59" => :party_to_approve_specification,
333
+ "60" => :salespersonidentification_of_individual_that_sold_the_product_eg_ssn_salesperson_id_etc,
334
+ "61" => :performed_atthe_facility_where_work_was_performed,
335
+ "62" => :applicants_employer,
336
+ "63" => :references_employer,
337
+ "64" => :cosigners_employer,
338
+ "65" => :applicants_referencea_person_identified_on_the_loan_application_as_a_secondary_contact_for_the_borrower,
339
+ "66" => :applicants_cosignera_person_who_signs_the_promissory_note_in_addition_to_the_borrower_and_is_responsible_for_the_obligation_if_the_borrower_does_not_pay,
340
+ "67" => :applicants_comakerone_of_two_individuals_who_are_joint_borrowers_on_a_loan_and_who_are_equally_liable_for_repayment_of_the_loan,
341
+ "68" => :owners_representativeindividual_operating_or_responsible_for_the_vehicleequipment,
342
+ "69" => :repairing_outletparty_completing_the_repair,
343
+ "70" => :prior_incorrect_insured,
344
+ "71" => :attending_physicianphysician_present_when_medical_services_are_performed,
345
+ "72" => :operating_physiciandoctor_who_performs_a_surgical_procedure,
346
+ "73" => :other_physicianphysician_not_one_of_the_other_specified_choices,
347
+ "74" => :corrected_insured,
348
+ "75" => :participant,
349
+ "76" => :secondary_warranter,
350
+ "77" => :service_location,
351
+ "78" => :service_requester,
352
+ "79" => :warranter,
353
+ "80" => :hospitalan_institution_where_the_ill_or_injured_may_receive_medical_treatment,
354
+ "81" => :part_sourceidentifies_vendor_who_supplied_casual_part,
355
+ "82" => :rendering_provider,
356
+ "83" => :subscribers_school,
357
+ "84" => :subscribers_employer,
358
+ "85" => :billing_provider,
359
+ "86" => :conductor,
360
+ "87" => :payto_provider,
361
+ "88" => :approvermanufacturers_representative_approving_claim_for_payment,
362
+ "89" => :investor,
363
+ "90" => :previous_business_partner,
364
+ "91" => :action_partythe_organization_responsible_for_investigation_and_resolution,
365
+ "92" => :support_partythe_organization_supporting_the_resolution_of_an_investigation,
366
+ "93" => :insurance_institute,
367
+ "94" => :new_supply_source,
368
+ "95" => :research_institute,
369
+ "96" => :debtor_company,
370
+ "97" => :party_waiving_requirements,
371
+ "98" => :freight_management_facilitatororganization_andor_individual_responsible_for_the_monitoring_and_management_of_freight_services,
372
+ "99" => :outer_continental_shelf_ocs_area_location,
373
+ "a1" => :adjusterinvestigates_a_claim_and_estimates_the_value_of_the_damage_the_information_gathered_by_an_adjuster_is_used_in_settling_the_insurance_claim,
374
+ "a2" => :womanowned_businessa_business_not_defined_as_large_or_small_that_is_owned_by_a_woman,
375
+ "a3" => :labor_surplus_area_firma_business_that_has_an_identified_surplus_of_labor_in_the_geographic_area_where_it_is_located,
376
+ "a4" => :other_disadvantaged_businessa_business_which_qualifies_as_a_disadvantaged_business_for_another_unspecified_reason,
377
+ "a5" => :veteranowned_businessa_business_owned_by_a_veteran,
378
+ "a6" => :section_8a_program_participant_firma_firm_participating_in_a_program_under_section_8_a_of_the_small_business_act_15_usc_637_a_in_which_the_small_business_administration_enters_into_contracts_on_behalf_of_and_then_subcontracts_with_the_participating_firm_certifying_the_firms_competence_and_responsibility,
379
+ "a7" => :sheltered_workshopa_business_entity_which_provides_work_for_a_special_category_of_worker,
380
+ "a8" => :nonprofit_institutiona_business_that_by_operation_of_policy_or_law_does_not_choose_or_is_not_allowed_to_make_a_profit_from_the_efforts_of_its_enterprise,
381
+ "a9" => :sales_officea_business_entity_whose_main_activity_is_or_a_location_at_which_the_sale_of_goods_or_services_takes_place,
382
+ "aa" => :authority_for_shipment,
383
+ "aa1" => :chief_executive_officer_ceo,
384
+ "aa2" => :financial_aid_office,
385
+ "aa3" => :respondent,
386
+ "aa4" => :admission_office,
387
+ "aa5" => :multicampus_administrative_unit,
388
+ "aa6" => :headmaster,
389
+ "aa7" => :business_officer,
390
+ "aa8" => :superintendent,
391
+ "aa9" => :school_principal,
392
+ "aaa" => :subaccount,
393
+ "aab" => :management_nonofficera_manager_who_is_not_an_officer_of_a_company,
394
+ "aac" => :incorporated_locationlocation_where_a_company_is_officially_incorporated,
395
+ "aad" => :name_not_to_be_confused_withentity_with_a_similar_name_that_should_not_be_confused_with,
396
+ "aae" => :lot,
397
+ "aaf" => :previous_occupant,
398
+ "aag" => :ground_ambulance_services,
399
+ "aah" => :air_ambulance_services,
400
+ "aai" => :water_ambulance_services,
401
+ "aaj" => :admitting_services,
402
+ "aak" => :primary_surgeon,
403
+ "aal" => :medical_nurse,
404
+ "aam" => :cardiac_rehabilitation_services,
405
+ "aan" => :skilled_nursing_services,
406
+ "aao" => :observation_room_services,
407
+ "aap" => :employee,
408
+ "aaq" => :anesthesiology_services,
409
+ "aas" => :prior_base_jurisdiction,
410
+ "aat" => :incorporation_jurisdiction,
411
+ "aau" => :marker_owneridentifies_railroad_company_or_municipal_owner_of_a_property_marker,
412
+ "aav" => :reclamation_center,
413
+ "aaw" => :party_providing_financing,
414
+ "ab" => :additional_pickup_address,
415
+ "ab1" => :private_school_system,
416
+ "ab2" => :state_operated_school_system,
417
+ "ab3" => :vocational_regions_school_system,
418
+ "ab4" => :chartered_school_district,
419
+ "ab5" => :schooling_of_indian_children_school_system,
420
+ "ab6" => :unorganized_territories_school_system,
421
+ "ab7" => :state_administered_district,
422
+ "ab8" => :towns_in_unions_school_system,
423
+ "ab9" => :agent_towns_school_system,
424
+ "abb" => :master_property,
425
+ "abc" => :project_property,
426
+ "abd" => :unit_property,
427
+ "abe" => :additional_address,
428
+ "abf" => :society_of_property_information_compilers_and_analysts,
429
+ "abg" => :organization,
430
+ "abh" => :joint_owner_annuitant,
431
+ "abi" => :joint_annuitant_owner,
432
+ "abj" => :joint_owner_annuitant_payor,
433
+ "abk" => :joint_owner_joint_annuitant,
434
+ "abl" => :joint_owner_joint_annuitant_payor,
435
+ "abm" => :joint_owner_payor,
436
+ "abn" => :acronym,
437
+ "abo" => :new_address,
438
+ "abp" => :chairperson,
439
+ "abq" => :decision_maker,
440
+ "abr" => :former_president,
441
+ "abs" => :founder,
442
+ "abt" => :imported_from_location,
443
+ "abu" => :literally_translated_namea_literal_translation_from_another_language_when_no_official_english_name_exists,
444
+ "abv" => :original_location,
445
+ "abw" => :president,
446
+ "abx" => :rating_organization,
447
+ "ac" => :air_cargo_company,
448
+ "ac1" => :regional_center,
449
+ "ac2" => :local_education_agency_lea,
450
+ "ac3" => :state_education_agency,
451
+ "acb" => :initial_medical_provider,
452
+ "acc" => :concurrent_employer,
453
+ "ace" => :routing_point,
454
+ "acf" => :border_crossing,
455
+ "acg" => :bobtail_service_point,
456
+ "ach" => :auditor,
457
+ "aci" => :insured_location,
458
+ "acj" => :referral_providername_of_the_second_level_referral,
459
+ "ack" => :affiliate,
460
+ "acl" => :allied_health_professional,
461
+ "acm" => :emergency_provider,
462
+ "acn" => :federal_government,
463
+ "aco" => :fellowship_institution,
464
+ "acp" => :government__combined_controlorganization_with_combined_control_including_government_and_voluntary_ie_charitable_organization,
465
+ "acq" => :government__federal__military,
466
+ "acr" => :government__federal__otherfederal_government_organization_that_is_neither_military_nor_veteran,
467
+ "acs" => :government__federal__veterans,
468
+ "act" => :government__local,
469
+ "acu" => :group_affiliation,
470
+ "acv" => :information_source,
471
+ "acw" => :internship_entity,
472
+ "acx" => :medical_school,
473
+ "acy" => :national_organization,
474
+ "acz" => :nonprofit_health_care_provider_see_us_internal_revenue_code_chapter_1_subchapter_f_part_1_section_501c,
475
+ "ad" => :party_to_be_advised_written_orders,
476
+ "ada" => :not_for_profit_health_care_provider_see_us_internal_revenue_code_chapter_1_subchapter_f_part_1_section_501c,
477
+ "adb" => :for_profit_health_care_provider,
478
+ "adc" => :office_manager,
479
+ "add" => :oncall_provider,
480
+ "ade" => :physician_hospital_organization_pho,
481
+ "adf" => :point_of_service_pos,
482
+ "adh" => :residency_institution,
483
+ "adj" => :shared_service,
484
+ "adk" => :supporting_personnel,
485
+ "adl" => :training_institution,
486
+ "adm" => :public_school,
487
+ "adn" => :private_school,
488
+ "ado" => :public_prek_education,
489
+ "adp" => :private_prek_education,
490
+ "adq" => :prek_day_care,
491
+ "adr" => :charter_school,
492
+ "ads" => :home_school,
493
+ "adt" => :public_alternative_school,
494
+ "adu" => :neglecteddelinquent_institution,
495
+ "adv" => :postsecondary_institution,
496
+ "adw" => :food_service_operator,
497
+ "adx" => :future_address,
498
+ "ady" => :former_registered_address,
499
+ "adz" => :top_parent_company_in_same_country,
500
+ "ae" => :additional_delivery_address,
501
+ "aea" => :second_level_parent_company,
502
+ "aeb" => :airport_authority,
503
+ "aec" => :council_of_governments,
504
+ "aed" => :foundation,
505
+ "aee" => :port_authority,
506
+ "aef" => :planning_commission,
507
+ "aeg" => :car_rental_location,
508
+ "aei" => :lodging_facility,
509
+ "aej" => :party_to_receive_transportation_credit,
510
+ "aek" => :party_to_receive_packing_crating_and_handling_credit,
511
+ "ael" => :primary_international_telecom_carrier,
512
+ "af" => :authorized_accepting_official,
513
+ "ag" => :agentagency,
514
+ "ah" => :advertiser,
515
+ "ahm" => :agency_hazardous_material_information_system_location,
516
+ "ai" => :airline,
517
+ "aj" => :alleged_debtor,
518
+ "ak" => :party_to_whom_acknowledgment_should_be_sent,
519
+ "al" => :allotment_customer,
520
+ "ala" => :alternative_addressee,
521
+ "alo" => :activity_location,
522
+ "am" => :assistant_us_trustee,
523
+ "an" => :authorized_from,
524
+ "ao" => :account_of,
525
+ "ap" => :account_of_origin_party,
526
+ "apr" => :activity_provider,
527
+ "aq" => :account_of_destination_party,
528
+ "ar" => :armed_services_location_designation,
529
+ "as" => :postsecondary_education_sender,
530
+ "at" => :postsecondary_education_recipient,
531
+ "ata" => :alternate_tax_authority,
532
+ "au" => :party_authorizing_disposition,
533
+ "auo" => :authorizing_official,
534
+ "av" => :authorized_to,
535
+ "aw" => :accountant,
536
+ "ax" => :plaintiff,
537
+ "ay" => :clearinghouse,
538
+ "az" => :previous_name,
539
+ "b1" => :construction_firma_business_entity_whose_main_activity_is_construction,
540
+ "b2" => :other_unlisted_type_of_organizational_entityan_organization_eg_a_business_the_description_of_which_cannot_be_accomplished_using_the_existing_code_list_and_for_which_the_trading_partners_have_not_mutually_agreed_to_a_definition_for_it,
541
+ "b3" => :previous_name_of_firma_name_by_which_a_business_entity_was_previously_known,
542
+ "b4" => :parent_companythe_organizational_entity_which_by_virtue_of_organization_ownership_andor_management_exercises_control_over_a_subordinate_but_separate_business_entity,
543
+ "b5" => :affiliated_companyan_organizational_entity_that_shares_a_business_affiliation_with_another_business_entity,
544
+ "b6" => :registering_parent_partyan_organizational_entity_which_is_also_a_parent_company_that_is_registering_for_a_program_eg_to_become_a_registered_bidder,
545
+ "b7" => :registering_nonparent_partyan_organizational_entity_which_is_not_a_parent_company_that_is_registering_for_a_program_eg_to_become_a_registered_bidder,
546
+ "b8" => :regular_dealera_business_entity_that_regularly_deals_in_a_commodity_or_service_being_quoted_on_use_of_the_term_regular_dealer_is_consistent_with_its_application_to_the_walshhealey_act,
547
+ "b9" => :large_businessa_business_entity_that_cannot_be_classified_as_a_small_business_for_purposes_of_receiving_preferential_treatment_in_the_award_of_contracts,
548
+ "ba" => :batterythat_portion_of_the_surface_of_land_other_than_a_wellsite_or_roadway_required_for_access_to_and_to_accommodate_all_equipment_including_above_ground_pressure_maintenance_facilities_that_are_necessary_to_measure_separate_or_store_prior_to_shipping_to_market_or_disposal_or_necessary_to_produce_the_fluids_minerals_and_water_or_any_of_them_from_wells,
549
+ "bal" => :bailiff,
550
+ "bb" => :business_partner,
551
+ "bc" => :broadcaster,
552
+ "bd" => :billto_party_for_diversion_chargescharges_associated_with_a_diversion_or_reconsignment_of_a_railcar,
553
+ "be" => :beneficiary,
554
+ "bf" => :billed_from,
555
+ "bg" => :buying_group,
556
+ "bh" => :interim_trustee,
557
+ "bi" => :trustees_attorney,
558
+ "bj" => :cocounsel,
559
+ "bk" => :bank,
560
+ "bkr" => :bookkeeper,
561
+ "bl" => :party_to_receive_bill_of_lading,
562
+ "bld" => :building,
563
+ "blt" => :structure,
564
+ "bm" => :brakeman,
565
+ "bn" => :beneficial_owner,
566
+ "bo" => :broker_or_sales_office,
567
+ "bow" => :body_of_water,
568
+ "bp" => :special_counsel,
569
+ "bq" => :attorney_for_defendant_private,
570
+ "br" => :broker,
571
+ "brn" => :brand_name,
572
+ "bs" => :bill_and_ship_to,
573
+ "bt" => :billtoparty,
574
+ "bu" => :place_of_business,
575
+ "bus" => :business,
576
+ "bv" => :billing_serviceentity_that_provides_statement_of_charges_for_medical_services_or_supplies,
577
+ "bw" => :borrower,
578
+ "bx" => :attorney_for_plaintiff,
579
+ "by" => :buying_party_purchaser,
580
+ "bz" => :business_associate,
581
+ "c0" => :assistant_conductor,
582
+ "c1" => :in_care_of_party_no_1,
583
+ "c2" => :in_care_of_party_no_2,
584
+ "c3" => :circuit_location_identifieridentifies_the_address_information_as_that_which_is_assigned_to_a_circuit_location_address,
585
+ "c4" => :contract_administration_officeestablished_at_either_a_contractor_facility_or_in_a_geographic_area_and_responsible_for_administering_on_behalf_of_the_buying_activities_that_assigned_contracts_for_administration_and_all_contracts_awarded_to_either_the_specific_contractor_or_all_contractors_in_the_geographic_area,
586
+ "c4a" => :secondary_contract_administration_office,
587
+ "c5" => :party_submitting_quotea_business_entity_submitting_a_quote_this_entity_may_be_the_party_who_ultimately_performs_if_an_order_is_received_or_the_entity_may_be_submitting_the_quote_on_behalf_of_another_entity_who_will_perform_if_an_order_is_received,
588
+ "c6" => :municipality,
589
+ "c7" => :county,
590
+ "c8" => :city,
591
+ "c9" => :contract_holder,
592
+ "ca" => :carrier,
593
+ "cb" => :customs_broker,
594
+ "cc" => :claimant,
595
+ "cd" => :consignee_to_receive_mail_and_small_parcels,
596
+ "ce" => :consignee_to_receive_large_parcels_and_freight,
597
+ "cf" => :subsidiarydivision,
598
+ "cg" => :carnet_issuer,
599
+ "ch" => :chassis_provider,
600
+ "cha" => :changed_address,
601
+ "ci" => :consignor,
602
+ "cj" => :automated_data_processing_adp_pointa_qualifier_for_an_address_of_a_location_providing_adp_support_to_an_entity_that_is_the_intended_recipient_of_a_transmission_but_that_entity_does_not_have_its_own_organic_capability_to_receive_the_transmission_directly_relying_instead_on_the_support_provided_by_the_adp_point,
603
+ "ck" => :pharmacist,
604
+ "cl" => :container_location,
605
+ "clt" => :building_clusterdefines_a_grouping_of_buildings_that_are_attached_by_common_or_party_walls,
606
+ "cm" => :customs,
607
+ "cmw" => :company_merged_with,
608
+ "cn" => :consignee,
609
+ "cnp" => :confirming_party,
610
+ "cnr" => :confirmation_requester,
611
+ "cns" => :confirmation_service_identifier_code,
612
+ "co" => :ocean_tariff_conference,
613
+ "cod" => :codriver,
614
+ "col" => :collateral_assignee,
615
+ "com" => :complainant,
616
+ "cor" => :corrected_name,
617
+ "cp" => :party_to_receive_cert_of_compliance,
618
+ "cq" => :corporate_office,
619
+ "cr" => :container_return_company,
620
+ "crw" => :crew_member,
621
+ "cs" => :consolidator,
622
+ "ct" => :country_of_origin,
623
+ "cu" => :coating_or_paint_supplier,
624
+ "cv" => :converter,
625
+ "cw" => :accounting_stationa_qualifier_for_an_address_of_a_location_providing_automated_data_processing_adp_support_to_an_entity_that_is_the_intended_recipient_of_a_transmission_but_that_entity_does_not_have_its_own_organic_capability_to_receive_the_transmission_directly_relying_instead_on_the_support_provided_by_the_adp_point,
626
+ "cx" => :claim_administrator,
627
+ "cy" => :country,
628
+ "cz" => :admitting_surgeon,
629
+ "d1" => :driver,
630
+ "d2" => :commercial_insurer,
631
+ "d3" => :defendant,
632
+ "d4" => :debtor,
633
+ "d5" => :debtorinpossession,
634
+ "d6" => :consolidated_debtor,
635
+ "d7" => :petitioning_creditor,
636
+ "d8" => :dispatcher,
637
+ "d9" => :creditors_attorney,
638
+ "da" => :delivery_address,
639
+ "dam" => :damaged_by,
640
+ "db" => :distributor_branch,
641
+ "dc" => :destination_carrier,
642
+ "dcc" => :chief_deputy_clerk_of_court,
643
+ "dd" => :assistant_surgeon,
644
+ "de" => :depositor,
645
+ "df" => :material_disposition_authorization_location,
646
+ "dg" => :design_engineeringidentifies_the_design_engineer_or_office_of_the_design_engineer_who_will_receive_design_specifications,
647
+ "dh" => :doing_business_as,
648
+ "di" => :different_premise_address_dpaprovides_the_different_premise_address_when_the_associated_equipment_or_services_or_both_are_located_at_an_address_different_from_the_main_address,
649
+ "dir" => :distribution_recipient,
650
+ "dj" => :consulting_physician,
651
+ "dk" => :ordering_physician,
652
+ "dl" => :dealer,
653
+ "dm" => :destination_mail_facility,
654
+ "dn" => :referring_provider,
655
+ "do" => :dependent_name,
656
+ "dp" => :party_to_provide_discount,
657
+ "dq" => :supervising_physician,
658
+ "dr" => :destination_drayman,
659
+ "ds" => :distributor,
660
+ "dt" => :destination_terminal,
661
+ "du" => :resale_dealer,
662
+ "dv" => :division,
663
+ "dw" => :downstream_party,
664
+ "dx" => :distilleran_entity_that_manufactures_an_alcoholic_product_using_bureau_of_alcohol_tobacco_and_firearms_approved_methods_and_formulas,
665
+ "dy" => :defaultforeclosure_specialistthe_federal_home_loan_mortgage_corporation_fhlmc_representative_that_processes_the_default_monitoring_and_foreclosure_reports,
666
+ "dz" => :delivery_zonearea_where_the_product_was_delivered,
667
+ "e0" => :assistant_engineer,
668
+ "e1" => :person_or_other_entity_legally_responsible_for_a_child,
669
+ "e2" => :person_or_other_entity_with_whom_a_child_resides,
670
+ "e3" => :person_or_other_entity_legally_responsible_for_and_with_whom_a_child_resides,
671
+ "e4" => :other_person_or_entity_associated_with_student,
672
+ "e5" => :examiner,
673
+ "e6" => :engineering,
674
+ "e7" => :previous_employer,
675
+ "e8" => :inquiring_party,
676
+ "e9" => :participating_laboratory,
677
+ "ea" => :study_submitter,
678
+ "eaa" => :assistant,
679
+ "eab" => :campaign_manager,
680
+ "ead" => :client,
681
+ "eae" => :commissioner,
682
+ "eaf" => :committee,
683
+ "eag" => :contestant,
684
+ "eah" => :contributor,
685
+ "eai" => :deputy_chairperson,
686
+ "eaj" => :deputy_treasurer,
687
+ "eak" => :donor,
688
+ "eal" => :endorser,
689
+ "eam" => :guarantor,
690
+ "ean" => :headquarters,
691
+ "eao" => :independent_contractor,
692
+ "eap" => :leader,
693
+ "eaq" => :party_performing_liaison,
694
+ "ear" => :lobbying_firm,
695
+ "eas" => :lobbyist,
696
+ "eat" => :media_contact,
697
+ "eau" => :office_holder,
698
+ "eav" => :party_authorized_to_administer_oaths,
699
+ "eaw" => :party_to_benefit,
700
+ "eax" => :party_holding_interest,
701
+ "eay" => :party_making_pledge,
702
+ "eaz" => :party_returning_contribution,
703
+ "eb" => :eligible_party_to_the_contract,
704
+ "eba" => :party_returning_transfer,
705
+ "ebb" => :lobbied_party,
706
+ "ebc" => :political_action_committee,
707
+ "ebd" => :political_party,
708
+ "ebe" => :proponent,
709
+ "ebf" => :public_official,
710
+ "ebg" => :receiving_committee,
711
+ "ebh" => :affiliated_committee,
712
+ "ebi" => :source,
713
+ "ebj" => :sponsor,
714
+ "ebk" => :sponsored_committee,
715
+ "ebl" => :designee,
716
+ "ebm" => :temporary_residence,
717
+ "ebn" => :treasurer,
718
+ "ebo" => :vicechairperson,
719
+ "ebp" => :slate_mailer_organization,
720
+ "ebq" => :lodging_location,
721
+ "ebr" => :independent_expenditure_committee,
722
+ "ebs" => :major_donor,
723
+ "ec" => :exchanger,
724
+ "ed" => :excluded_party,
725
+ "ee" => :location_of_goods_for_customs_examination_before_clearance,
726
+ "ef" => :electronic_filerthe_firm_organization_or_individual_who_converts_the_paper_return_into_a_machinereadable_form,
727
+ "eg" => :engineer,
728
+ "eh" => :exhibitor,
729
+ "ei" => :executor_of_estate,
730
+ "ej" => :principal_person,
731
+ "ek" => :animal_source,
732
+ "el" => :established_location,
733
+ "em" => :party_to_receive_electronic_memo_of_invoice,
734
+ "en" => :end_user,
735
+ "enr" => :enroller,
736
+ "eo" => :limited_liability_partnership,
737
+ "ep" => :eligible_party_to_the_rate,
738
+ "eq" => :old_debtor,
739
+ "er" => :new_debtor,
740
+ "et" => :plan_administrator,
741
+ "eu" => :old_secured_party,
742
+ "ev" => :selling_agent,
743
+ "ew" => :servicing_broker,
744
+ "ex" => :exporter,
745
+ "exs" => :exspouse,
746
+ "ey" => :employee_name,
747
+ "ez" => :new_secured_party,
748
+ "f1" => :company__owned_oil_field,
749
+ "f2" => :energy_information_administration_department_of_energy__owned_oil_field,
750
+ "f3" => :specialized_mobile_radio_service_smrs_licensee,
751
+ "f4" => :former_residence,
752
+ "f5" => :radio_control_station_location,
753
+ "f6" => :small_control_station_location,
754
+ "f7" => :small_base_station_location,
755
+ "f8" => :antenna_site,
756
+ "f9" => :area_of_operation,
757
+ "fa" => :facility,
758
+ "fb" => :first_break_terminal,
759
+ "fc" => :customer_identification_file_cif_customer_identifier,
760
+ "fd" => :physical_address,
761
+ "fe" => :mail_address,
762
+ "ff" => :foreign_language_synonym,
763
+ "fg" => :trade_name_synonym,
764
+ "fgt" => :foreign_government,
765
+ "fh" => :party_to_receive_limitations_of_heavy_elements_report,
766
+ "fi" => :name_variation_synonym,
767
+ "fj" => :first_contact,
768
+ "fl" => :primary_control_point_location,
769
+ "fm" => :fireman,
770
+ "fn" => :filer_name,
771
+ "fo" => :field_or_branch_officeremote_location_of_the_payer_responsible_for_administering_the_plan_of_benefits,
772
+ "fp" => :name_on_credit_card,
773
+ "fq" => :pier_name,
774
+ "fr" => :message_from,
775
+ "frl" => :foreign_registration_location,
776
+ "fs" => :final_scheduled_destinationcustoms_duties_excise_taxes_and_use_of_bonded_fuels_are_dependent_on_whether_an_aircraft_flight_originated_or_is_destined_for_an_international_location_these_codes_would_be_used_to_note_those_occurrences,
777
+ "fsi" => :party_to_receive_sensitive_foreign_disclosure_information,
778
+ "fsr" => :financial_statement_recipient,
779
+ "ft" => :new_assignee,
780
+ "fu" => :old_assignee,
781
+ "fv" => :vessel_name,
782
+ "fw" => :forwarder,
783
+ "fx" => :closed_door_pharmacy,
784
+ "fy" => :veterinary_hospital,
785
+ "fz" => :childrens_day_care_center,
786
+ "g0" => :dependent_insured,
787
+ "g1" => :bankruptcy_trustee,
788
+ "g2" => :annuitant,
789
+ "g3" => :clinic,
790
+ "g5" => :contingent_beneficiary,
791
+ "g6" => :entity_holding_the_information,
792
+ "g7" => :entity_providing_the_service,
793
+ "g8" => :entity_responsible_for_followup,
794
+ "g9" => :family_member,
795
+ "ga" => :gas_plant,
796
+ "gb" => :other_insured,
797
+ "gba" => :alternate_government_business_contact,
798
+ "gbo" => :gate_booth,
799
+ "gbp" => :primary_government_business_contact,
800
+ "gc" => :previous_credit_grantor,
801
+ "gd" => :guardian,
802
+ "ge" => :general_agency,
803
+ "gf" => :inspection_company,
804
+ "gg" => :intermediarya_company_which_acts_as_a_reinsurance_broker_for_a_direct_writing_company_or_a_reinsurer,
805
+ "gh" => :motor_vehicle_report_provider_companya_company_which_performs_the_services_of_obtaining_motor_vehicle_records,
806
+ "gi" => :paramedic,
807
+ "gir" => :gift_recipient,
808
+ "gj" => :paramedical_companya_company_which_performs_physical_examination_services,
809
+ "gk" => :previous_insured,
810
+ "gl" => :previous_residencethe_residence_where_the_entity_lived_before_moving_to_their_present_address,
811
+ "gm" => :spouse_insured,
812
+ "gn" => :garnishee,
813
+ "go" => :primary_beneficiary,
814
+ "gp" => :gateway_provideridentifies_a_gateway_access_provider,
815
+ "gq" => :proposed_insured,
816
+ "gr" => :reinsurer,
817
+ "gs" => :garaged_location,
818
+ "gt" => :credit_grantor,
819
+ "gu" => :guarantee_agency,
820
+ "gv" => :gas_transaction_ending_point,
821
+ "gw" => :group,
822
+ "gx" => :retrocessionairea_company_which_acts_as_a_reinsurer_for_a_reinsurance_company,
823
+ "gy" => :treatment_facility,
824
+ "gz" => :grandparent,
825
+ "h1" => :representative,
826
+ "h2" => :suboffice,
827
+ "h3" => :district,
828
+ "h5" => :paying_agent,
829
+ "h6" => :school_district,
830
+ "h7" => :group_affiliate,
831
+ "h9" => :designer,
832
+ "ha" => :owner,
833
+ "hb" => :historically_black_college_or_universityan_educational_institution_of_higher_learning_with_a_historical_black_student_population,
834
+ "hc" => :joint_annuitant,
835
+ "hd" => :contingent_annuitant,
836
+ "he" => :contingent_owner,
837
+ "hf" => :healthcare_professional_shortage_area_hpsa_facilityfacility_recognized_by_the_health_care_financing_administration_as_existing_in_an_area_of_the_country_lacking_in_health_care_establishments_and_services,
838
+ "hg" => :broker_opinion_or_analysis_requester,
839
+ "hh" => :home_health_agency,
840
+ "hi" => :listing_company,
841
+ "hj" => :automated_underwriting_system,
842
+ "hk" => :subscriber,
843
+ "hl" => :document_custodian,
844
+ "hm" => :competitive_property_listing,
845
+ "hmi" => :material_safety_data_sheet_msds_recipient,
846
+ "hn" => :competing_property,
847
+ "ho" => :comparable_property_listing,
848
+ "hom" => :home_officethe_main_administrative_location,
849
+ "hon" => :honorary_society,
850
+ "hp" => :closed_sale,
851
+ "hq" => :source_party_of_information,
852
+ "hr" => :subject_of_inquiry,
853
+ "hs" => :high_school,
854
+ "ht" => :state_chartered_facility,
855
+ "hu" => :subsidiary,
856
+ "hv" => :tax_addressaddress_used_for_tax_purposes,
857
+ "hw" => :designated_hazardous_waste_facility,
858
+ "hx" => :transporter_of_hazardous_waste,
859
+ "hy" => :charity,
860
+ "hz" => :hazardous_waste_generator,
861
+ "i1" => :interested_party,
862
+ "i3" => :independent_physicians_association_ipa,
863
+ "i4" => :intellectual_property_ownerthis_is_the_party_who_claims_to_be_the_owner_of_any_intellectual_property_contained_here,
864
+ "i9" => :interviewer,
865
+ "ia" => :installed_at,
866
+ "iaa" => :business_entity,
867
+ "iac" => :principal_executive_office,
868
+ "iad" => :foreign_office,
869
+ "iae" => :member,
870
+ "iaf" => :executive_committee_member,
871
+ "iag" => :director,
872
+ "iah" => :clerk,
873
+ "iai" => :party_with_knowledge_of_affairs_of_the_company,
874
+ "iak" => :party_to_receive_statement_of_fees_due,
875
+ "ial" => :company_in_which_interest_held,
876
+ "iam" => :company_which_holds_interest,
877
+ "ian" => :notary,
878
+ "iao" => :manager,
879
+ "iap" => :alien_affiliate,
880
+ "iaq" => :incorporation_state_principal_office,
881
+ "iar" => :incorporation_state_place_of_business,
882
+ "ias" => :outofstate_principal_office,
883
+ "iat" => :party_executing_and_verifying,
884
+ "iau" => :felon,
885
+ "iav" => :other_related_party,
886
+ "iaw" => :recordkeeping_address,
887
+ "iay" => :initial_subscriber,
888
+ "iaz" => :original_jurisdiction,
889
+ "ib" => :industry_bureau,
890
+ "ic" => :intermediate_consignee,
891
+ "icp" => :inventory_control_point,
892
+ "id" => :issuer_of_debit_or_credit_memoparty_that_will_issue_any_credit_or_debit_memo,
893
+ "ie" => :other_individual_disability_carrier,
894
+ "if" => :international_freight_forwarder,
895
+ "ig" => :insolvent_insurer,
896
+ "ii" => :issuer_of_invoice,
897
+ "ij" => :injection_point,
898
+ "ik" => :intermediate_carrier,
899
+ "il" => :insured_or_subscriber,
900
+ "im" => :importer,
901
+ "imm" => :integrated_material_manager,
902
+ "in" => :insurer,
903
+ "int" => :interviewee,
904
+ "inv" => :investment_advisor,
905
+ "io" => :inspector,
906
+ "ip" => :independent_adjuster,
907
+ "iq" => :inpatient_pharmacy,
908
+ "ir" => :self_insured,
909
+ "is" => :party_to_receive_certified_inspection_report,
910
+ "it" => :installation_on_site,
911
+ "iu" => :issuer,
912
+ "iv" => :renter,
913
+ "j1" => :associate_general_agent,
914
+ "j2" => :authorized_entity,
915
+ "j3" => :brokers_assistant,
916
+ "j4" => :custodian,
917
+ "j5" => :irrevocable_beneficiary,
918
+ "j6" => :power_of_attorney,
919
+ "j7" => :trust_officer,
920
+ "j8" => :broker_dealer,
921
+ "j9" => :community_agent,
922
+ "ja" => :dairy_department,
923
+ "jb" => :delicatessen_department,
924
+ "jc" => :dry_grocery_department,
925
+ "jd" => :judge,
926
+ "je" => :frozen_department,
927
+ "jf" => :general_merchandise_department,
928
+ "jg" => :health__beauty_department,
929
+ "jh" => :alcohol_beverage_department,
930
+ "ji" => :meat_department,
931
+ "jj" => :produce_department,
932
+ "jk" => :bakery_department,
933
+ "jl" => :video_department,
934
+ "jm" => :candy_and_confections_department,
935
+ "jn" => :cigarettes_and_tobacco_department,
936
+ "jo" => :instore_bakery_department,
937
+ "jp" => :floral_department,
938
+ "jq" => :pharmacy_department,
939
+ "jr" => :bidder,
940
+ "js" => :joint_debtor_attorney,
941
+ "jt" => :joint_debtor,
942
+ "ju" => :jurisdiction,
943
+ "jv" => :joint_owner,
944
+ "jw" => :joint_venture,
945
+ "jx" => :closing_agent,
946
+ "jy" => :financial_planner,
947
+ "jz" => :managing_general_agent,
948
+ "k1" => :contractor_cognizant_security_office,
949
+ "k2" => :subcontractor_cognizant_security_office,
950
+ "k3" => :place_of_performance_cognizant_security_office,
951
+ "k4" => :party_authorizing_release_of_security_information,
952
+ "k5" => :party_to_receive_contract_security_classification_specification,
953
+ "k6" => :policy_writing_agent,
954
+ "k7" => :radio_station,
955
+ "k8" => :filing_location,
956
+ "k9" => :previous_distributor,
957
+ "ka" => :item_managerthe_address_of_the_person_responsible_for_the_management_of_an_item_of_supply,
958
+ "kb" => :customer_for_whom_same_or_similar_work_was_performedthe_party_for_whom_the_proposing_entity_performed_the_same_or_similar_work,
959
+ "kc" => :party_that_received_disclosure_statementthe_office_to_which_the_cost_accounting_standards_board_casb_disclosure_statement_was_sent,
960
+ "kd" => :proposerthe_party_submitting_the_proposal_to_the_proposal_soliciting_entity,
961
+ "ke" => :contact_office,
962
+ "kf" => :audit_officethe_office_performing_the_audit,
963
+ "kg" => :project_managerthe_address_of_the_person_responsible_for_the_management_of_a_designated_project,
964
+ "kh" => :organization_having_source_controlorganization_controlling_the_design_and_manufacturing_process_of_a_product,
965
+ "ki" => :united_states_overseas_security_administration_office,
966
+ "kj" => :qualifying_officer,
967
+ "kk" => :registering_partythe_party_requesting_registration_into_a_system,
968
+ "kl" => :clerk_of_court,
969
+ "km" => :coordinator,
970
+ "kn" => :former_address,
971
+ "ko" => :plant_clearance_officer,
972
+ "kp" => :name_under_which_filed,
973
+ "kq" => :licensee,
974
+ "kr" => :prekindergarten_to_grade_12_recipient,
975
+ "ks" => :prekindergarten_to_grade_12_sender,
976
+ "kt" => :court,
977
+ "ku" => :receiver_site,
978
+ "kv" => :disbursing_officer,
979
+ "kw" => :bid_opening_location,
980
+ "kx" => :free_on_board_point,
981
+ "ky" => :technical_office,
982
+ "kz" => :acceptance_location,
983
+ "l1" => :inspection_locationplace_where_the_item_was_viewed_or_inspected,
984
+ "l2" => :location_of_principal_assets,
985
+ "l3" => :loan_correspondent,
986
+ "l5" => :contact,
987
+ "l8" => :head_office,
988
+ "l9" => :information_provider,
989
+ "la" => :attorney,
990
+ "lb" => :last_break_terminal,
991
+ "lc" => :location_of_spot_for_storagename_of_the_location_at_which_a_trailer_is_spotted_for_storage_ie_the_party_to_receive_equipment,
992
+ "lcn" => :gas_nomination_location,
993
+ "ld" => :liability_holder,
994
+ "le" => :lessor,
995
+ "lf" => :limited_partner,
996
+ "lg" => :location_of_goods,
997
+ "lgs" => :local_government_sponsor,
998
+ "lh" => :pipeline,
999
+ "li" => :independent_laboutside_laboratory_which_provides_test_results_for_entity_providing_medical_services,
1000
+ "lj" => :limited_liability_company,
1001
+ "lk" => :juvenile_owner,
1002
+ "ll" => :location_of_load_exchange_exportname_of_the_location_at_which_load_trailer_is_exchanged_with_another_motor_carrier_for_export,
1003
+ "lm" => :lending_institution,
1004
+ "ln" => :lender,
1005
+ "lo" => :loan_originator,
1006
+ "lp" => :loading_party,
1007
+ "lq" => :law_firm,
1008
+ "lr" => :legal_representative,
1009
+ "ls" => :lessee,
1010
+ "lt" => :longterm_disability_carrier,
1011
+ "lu" => :master_agent,
1012
+ "lv" => :loan_servicer,
1013
+ "lw" => :customer,
1014
+ "ly" => :labeler,
1015
+ "lym" => :amended_name,
1016
+ "lyn" => :stockholder,
1017
+ "lyo" => :managing_agent,
1018
+ "lyp" => :organizer,
1019
+ "lz" => :local_chain,
1020
+ "m1" => :source_meter_location,
1021
+ "m2" => :receipt_location,
1022
+ "m3" => :upstream_meter_location,
1023
+ "m4" => :downstream_meter_location,
1024
+ "m5" => :migrant_health_clinic,
1025
+ "m6" => :landlord,
1026
+ "m7" => :foreclosing_lender,
1027
+ "m8" => :educational_institution,
1028
+ "m9" => :manufacturing,
1029
+ "ma" => :party_for_whom_item_is_ultimately_intended,
1030
+ "mb" => :company_interviewer_works_for,
1031
+ "mc" => :motor_carrier,
1032
+ "md" => :veterans_administration_loan_guaranty_authority,
1033
+ "me" => :veterans_administration_loan_authorized_supplier,
1034
+ "mf" => :manufacturer_of_goods,
1035
+ "mg" => :government_loan_agency_sponsor_or_agent,
1036
+ "mh" => :mortgage_insurer,
1037
+ "mi" => :planning_schedulematerial_release_issuer,
1038
+ "mj" => :financial_institution,
1039
+ "mk" => :loan_holder_for_real_estate_asset,
1040
+ "ml" => :consumer_credit_account_company,
1041
+ "mm" => :mortgage_companya_business_entity_that_is_responsible_for_originating_and_servicing_mortgage_loans,
1042
+ "mn" => :authorized_marketer,
1043
+ "mo" => :release_drayman,
1044
+ "mp" => :manufacturing_plant,
1045
+ "mq" => :delivery_location,
1046
+ "mr" => :medical_insurance_carrier,
1047
+ "ms" => :bureau_of_land_management_minerals_management_service_property_unit,
1048
+ "msc" => :mammography_screening_center,
1049
+ "mt" => :material,
1050
+ "mtr" => :meter_location,
1051
+ "mu" => :meeting_location,
1052
+ "mv" => :mainline,
1053
+ "mw" => :marine_surveyor,
1054
+ "mx" => :juvenile_witness,
1055
+ "my" => :master_general_agent,
1056
+ "mz" => :minister,
1057
+ "n1" => :notify_party_no_1,
1058
+ "n2" => :notify_party_no_2,
1059
+ "n3" => :ineligible_party,
1060
+ "n4" => :price_administration,
1061
+ "n5" => :party_who_signed_the_delivery_receipt,
1062
+ "n6" => :nonemployment_income_source,
1063
+ "n7" => :previous_neighbor,
1064
+ "n8" => :relative,
1065
+ "n9" => :neighborhood,
1066
+ "nb" => :neighbor,
1067
+ "nc" => :crosstown_switchlocal_rail_movement,
1068
+ "nct" => :name_changed_to,
1069
+ "nd" => :next_destination,
1070
+ "ne" => :newspaper,
1071
+ "nf" => :owner_annuitant,
1072
+ "ng" => :administrator,
1073
+ "nh" => :association,
1074
+ "ni" => :noninsured,
1075
+ "nj" => :trust_or_estate,
1076
+ "nk" => :national_chain,
1077
+ "nl" => :nonrailroad_entity,
1078
+ "nm" => :physician__specialists,
1079
+ "nn" => :network_nameidentifies_the_name_of_the_telecommunications_network_eg_envoy,
1080
+ "np" => :notify_party_for_shippers_order,
1081
+ "npc" => :notary_public,
1082
+ "nq" => :pipeline_segment_boundary,
1083
+ "nr" => :gas_transaction_starting_point,
1084
+ "ns" => :nontemporary_storage_facility,
1085
+ "nt" => :magistrate_judge,
1086
+ "nu" => :formerly_known_as,
1087
+ "nv" => :formerly_doing_business_as,
1088
+ "nw" => :maiden_name,
1089
+ "nx" => :primary_owner,
1090
+ "ny" => :birth_name,
1091
+ "nz" => :primary_physician,
1092
+ "o1" => :originating_bank,
1093
+ "o2" => :originating_company,
1094
+ "o3" => :receiving_company,
1095
+ "o4" => :factor,
1096
+ "o5" => :merchant_bankerbanker_who_invests_in_commercial_enterprises_only,
1097
+ "o6" => :non_registered_business_namename_used_by_a_business_which_is_not_registered_with_governmental_authorities,
1098
+ "o7" => :registered_business_namename_used_by_a_business_which_is_registered_with_governmental_authorities,
1099
+ "o8" => :registrar,
1100
+ "oa" => :electronic_return_originatora_firm_organization_or_individual_who_collects_a_prepared_tax_return_for_the_purpose_of_having_an_electronic_return_produced_and_who_obtains_the_taxpayers_signature_for_electronic_filing,
1101
+ "ob" => :ordered_by,
1102
+ "oc" => :origin_carrier,
1103
+ "od" => :doctor_of_optometry,
1104
+ "oe" => :booking_office,
1105
+ "of" => :offset_operatorthe_company_operating_a_property_adjacent_to_the_property_being_reported,
1106
+ "og" => :coowner,
1107
+ "oh" => :other_departments,
1108
+ "oi" => :outside_inspection_agency,
1109
+ "ol" => :officer,
1110
+ "om" => :origin_mail_facility,
1111
+ "on" => :product_position_holder,
1112
+ "oo" => :order_of_shippers_orders__transportation,
1113
+ "op" => :operator_of_property_or_unit,
1114
+ "or" => :origin_drayman,
1115
+ "ori" => :original_name,
1116
+ "os" => :override_institution_this_is_not_the_institution_sending_the_record_but_another_institution_the_student_previously_attended_or_is_currently_attending,
1117
+ "osh" => :offsite_handler,
1118
+ "ot" => :origin_terminal,
1119
+ "ou" => :outside_processora_resource_extraneous_to_primary_material_provider_that_performs_additional_material_processing_prior_to_delivery_of_the_material_to_the_primary_providers_customer,
1120
+ "ouc" => :other_unlisted_type_of_corporation,
1121
+ "ov" => :owner_of_vessel,
1122
+ "ow" => :owner_of_property_or_unit,
1123
+ "ox" => :oxygen_therapy_facilitybuilding_in_which_oxygen_treatment_is_provided_for_medical_disorder,
1124
+ "oy" => :owner_of_vehicle,
1125
+ "oz" => :outside_testing_agencya_company_or_organization_which_performs_testing_for_a_manufacturer_but_is_not_owned_by_that_manufacturer,
1126
+ "p0" => :patient_facilityfacility_where_patient_resides,
1127
+ "p1" => :preparerthe_firm_organization_or_individual_who_determines_the_tax_liability_from_information_supplied_by_the_taxpayer,
1128
+ "p2" => :primary_insured_or_subscribera_primary_insured_or_subscriber_is_a_person_who_elects_the_benefits_and_is_affiliated_with_the_employer_or_the_insurer,
1129
+ "p3" => :primary_care_providerphysician_that_is_selected_by_the_insured_to_provide_medical_care,
1130
+ "p4" => :prior_insurance_carrier,
1131
+ "p5" => :plan_sponsor,
1132
+ "p6" => :third_party_reviewing_preferred_provider_organization_ppo,
1133
+ "p7" => :third_party_repricing_preferred_provider_organization_ppo,
1134
+ "p8" => :personnel_office,
1135
+ "p9" => :primary_interexchange_carrier_picidentifies_the_carrier_who_will_handle_the_interexchange_calls,
1136
+ "pa" => :party_to_receive_inspection_report,
1137
+ "pb" => :paying_bank,
1138
+ "pc" => :party_to_receive_cert_of_conformance_caa,
1139
+ "pd" => :purchasers_department_buyer,
1140
+ "pe" => :payee,
1141
+ "pf" => :party_to_receive_freight_bill,
1142
+ "pg" => :prime_contractor,
1143
+ "ph" => :printer,
1144
+ "pi" => :publisher,
1145
+ "pic" => :primary_inventory_control_activity,
1146
+ "pj" => :party_to_receive_correspondence,
1147
+ "pk" => :party_to_receive_copy,
1148
+ "pl" => :party_to_receive_purchase_order,
1149
+ "plc" => :law_enforcement_agency,
1150
+ "plr" => :payer_of_last_resort,
1151
+ "pm" => :party_to_receive_paper_memo_of_invoice,
1152
+ "pmc" => :prior_mortgage_company,
1153
+ "pmf" => :party_manufactured_for,
1154
+ "pmg" => :program_manager,
1155
+ "pn" => :party_to_receive_shipping_notice,
1156
+ "po" => :party_to_receive_invoice_for_goods_or_services,
1157
+ "pp" => :property,
1158
+ "ppc" => :past_performance_contact,
1159
+ "pps" => :person_for_whose_benefit_property_was_seized,
1160
+ "pq" => :party_to_receive_invoice_for_lease_payments,
1161
+ "pr" => :payer,
1162
+ "pre" => :previous_owner,
1163
+ "pro" => :prospect_service,
1164
+ "prp" => :primary_payer,
1165
+ "ps" => :previous_station,
1166
+ "pt" => :party_to_receive_test_report,
1167
+ "pu" => :party_at_pickup_location,
1168
+ "pur" => :purchased_company,
1169
+ "pv" => :party_performing_certification,
1170
+ "pw" => :pickup_address,
1171
+ "px" => :party_performing_count,
1172
+ "py" => :party_to_file_personal_property_tax,
1173
+ "pz" => :party_to_receive_equipmentname_a_party_to_receive_the_transfer_of_equipment,
1174
+ "q1" => :conductor_pilot,
1175
+ "q2" => :engineer_pilot,
1176
+ "q3" => :retail_account,
1177
+ "q4" => :cooperative_buying_group,
1178
+ "q5" => :advertising_group,
1179
+ "q6" => :interpreter,
1180
+ "q7" => :partner,
1181
+ "q8" => :base_period_employer,
1182
+ "q9" => :last_employer,
1183
+ "qa" => :pharmacyestablishment_responsible_for_preparing_and_dispensing_drugs_and_medicines,
1184
+ "qb" => :purchase_service_providerentity_from_which_medical_supplies_may_be_bought,
1185
+ "qc" => :patientindividual_receiving_medical_care,
1186
+ "qd" => :responsible_partyperson_responsible_for_the_affairs_of_the_person_having_services_rendered,
1187
+ "qe" => :policyholder,
1188
+ "qf" => :passenger,
1189
+ "qg" => :pedestrian,
1190
+ "qh" => :physician,
1191
+ "qi" => :party_in_possession,
1192
+ "qj" => :most_recent_employer_chargeable,
1193
+ "qk" => :managed_care,
1194
+ "ql" => :chiropractor,
1195
+ "qm" => :dialysis_centers,
1196
+ "qn" => :dentist,
1197
+ "qo" => :doctor_of_osteopathy,
1198
+ "qp" => :principal_borrower,
1199
+ "qq" => :quality_control,
1200
+ "qr" => :buyers_quality_review_board,
1201
+ "qs" => :podiatrist,
1202
+ "qt" => :psychiatrist,
1203
+ "qu" => :veterinarian,
1204
+ "qv" => :group_practice,
1205
+ "qw" => :government,
1206
+ "qx" => :home_health_corporationorganization_primarily_engaged_in_providing_skilled_nursing_or_other_therapeutic_services,
1207
+ "qy" => :medical_doctoran_individual_trained_and_licensed_to_practice_as_a_medical_doctor_md,
1208
+ "qz" => :coborrower,
1209
+ "r0" => :royalty_owner,
1210
+ "r1" => :party_to_receive_scale_ticketparty_receiving_document_containing_weight_information_from_scale,
1211
+ "r2" => :reporting_officer,
1212
+ "r3" => :next_scheduled_destination,
1213
+ "r4" => :regulatory_state_district,
1214
+ "r5" => :regulatory_state_entity,
1215
+ "r6" => :requester,
1216
+ "r7" => :consumer_referral_contact,
1217
+ "r8" => :credit_reporting_agency,
1218
+ "r9" => :requested_lender,
1219
+ "ra" => :alternate_return_address,
1220
+ "rb" => :receiving_bank,
1221
+ "rc" => :receiving_location,
1222
+ "rcr" => :recovery_room,
1223
+ "rd" => :destination_intermodal_ramp,
1224
+ "rec" => :receiver_manager,
1225
+ "rf" => :refinery,
1226
+ "rg" => :responsible_installation_origin,
1227
+ "rga" => :responsible_government_agency,
1228
+ "rh" => :responsible_installation_destination,
1229
+ "ri" => :remit_to,
1230
+ "rj" => :residence_or_domicile,
1231
+ "rk" => :refinery_operator,
1232
+ "rl" => :reporting_location,
1233
+ "rm" => :party_that_remits_payment,
1234
+ "rn" => :repair_or_refurbish_locationlocation_to_ship_goods_for_repair_or_refurbishment,
1235
+ "ro" => :original_intermodal_ramp,
1236
+ "rp" => :receiving_point_for_customer_samples,
1237
+ "rq" => :resale_customer,
1238
+ "rr" => :railroad,
1239
+ "rr2" => :class_ii_railroad,
1240
+ "rr3" => :class_iii_railroad,
1241
+ "rs" => :receiving_facility_scheduler,
1242
+ "rt" => :returned_tolocation_to_which_goods_have_or_will_be_returned,
1243
+ "ru" => :receiving_sublocationsometimes_in_aircraft_fueling_operations_additional_fueling_charges_may_apply_due_to_an_unusual_fueling_location_within_the_airport_boundaries_this_code_would_be_used_in_those_instances_to_note_the_location_and_reason_for_the_special_charge,
1244
+ "rv" => :reservoir,
1245
+ "rw" => :rural_health_clinic,
1246
+ "rx" => :responsible_exhibitor,
1247
+ "ry" => :specified_repository,
1248
+ "rz" => :receipt_zonearea_where_the_product_was_received,
1249
+ "s0" => :sole_proprietor,
1250
+ "s1" => :parent,
1251
+ "s2" => :student,
1252
+ "s3" => :custodial_parent,
1253
+ "s4" => :skilled_nursing_facility,
1254
+ "s5" => :secured_party,
1255
+ "s6" => :agency_granting_security_clearance,
1256
+ "s7" => :secured_party_company,
1257
+ "s8" => :secured_party_individual,
1258
+ "s9" => :sibling,
1259
+ "sa" => :salvage_carrier,
1260
+ "sb" => :storage_area,
1261
+ "sc" => :store_class,
1262
+ "sd" => :sold_to_and_ship_to,
1263
+ "se" => :selling_party,
1264
+ "sep" => :secondary_payer,
1265
+ "sf" => :ship_from,
1266
+ "sg" => :store_group,
1267
+ "sh" => :shipper,
1268
+ "si" => :shipping_schedule_issuer,
1269
+ "sic" => :secondary_inventory_control_activity,
1270
+ "sip" => :shipinplace_location,
1271
+ "sj" => :service_provideridentifies_name_and_address_information_as_pertaining_to_a_service_provider_for_which_billing_is_being_rendered,
1272
+ "sk" => :secondary_location_address_slaidentifies_a_physical_address_location_in_which_a_telecommunications_circuit_terminates_this_address_is_in_addition_to_a_main_service_address,
1273
+ "sl" => :origin_sublocationthe_origin_of_product_for_accounting_and_operations_purposes,
1274
+ "sm" => :party_to_receive_shipping_manifest,
1275
+ "sn" => :store,
1276
+ "snp" => :us_customs__border_protection_second_notify_party,
1277
+ "so" => :sold_to_if_different_from_bill_to,
1278
+ "sp" => :party_filling_shippers_order,
1279
+ "sq" => :service_bureaua_business_entity_that_is_responsible_for_providing_computer_resources_to_other_firms_that_do_not_have_computer_resources_of_their_own,
1280
+ "sr" => :samples_to_be_returned_to,
1281
+ "ss" => :steamship_company,
1282
+ "st" => :ship_to,
1283
+ "stc" => :switching_and_terminal_carrier,
1284
+ "su" => :suppliermanufacturer,
1285
+ "sus" => :supply_source,
1286
+ "sv" => :service_performance_sitewhen_services_are_contracted_for_this_describes_the_organization_for_whom_or_location_address_at_which_those_services_will_be_performed,
1287
+ "sw" => :sealing_company,
1288
+ "sx" => :schoolbased_service_provider,
1289
+ "sy" => :secondary_taxpayertaxpayer_who_is_filing_jointly_with_the_primary_taxpayer,
1290
+ "sz" => :supervisor,
1291
+ "t1" => :operator_of_the_transfer_point,
1292
+ "t2" => :operator_of_the_source_transfer_point,
1293
+ "t3" => :terminal_locationa_geographic_location_where_a_motor_or_rail_or_air_or_water_terminal_is_located,
1294
+ "t4" => :transfer_pointa_geographic_location_where_a_shipment_is_transferred_or_diverted_to_a_new_destination,
1295
+ "t6" => :terminal_operator,
1296
+ "t8" => :previous_title_company,
1297
+ "t9" => :prior_title_evidence_holder,
1298
+ "ta" => :title_insurance_services_provider,
1299
+ "tb" => :tooling,
1300
+ "tc" => :tool_source,
1301
+ "td" => :tooling_design,
1302
+ "te" => :theatre,
1303
+ "tec" => :tax_exempt_corporation,
1304
+ "tf" => :tank_farm,
1305
+ "tg" => :tooling_fabrication,
1306
+ "th" => :theater_circuit,
1307
+ "ti" => :tariff_issuer,
1308
+ "tj" => :cosigner,
1309
+ "tk" => :test_sponsororganization_sponsoring_a_test_to_be_run_for_certification,
1310
+ "tl" => :testing_laboratory,
1311
+ "tm" => :transmittera_firm_organization_or_individual_who_transmits_returns_electronically_to_a_taxing_authority,
1312
+ "tn" => :tradename,
1313
+ "to" => :message_to,
1314
+ "tow" => :towing_agency,
1315
+ "tp" => :primary_taxpayertaxpayer_whose_social_security_number_or_employer_identification_number_is_used_as_the_primary_identification_number_for_the_filing,
1316
+ "tpm" => :third_party_marketer,
1317
+ "tq" => :third_party_reviewing_organization_tpo,
1318
+ "tr" => :terminal,
1319
+ "ts" => :party_to_receive_certified_test_results,
1320
+ "tsd" => :treatment_storage_or_disposal_facility,
1321
+ "tse" => :consignee_courier_transfer_station,
1322
+ "tsr" => :consignor_courier_transfer_station,
1323
+ "tt" => :transfer_to,
1324
+ "ttp" => :tertiary_payer,
1325
+ "tu" => :third_party_repricing_organization_tpo,
1326
+ "tv" => :third_party_administrator_tpa,
1327
+ "tw" => :transit_authority,
1328
+ "tx" => :tax_authority,
1329
+ "ty" => :trustee,
1330
+ "tz" => :significant_other,
1331
+ "u1" => :gas_transaction_point_1,
1332
+ "u2" => :gas_transaction_point_2,
1333
+ "u3" => :servicing_agent,
1334
+ "u4" => :team,
1335
+ "u5" => :underwriter,
1336
+ "u6" => :title_underwriter,
1337
+ "u7" => :psychologist,
1338
+ "u8" => :reference,
1339
+ "u9" => :nonregistered_investment_advisor,
1340
+ "ua" => :place_of_bottling,
1341
+ "ub" => :place_of_distilling,
1342
+ "uc" => :ultimate_consignee,
1343
+ "ud" => :region,
1344
+ "ue" => :testing_service,
1345
+ "uf" => :health_miscellaneoushealth_related_entities_that_are_not_otherwise_classified,
1346
+ "ug" => :nursing_home_chain,
1347
+ "uh" => :nursing_home,
1348
+ "ui" => :registered_investment_advisor,
1349
+ "uj" => :sales_assistant,
1350
+ "uk" => :system,
1351
+ "ul" => :special_account,
1352
+ "um" => :current_employer_primary,
1353
+ "un" => :union,
1354
+ "uo" => :current_employer_secondary,
1355
+ "up" => :unloading_party,
1356
+ "uq" => :subsequent_owner,
1357
+ "ur" => :surgeon,
1358
+ "us" => :upstream_party,
1359
+ "ut" => :us_trustee,
1360
+ "uu" => :annuitant_payor,
1361
+ "uw" => :unassigned_agent,
1362
+ "ux" => :base_jurisdiction,
1363
+ "uy" => :vehicle,
1364
+ "uz" => :signer,
1365
+ "v1" => :surety,
1366
+ "v2" => :grantor,
1367
+ "v3" => :well_pad_construction_contractor,
1368
+ "v4" => :oil_and_gas_regulatory_agency,
1369
+ "v5" => :surface_discharge_agency,
1370
+ "v6" => :well_casing_depth_authority,
1371
+ "v8" => :market_timer,
1372
+ "v9" => :owner_annuitant_payor,
1373
+ "va" => :second_contact,
1374
+ "vb" => :candidate,
1375
+ "vc" => :vehicle_custodian,
1376
+ "vd" => :multiple_listing_service,
1377
+ "ve" => :board_of_realtors,
1378
+ "ver" => :party_performing_verification,
1379
+ "vf" => :selling_office,
1380
+ "vg" => :listing_agent,
1381
+ "vh" => :showing_agent,
1382
+ "vi" => :contact_person,
1383
+ "vic" => :victim,
1384
+ "vj" => :owner_joint_annuitant_payor,
1385
+ "vk" => :property_or_building_manager,
1386
+ "vl" => :builder_name,
1387
+ "vm" => :occupant,
1388
+ "vn" => :vendor,
1389
+ "vo" => :elementary_school,
1390
+ "vp" => :party_with_power_to_vote_securities,
1391
+ "vq" => :middle_school,
1392
+ "vr" => :junior_high_school,
1393
+ "vs" => :vehicle_salvage_assignment,
1394
+ "vt" => :listing_office,
1395
+ "vu" => :second_contact_organization,
1396
+ "vv" => :owner_payor,
1397
+ "vw" => :winner,
1398
+ "vx" => :production_manager,
1399
+ "vy" => :organization_completing_configuration_change,
1400
+ "w1" => :work_team,
1401
+ "w2" => :supplier_work_team,
1402
+ "w3" => :third_party_investment_advisor,
1403
+ "w4" => :trust,
1404
+ "w8" => :interline_service_commitment_customer,
1405
+ "w9" => :sampling_location,
1406
+ "wa" => :writing_agent,
1407
+ "wb" => :appraiser_name,
1408
+ "wc" => :comparable_property,
1409
+ "wd" => :storage_facility_at_destinationa_storage_facility_located_in_the_geographic_vicinity_of_a_destination_location,
1410
+ "we" => :subject_property,
1411
+ "wf" => :tank_farm_owner,
1412
+ "wg" => :wage_earner,
1413
+ "wh" => :warehouse,
1414
+ "wi" => :witness,
1415
+ "wj" => :supervisory_appraiser_name,
1416
+ "wl" => :wholesaler,
1417
+ "wn" => :company_assigned_well,
1418
+ "wo" => :storage_facility_at_origina_storage_facility_located_in_the_geographic_vicinity_of_an_origin_location,
1419
+ "wp" => :witness_for_plaintiff,
1420
+ "wr" => :withdrawal_point,
1421
+ "ws" => :water_system,
1422
+ "wt" => :witness_for_defendant,
1423
+ "wu" => :primary_support_organization,
1424
+ "wv" => :preliminary_maintenance_period_designating_organization,
1425
+ "ww" => :preliminary_maintenance_organization,
1426
+ "wx" => :preliminary_referred_to_organization,
1427
+ "wy" => :final_maintenance_period_designating_organization,
1428
+ "wz" => :final_maintenance_organization,
1429
+ "x1" => :mail_toan_address_to_which_a_specified_item_is_to_be_mailed,
1430
+ "x2" => :party_to_perform_packaginga_party_responsible_for_packaging_an_item_after_it_has_been_produced,
1431
+ "x3" => :utilization_management_organization,
1432
+ "x4" => :spouse,
1433
+ "x5" => :durable_medical_equipment_supplier,
1434
+ "x6" => :international_organization,
1435
+ "x7" => :inventor,
1436
+ "x8" => :hispanic_service_institute,
1437
+ "xa" => :creditor,
1438
+ "xc" => :debtors_attorney,
1439
+ "xd" => :aliasother_names_used,
1440
+ "xe" => :claim_recipient,
1441
+ "xf" => :auctioneer,
1442
+ "xg" => :event_location,
1443
+ "xh" => :final_referred_to_organization,
1444
+ "xi" => :original_claimant,
1445
+ "xj" => :actual_referred_by_organization,
1446
+ "xk" => :actual_referred_to_organization,
1447
+ "xl" => :borrowers_employer,
1448
+ "xm" => :maintenance_organization_used_for_estimate,
1449
+ "xn" => :planningmaintenance_organization,
1450
+ "xo" => :preliminary_customer_organization,
1451
+ "xp" => :party_to_receive_solicitation,
1452
+ "xq" => :canadian_customs_broker,
1453
+ "xr" => :mexican_customs_broker,
1454
+ "xs" => :s_corporationan,
1455
+ "xt" => :final_customer_organization,
1456
+ "xu" => :united_states_customs_broker,
1457
+ "xv" => :cross_claimant,
1458
+ "xw" => :counter_claimant,
1459
+ "xx" => :business_area,
1460
+ "xy" => :tribal_government,
1461
+ "xz" => :american_indianowned_business,
1462
+ "y2" => :managed_care_organization,
1463
+ "ya" => :affiantperson_bringing_forward_a_court_case,
1464
+ "yb" => :arbitrator,
1465
+ "yc" => :bail_payor,
1466
+ "yd" => :district_justice,
1467
+ "ye" => :third_party,
1468
+ "yf" => :witness_for_prosecution,
1469
+ "yg" => :expert_witness,
1470
+ "yh" => :crime_victim,
1471
+ "yi" => :juvenile_victim,
1472
+ "yj" => :juvenile_defendant,
1473
+ "yk" => :bondsman,
1474
+ "yl" => :court_appointed_attorney,
1475
+ "ym" => :complainants_attorney,
1476
+ "yn" => :district_attorney,
1477
+ "yo" => :attorney_for_defendant_public,
1478
+ "yp" => :pro_bono_attorneycounsel_provided_without_charge,
1479
+ "yq" => :pro_se_counselproceeding_without_counsel,
1480
+ "yr" => :party_to_appear_before,
1481
+ "ys" => :appellant,
1482
+ "yt" => :appellee,
1483
+ "yu" => :arresting_officer,
1484
+ "yv" => :hostile_witness,
1485
+ "yw" => :discharge_point,
1486
+ "yx" => :flood_certifier,
1487
+ "yy" => :flood_determination_provider,
1488
+ "yz" => :electronic_registration_utility,
1489
+ "z1" => :party_to_receive_statusan_organization_that_will_receive_information_about_a_transaction,
1490
+ "z2" => :unserviceable_material_consigneean_organization_that_will_receive_unserviceable_material,
1491
+ "z3" => :potential_source_of_supplyan_organization_that_might_stock_the_needed_material,
1492
+ "z4" => :owning_inventory_control_pointan_inventory_control_organization_responsible_for_management_of_a_particular_item,
1493
+ "z5" => :management_control_activitydepartment_of_defense_organization_that_oversees_contractor_requests_for_governmentowned_material_to_be_supplied_for_use_in_support_of_government_contracts,
1494
+ "z6" => :transferring_partyan_organization_that_is_sending_material,
1495
+ "z7" => :markfor_party,
1496
+ "z8" => :last_known_source_of_supplythe_last_organization_known_to_hold_a_transaction_for_the_needed_material,
1497
+ "z9" => :banker,
1498
+ "za" => :corrected_addressthe_organization_to_which_information_should_have_been_sent,
1499
+ "zb" => :party_to_receive_creditthe_organization_to_which_credit_will_be_granted,
1500
+ "zc" => :rent_payor,
1501
+ "zd" => :party_to_receive_reportsthe_organization_designated_to_receive_reports,
1502
+ "ze" => :end_item_manufacturermanufacturer_of_the_end_item_associated_with_the_required_material,
1503
+ "zf" => :break_bulk_point,
1504
+ "zg" => :present_address,
1505
+ "zh" => :child,
1506
+ "zj" => :branch,
1507
+ "zk" => :reporter,
1508
+ "zl" => :party_passing_the_transactionthe_party_forwarding_a_transaction,
1509
+ "zm" => :lease_location,
1510
+ "zn" => :losing_inventory_managerthe_organization_losing_management_responsibility_for_an_individual_item_of_supply,
1511
+ "zo" => :minimum_royalty_payor,
1512
+ "zp" => :gaining_inventory_managerthe_organization_assuming_management_responsibility_for_an_individual_item_of_supply,
1513
+ "zq" => :screening_point,
1514
+ "zr" => :validating_partyparty_to_affirm_the_validity_of_a_requirement,
1515
+ "zs" => :monitoring_partyparty_to_oversee_and_track_the_status_of_a_requirement,
1516
+ "zt" => :participating_area,
1517
+ "zu" => :formation,
1518
+ "zv" => :allowable_recipient,
1519
+ "zw" => :field,
1520
+ "zx" => :attorney_of_record,
1521
+ "zy" => :amicus_curiaefriend_of_the_court,
1522
+ "zz" => :mutually_defined,
1523
+ },
1524
+ 2 => {
1525
+ "1" => :person,
1526
+ "2" => :nonperson_entity,
1527
+ "3" => :unknown,
1528
+ "4" => :corporation,
1529
+ "5" => :trust,
1530
+ "6" => :organization,
1531
+ "7" => :limited_liability_corporation,
1532
+ "8" => :partnership,
1533
+ "9" => :s_corporation,
1534
+ "a" => :federally_chartered_financial_institution,
1535
+ "b" => :state_chartered_financial_institution,
1536
+ "c" => :custodial,
1537
+ "d" => :nonprofit_organization,
1538
+ "e" => :sole_proprietorship,
1539
+ "g" => :government,
1540
+ "l" => :limited_partnership,
1541
+ },
1542
+ 8 => {
1543
+ "0" => :petroleum_industry_exchange_petroex_number,
1544
+ "1" => :duns_number_dun__bradstreet,
1545
+ "2" => :standard_carrier_alpha_code_scac,
1546
+ "3" => :federal_maritime_commission_ocean_fmc,
1547
+ "4" => :international_air_transport_association_iata,
1548
+ "6" => :plant_code,
1549
+ "7" => :loading_dock,
1550
+ "9" => :duns4_duns_number_with_four_character_suffix,
1551
+ "10" => :department_of_defense_activity_address_code_dodaac,
1552
+ "11" => :drug_enforcement_administration_dea,
1553
+ "12" => :telephone_number_phone,
1554
+ "13" => :federal_reserve_routing_code_frrc,
1555
+ "15" => :standard_address_number_san,
1556
+ "16" => :zip_code,
1557
+ "17" => :automated_broker_interface_abi_routing_code,
1558
+ "19" => :fips55_named_populated_places,
1559
+ "20" => :standard_point_location_code_splc,
1560
+ "21" => :health_industry_number_hin,
1561
+ "22" => :council_of_petroleum_accounting_societies_code_copas,
1562
+ "23" => :journal_of_commerce_joc,
1563
+ "24" => :employers_identification_number,
1564
+ "25" => :carriers_customer_code,
1565
+ "26" => :petroleum_accountants_society_of_canada_company_code,
1566
+ "27" => :government_bill_of_lading_office_code_gbloc,
1567
+ "28" => :american_paper_institute,
1568
+ "29" => :grid_location_and_facility_code,
1569
+ "30" => :american_petroleum_institute_location_code,
1570
+ "31" => :bank_identification_codenumber_assigned_to_a_bank_within_a_country_nonusa_also_called_a_bank_sort_code,
1571
+ "32" => :assigned_by_property_operator,
1572
+ "33" => :commercial_and_government_entity_cage,
1573
+ "34" => :social_security_number,
1574
+ "35" => :electronic_mail_internal_system_address_code,
1575
+ "36" => :customs_house_broker_license_number,
1576
+ "37" => :united_nations_vendor_code,
1577
+ "38" => :country_code,
1578
+ "39" => :local_union_number,
1579
+ "40" => :electronic_mail_user_codeidentifies_the_electronic_mail_user_locally_defined_and_maintained_between_trading_partners,
1580
+ "41" => :telecommunications_carrier_identification_codeidentifies_the_interexchange_carrier_for_the_charges_being_billed,
1581
+ "42" => :telecommunications_pseudo_carrier_identification_codea_code_similar_to_the_standard_carrier_identification_code_which_is_used_to_identify_the_local_exchange_service_providers,
1582
+ "43" => :alternate_social_security_numberthe_social_security_number_attributed_to_the_secondary_taxpayer,
1583
+ "44" => :return_sequence_numbera_unique_16digit_number_that_is_assigned_by_the_transmitter_to_each_return_within_a_transmission,
1584
+ "45" => :declaration_control_numbera_unique_14digit_number_assigned_to_each_taxpayers_form_8453_individual_income_tax_declaration_for_electronic_filing_which_is_used_to_match_this_form_to_the_filed_return,
1585
+ "46" => :electronic_transmitter_identification_number_etina_unique_number_assigned_to_each_transmitter_and_software_developer,
1586
+ "47" => :tax_authority_identification,
1587
+ "48" => :electronic_filer_identification_number_efina_unique_number_assigned_to_each_firm_organization_or_individual_who_is_authorized_to_electronically_file_tax_returns,
1588
+ "49" => :state_identification_numbera_unique_number_that_a_state_taxing_authority_assigns_an_organization_firm_or_individual,
1589
+ "50" => :business_license_number,
1590
+ "51" => :fuel_inventory_adjustment_identification,
1591
+ "53" => :building,
1592
+ "54" => :warehouse,
1593
+ "55" => :post_office_box,
1594
+ "56" => :division,
1595
+ "57" => :department,
1596
+ "58" => :originating_company_number,
1597
+ "59" => :receiving_company_number,
1598
+ "61" => :holding_mortgagee_number,
1599
+ "62" => :servicing_mortgagee_number,
1600
+ "63" => :servicerholder_mortgagee_number,
1601
+ "64" => :one_call_agency,
1602
+ "71" => :integrated_postsecondary_education_data_system_ipeds_set_of_codes_maintained_by_the_us_department_of_educations_national_center_of_education_statistics_washington_dc,
1603
+ "72" => :the_college_boards_admission_testing_program_atp_administered_by_the_educational_testing_service_ets_4digit_list_of_postsecondary_educational_institutions,
1604
+ "73" => :federal_interagency_commission_on_education_fice_number_available_from_the_united_states_department_of_education_national_center_for_education_statistics,
1605
+ "74" => :american_college_testing_act_list_of_postsecondary_educational_institutions,
1606
+ "75" => :state_or_province_assigned_number,
1607
+ "76" => :local_school_district_or_jurisdiction_number,
1608
+ "77" => :national_center_for_education_statistics_nces_common_core_of_data_ccd_number_for_prek__12_institutions,
1609
+ "78" => :the_college_board_and_act_6_digit_code_list_of_secondary_educational_institutions,
1610
+ "81" => :classification_of_instructional_programs_cip_coding_structure_maintained_by_the_us_department_of_educations_national_center_for_education_statistics,
1611
+ "82" => :higher_education_general_information_survey_hegis_maintained_by_the_us_department_of_educations_national_center_for_education_statistics,
1612
+ "83" => :congressional_district,
1613
+ "90" => :california_ethnic_subgroups_code_table,
1614
+ "91" => :assigned_by_seller_or_sellers_agent,
1615
+ "92" => :assigned_by_buyer_or_buyers_agent,
1616
+ "93" => :code_assigned_by_the_organization_originating_the_transaction_set,
1617
+ "94" => :code_assigned_by_the_organization_that_is_the_ultimate_destination_of_the_transaction_set,
1618
+ "95" => :assigned_by_transporter,
1619
+ "96" => :assigned_by_pipeline_operator,
1620
+ "97" => :receivers_codederived_from_the_entries_in_the_military_assistance_program_address_directory_mapad_or_the_department_of_defense_active_address_code_dodaac_represents_the_location_of_the_ultimate_consignee,
1621
+ "98" => :purchasing_officepurchasing_office_location_and_address_identified_by_a_unique_number_found_in_appendix_n_of_the_defense_federal_acquisition_regulation_supplement,
1622
+ "99" => :office_of_workers_compensation_programs_owcp_agency_code,
1623
+ "a" => :us_customs_carrier_identification,
1624
+ "a1" => :approver_id,
1625
+ "a2" => :military_assistance_program_address_code_mapaccontained_in_the_military_assistance_program_address_directory_mapad_represents_the_location_of_an_entity,
1626
+ "a3" => :assigned_by_third_party,
1627
+ "a4" => :assigned_by_clearinghouse,
1628
+ "a5" => :committee_on_uniform_security_identification_procedures_cusip_number,
1629
+ "a6" => :financial_identification_numbering_system_fins_number,
1630
+ "a7" => :automated_commercial_environment_identification_code_aceid,
1631
+ "aa" => :postal_service_code,
1632
+ "ab" => :us_environmental_protection_agency_epa_identification_number,
1633
+ "ac" => :attachment_control_numbermeans_of_associating_electronic_claim_with_documentation_forwarded_by_other_means,
1634
+ "ad" => :blue_cross_blue_shield_association_plan_codeunique_3digit_number_assigned_to_independent_blue_cross_or_blue_shield_plans_by_blue_crossblue_shield_association,
1635
+ "ae" => :alberta_energy_resources_conservation_board,
1636
+ "af" => :rental_location_identifier,
1637
+ "ai" => :automotive_identifier_for_canada_customs,
1638
+ "al" => :anesthesia_license_numberlicense_number_issued_by_board_of_anesthesiologist,
1639
+ "ap" => :alberta_petroleum_marketing_commission,
1640
+ "bc" => :british_columbia_ministry_of_energy_mines_and_petroleum_resources,
1641
+ "bd" => :blue_cross_provider_numbernumber_assigned_by_blue_cross_plan_to_a_provider_of_services,
1642
+ "be" => :common_language_location_identification_cllithe_standard_address_location_code_for_a_specific_equipment_location_as_used_in_the_telephone_industry,
1643
+ "bg" => :badge_number,
1644
+ "bn" => :canada_customs__revenue_agency_ccra_business_number,
1645
+ "bp" => :benefit_plan,
1646
+ "bs" => :blue_shield_provider_numbernumber_assigned_by_blue_shield_plan_to_a_provider_of_services,
1647
+ "c" => :insureds_changed_unique_identification_number,
1648
+ "c1" => :insured_or_subscriber,
1649
+ "c2" => :health_maintenance_organization_hmo_provider_number,
1650
+ "c5" => :customer_identification_file,
1651
+ "ca" => :statistics_canada_canadian_college_student_information_system_course_codes,
1652
+ "cb" => :statistics_canada_canadian_college_student_information_system_institution_codes,
1653
+ "cc" => :statistics_canada_university_student_information_system_curriculum_codes,
1654
+ "cd" => :contract_division,
1655
+ "ce" => :bureau_of_the_census_filer_identification_code,
1656
+ "cf" => :canadian_financial_institution_routing_number,
1657
+ "ci" => :champus_civilian_health_and_medical_program_of_the_uniformed_services_identification_numbernumber_issued_by_champus_organization_to_a_unique_provider_of_services,
1658
+ "cl" => :corrected_loan_numbera_new_or_corrected_number_used_to_identify_a_loan,
1659
+ "cm" => :us_customs_service_uscs_manufacturer_identifier_midan_identification_code_for_a_manufacturer_which_is_constructed_according_to_us_customs_service_directive_350013,
1660
+ "cn" => :national_center_for_education_statistics_nces_course_classification_system_for_secondary_schools,
1661
+ "cp" => :canadian_petroleum_association,
1662
+ "cr" => :credit_repository,
1663
+ "cs" => :statistics_canada_university_student_information_system_university_codes,
1664
+ "ct" => :court_identification_code,
1665
+ "d" => :census_schedule_d,
1666
+ "dg" => :united_states_department_of_education_guarantor_identification_code,
1667
+ "dl" => :united_states_department_of_education_lender_identification_code,
1668
+ "dn" => :dentist_license_numberlicense_number_issued_by_american_dental_association,
1669
+ "do" => :door,
1670
+ "dp" => :data_processing_point,
1671
+ "dr" => :gas_industry_standards_board_gisb_data_reference_number_drn,
1672
+ "ds" => :united_states_department_of_education_school_identification_code,
1673
+ "e" => :hazard_insurance_policy_number,
1674
+ "ec" => :ari_electronic_commerce_location_id_code,
1675
+ "eh" => :theatre_numbernumber_assigned_by_the_exhibition_company,
1676
+ "ei" => :employee_identification_number,
1677
+ "el" => :elevator,
1678
+ "ep" => :us_environmental_protection_agency_epa,
1679
+ "eq" => :insurance_company_assigned_identification_number,
1680
+ "er" => :mortgagee_assigned_identification_number,
1681
+ "es" => :automated_export_system_aes_filer_identification_code,
1682
+ "et" => :educational_testing_service_list_of_international_postsecondary_institutions,
1683
+ "f" => :document_custodian_identification_number,
1684
+ "fa" => :facility_identification,
1685
+ "fb" => :field_codea_code_assigned_by_regulatory_agencies_to_a_surface_area,
1686
+ "fc" => :federal_court_jurisdiction_identifier,
1687
+ "fd" => :federal_court_divisional_office_number,
1688
+ "fe" => :facility_federal_identification_number,
1689
+ "fi" => :federal_taxpayers_identification_number,
1690
+ "fj" => :federal_jurisdiction,
1691
+ "fl" => :floor,
1692
+ "fn" => :us_environmental_protection_agency_epa_laboratory_certification_identification,
1693
+ "g" => :payee_identification_number,
1694
+ "ga" => :primary_agent_identification,
1695
+ "gc" => :gascode,
1696
+ "hc" => :centers_for_medicare_and_medicaid_services,
1697
+ "hn" => :health_insurance_claim_hic_numberunique_number_assigned_to_individual_for_submitting_claims_covered_by_medicare_benefits,
1698
+ "hs" => :house_canadian_grain_elevator,
1699
+ "i" => :secondary_marketing_investor_assigned_number,
1700
+ "id" => :ucc_edi_communications_id_comm_id,
1701
+ "ii" => :standard_unique_health_identifier_for_each_individual_in_the_united_states,
1702
+ "ip" => :us_customs_carrier_initiative_program_cip_participant_identification_number,
1703
+ "j" => :mortgage_electronic_registration_system_organization_identifier,
1704
+ "k" => :census_schedule_k,
1705
+ "l" => :investor_assigned_identification_number,
1706
+ "lc" => :agency_location_code_us_government,
1707
+ "ld" => :niso_z3953_language_codes,
1708
+ "le" => :iso_639_language_codes,
1709
+ "li" => :labeler_identification_code_lic,
1710
+ "ln" => :loan_numbera_unique_number_used_to_identify_a_loan_on_a_property_entity_or_location_at_a_financial_institution_or_mortgage_broker,
1711
+ "m" => :certificate_number,
1712
+ "m3" => :disbursing_stationdod_disbursing_offices_location_and_address_can_be_identified_by_a_unique_number_found_in_departmental_regulations,
1713
+ "m4" => :department_of_defense_routing_identifier_code_rican_integral_and_predetermined_participant_in_an_established_logistical_system_performing_general_logistic_control_distribution_and_storage_functions,
1714
+ "m5" => :jurisdiction_code,
1715
+ "m6" => :division_office_code,
1716
+ "ma" => :mail_stop,
1717
+ "mb" => :medical_information_bureau,
1718
+ "mc" => :medicaid_provider_numbernumber_assigned_to_a_health_care_provider_for_submitting_claims_covered_by_medicaid_benefits,
1719
+ "md" => :manitoba_department_of_mines_and_resources,
1720
+ "mi" => :member_identification_number,
1721
+ "mk" => :market,
1722
+ "ml" => :multiple_listing_service_vendor__multiple_listing_service_identification,
1723
+ "mn" => :mortgage_identification_number,
1724
+ "mo" => :major_organizational_entity,
1725
+ "mp" => :medicare_provider_numbernumber_assigned_to_a_health_care_provider_for_submitting_claims_covered_by_medicare_benefits,
1726
+ "mr" => :medicaid_recipient_identification_numberunique_identification_number_assigned_to_each_member_covered_under_a_subscribers_contract,
1727
+ "n" => :insureds_unique_identification_number,
1728
+ "na" => :national_association_of_realtors__multiple_listing_service_identification,
1729
+ "nd" => :mode_designator,
1730
+ "ni" => :national_association_of_insurance_commissioners_naic_identification,
1731
+ "no" => :national_criminal_information_center_originating_agency,
1732
+ "nr" => :non_resident_alien_registration_number,
1733
+ "oc" => :occupation_codeidentifies_individuals_occupation,
1734
+ "op" => :online_payment_and_collection,
1735
+ "pa" => :secondary_agent_identification,
1736
+ "pb" => :public_identification,
1737
+ "pc" => :provider_commercial_numberunique_number_assigned_to_the_provider_for_submitting_claims_to_commercial_insurance_carriers,
1738
+ "pi" => :payor_identification,
1739
+ "pp" => :pharmacy_processor_numberunique_number_assigned_to_each_pharmacy_for_submitting_claims,
1740
+ "pr" => :pier,
1741
+ "ra" => :regulatory_agency_numbera_number_assigned_to_a_regulatory_jurisdiction,
1742
+ "rb" => :real_estate_agent,
1743
+ "rc" => :real_estate_company,
1744
+ "rd" => :real_estate_broker_identification,
1745
+ "re" => :real_estate_license_number,
1746
+ "ri" => :office_of_regulatory_information_systems_oris_code,
1747
+ "rp" => :ramp,
1748
+ "rt" => :railroad_track,
1749
+ "s" => :title_insurance_policy_number,
1750
+ "sa" => :tertiary_agent_identification,
1751
+ "sb" => :social_insurance_number,
1752
+ "sd" => :saskatchewan_department_of_energy_mines_and_resources,
1753
+ "sf" => :suffix_codea_code_assigned_by_a_regulatory_agency_to_operator_numbers,
1754
+ "si" => :standard_industry_code_sic,
1755
+ "sj" => :state_or_province_jurisdiction,
1756
+ "sk" => :stateprovincial_lottery_license_number,
1757
+ "sl" => :state_license_numbernumber_uniquely_issued_to_provider_by_state_licensing_board,
1758
+ "sp" => :specialty_license_numberlicense_number_issued_to_identify_providers_unique_area_of_practice,
1759
+ "st" => :stateprovince_license_tag,
1760
+ "sv" => :service_provider_number,
1761
+ "sw" => :society_for_worldwide_interbank_financial_telecommunications_swift_address,
1762
+ "ta" => :taxpayer_id_number,
1763
+ "tc" => :internal_revenue_service_terminal_code,
1764
+ "tl" => :transport4_location_code,
1765
+ "ts" => :transport4_shipper_code,
1766
+ "tz" => :department_code,
1767
+ "uc" => :consumer_credit_identification_number,
1768
+ "ui" => :unit_identification_code,
1769
+ "ul" => :global_location_number_glna_globally_unique_13_digit_code_for_the_identification_of_a_legal_functional_or_physical_location_within_the_uniform_code_council_ucc_and_international_article_number_association_ean_numbering_system,
1770
+ "up" => :unique_physician_identification_number_upinnumber_assigned_to_the_provider_by_the_national_registry_for_medicare_identification_purposes,
1771
+ "ur" => :uniform_resource_locator_url,
1772
+ "us" => :unique_supplier_identification_number_usin,
1773
+ "ut" => :unit,
1774
+ "wr" => :wine_region_code,
1775
+ "ws" => :education_language_codes,
1776
+ "x1" => :national_center_for_education_statistics_unit_identification_number,
1777
+ "xv" => :centers_for_medicare_and_medicaid_services_planid,
1778
+ "xx" => :centers_for_medicare_and_medicaid_services_national_provider_identifier,
1779
+ "xy" => :district_assigned_number,
1780
+ "zc" => :contractor_establishment_code,
1781
+ "zn" => :zone,
1782
+ "zy" => :temporary_identification_numbera_temporary_id_to_be_used_until_a_permanent_id_is_processed,
1783
+ "zz" => :mutually_defined,
1784
+ },
1785
+ 10 => {
1786
+ "01" => :parent,
1787
+ "02" => :child,
1788
+ "03" => :corporation,
1789
+ "04" => :subsidiary,
1790
+ "05" => :whollyowned_subsidiary,
1791
+ "06" => :division,
1792
+ "07" => :company,
1793
+ "08" => :doing_business_as,
1794
+ "09" => :component,
1795
+ "10" => :partnership,
1796
+ "11" => :partner,
1797
+ "12" => :member,
1798
+ "13" => :association,
1799
+ "14" => :headquarters,
1800
+ "15" => :profit_center,
1801
+ "16" => :cost_center,
1802
+ "17" => :product_line,
1803
+ "18" => :union,
1804
+ "19" => :group,
1805
+ "20" => :department,
1806
+ "21" => :multinational_corporation,
1807
+ "22" => :sibling,
1808
+ "23" => :affiliate,
1809
+ "24" => :direct_affiliatea_direct_affiliate_is_a_member_that_is_affiliated_directly_to_the_parent_organization_and_is_not_affiliated_to_an_owner_owner_affiliate_or_group,
1810
+ "25" => :established_patient,
1811
+ "26" => :not_established_patient,
1812
+ "27" => :domestic_partner,
1813
+ "29" => :power_of_attorney_delegee,
1814
+ "30" => :significant_other,
1815
+ "31" => :ultimate_parent_company,
1816
+ "32" => :branch,
1817
+ "33" => :owned,
1818
+ "34" => :managed,
1819
+ "35" => :leased,
1820
+ "36" => :group_affiliate,
1821
+ "37" => :owner_affiliate,
1822
+ "38" => :owner,
1823
+ "39" => :related_for_us_customs_purposes,
1824
+ "40" => :related_for_us_bureau_of_the_census_purposes,
1825
+ "41" => :spouse,
1826
+ "42" => :adoptive_parent,
1827
+ "43" => :bank,
1828
+ "44" => :brother,
1829
+ "45" => :business_associate,
1830
+ "46" => :daughter,
1831
+ "47" => :dependent,
1832
+ "48" => :employee,
1833
+ "49" => :employer,
1834
+ "50" => :father,
1835
+ "51" => :fiance,
1836
+ "52" => :foreman,
1837
+ "53" => :foster_parent,
1838
+ "54" => :friend,
1839
+ "55" => :grand_child,
1840
+ "56" => :grand_parent,
1841
+ "57" => :guardian,
1842
+ "58" => :inforce_policyholder,
1843
+ "59" => :institution,
1844
+ "60" => :minister,
1845
+ "61" => :mother,
1846
+ "62" => :neighbor,
1847
+ "63" => :non_family,
1848
+ "64" => :none,
1849
+ "65" => :other,
1850
+ "66" => :other_family,
1851
+ "67" => :self,
1852
+ "68" => :sister,
1853
+ "69" => :step_child,
1854
+ "70" => :supervisor,
1855
+ "71" => :teacher,
1856
+ "72" => :unknown,
1857
+ "73" => :business_name,
1858
+ "74" => :counselor,
1859
+ "75" => :sanctioning_organization,
1860
+ "76" => :sponsoring_organization,
1861
+ "77" => :same_job_as_applicant,
1862
+ "78" => :stockholder,
1863
+ "79" => :attorney,
1864
+ "80" => :aunt,
1865
+ "81" => :brotherinlaw,
1866
+ "82" => :cousin,
1867
+ "83" => :daughterinlaw,
1868
+ "84" => :family,
1869
+ "85" => :fatherinlaw,
1870
+ "86" => :financial_interest,
1871
+ "87" => :marketing_unit,
1872
+ "88" => :motherinlaw,
1873
+ "89" => :nephew,
1874
+ "90" => :niece,
1875
+ "91" => :officer,
1876
+ "92" => :principal_customer,
1877
+ "93" => :principal_supplier,
1878
+ "94" => :sisterinlaw,
1879
+ "95" => :son,
1880
+ "96" => :soninlaw,
1881
+ "97" => :uncle,
1882
+ "98" => :descendant,
1883
+ "99" => :director,
1884
+ "aa" => :principal_stockholder,
1885
+ "ab" => :insured_entity,
1886
+ "ac" => :allied_professional,
1887
+ "ad" => :ancillary_referral,
1888
+ "ae" => :contact,
1889
+ "af" => :contract,
1890
+ "ag" => :health_care_facility_affiliation,
1891
+ "ah" => :independent_physicianpractice_association_ipa_affiliation,
1892
+ "ai" => :referral_lab_provider,
1893
+ "aj" => :managed_care_organization_affiliation,
1894
+ "ak" => :medical_director,
1895
+ "al" => :health_care_network_affiliation,
1896
+ "am" => :office_manager,
1897
+ "an" => :oncall_physician,
1898
+ "ao" => :physician_hospital_organization_pho_affiliation,
1899
+ "ap" => :provider_in_practice,
1900
+ "aq" => :referred_by_provider,
1901
+ "ar" => :referred_to_provider,
1902
+ "as" => :referral_xray_provider,
1903
+ "at" => :parentinlaw,
1904
+ "au" => :step_parent,
1905
+ "av" => :former_spouse,
1906
+ "aw" => :ward,
1907
+ "cp" => :custodial_parent,
1908
+ "op" => :obligated_parent,
1909
+ "pi" => :principal,
1910
+ }
1911
+ }
1912
+
1913
+ CODES[11] = CODES[1]
1914
+ end
1915
+ end
1916
+ end