zugferd_code_lists/zugferd_2_3_3/
unit.rs

1#![allow(non_camel_case_types)]
2
3#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
4pub enum Unit {
5    /// group
6    ///
7    /// rec20
8    Group,
9    /// outfit
10    ///
11    /// rec20
12    Outfit,
13    /// ration
14    ///
15    /// rec20
16    Ration,
17    /// shot
18    ///
19    /// rec20
20    Shot,
21    /// stick, military
22    ///
23    /// rec20
24    StickMilitary,
25    /// twenty foot container
26    ///
27    /// rec20
28    TwentyFootContainer,
29    /// forty foot container
30    ///
31    /// rec20
32    FortyFootContainer,
33    /// decilitre per gram
34    ///
35    /// rec20
36    DecilitrePerGram,
37    /// gram per cubic centimetre
38    ///
39    /// rec20
40    GramPerCubicCentimetre,
41    /// theoretical pound
42    ///
43    /// rec20
44    TheoreticalPound,
45    /// gram per square centimetre
46    ///
47    /// rec20
48    GramPerSquareCentimetre,
49    /// theoretical ton
50    ///
51    /// rec20
52    TheoreticalTon,
53    /// kilogram per square metre
54    ///
55    /// rec20
56    KilogramPerSquareMetre,
57    /// kilopascal square metre per gram
58    ///
59    /// rec20
60    KilopascalSquareMetrePerGram,
61    /// kilopascal per millimetre
62    ///
63    /// rec20
64    KilopascalPerMillimetre,
65    /// millilitre per square centimetre second
66    ///
67    /// rec20
68    MillilitrePerSquareCentimetreSecond,
69    /// ounce per square foot
70    ///
71    /// rec20
72    OuncePerSquareFoot,
73    /// ounce per square foot per 0,01inch
74    ///
75    /// rec20
76    OuncePerSquareFootPer001inch,
77    /// millilitre per second
78    ///
79    /// rec20
80    MillilitrePerSecond,
81    /// millilitre per minute
82    ///
83    /// rec20
84    MillilitrePerMinute,
85    /// sitas
86    ///
87    /// rec20
88    Sitas,
89    /// mesh
90    ///
91    /// rec20
92    Mesh,
93    /// net kilogram
94    ///
95    /// rec20
96    NetKilogram,
97    /// part per million
98    ///
99    /// rec20
100    PartPerMillion,
101    /// percent weight
102    ///
103    /// rec20
104    PercentWeight,
105    /// part per billion (US)
106    ///
107    /// rec20
108    PartPerBillionUs,
109    /// millipascal
110    ///
111    /// rec20
112    Millipascal,
113    /// milli-inch
114    ///
115    /// rec20
116    MilliInch,
117    /// pound per square inch absolute
118    ///
119    /// rec20
120    PoundPerSquareInchAbsolute,
121    /// henry
122    ///
123    /// rec20
124    Henry,
125    /// foot pound-force
126    ///
127    /// rec20
128    FootPoundForce,
129    /// pound per cubic foot
130    ///
131    /// rec20
132    PoundPerCubicFoot,
133    /// poise
134    ///
135    /// rec20
136    Poise,
137    /// stokes
138    ///
139    /// rec20
140    Stokes,
141    /// fixed rate
142    ///
143    /// rec20
144    FixedRate,
145    /// radian per second
146    ///
147    /// rec20
148    RadianPerSecond,
149    /// radian per second squared
150    ///
151    /// rec20
152    RadianPerSecondSquared,
153    /// roentgen
154    ///
155    /// rec20
156    Roentgen,
157    /// volt AC
158    ///
159    /// rec20
160    VoltAc,
161    /// volt DC
162    ///
163    /// rec20
164    VoltDc,
165    /// British thermal unit (international table) per hour
166    ///
167    /// rec20
168    BritishThermalUnitInternationalTablePerHour,
169    /// cubic centimetre per second
170    ///
171    /// rec20
172    CubicCentimetrePerSecond,
173    /// cubic foot per hour
174    ///
175    /// rec20
176    CubicFootPerHour,
177    /// cubic foot per minute
178    ///
179    /// rec20
180    CubicFootPerMinute,
181    /// centimetre per second
182    ///
183    /// rec20
184    CentimetrePerSecond,
185    /// decibel
186    ///
187    /// rec20
188    Decibel,
189    /// kilobyte
190    ///
191    /// rec20
192    Kilobyte,
193    /// kilobecquerel
194    ///
195    /// rec20
196    Kilobecquerel,
197    /// kilocurie
198    ///
199    /// rec20
200    Kilocurie,
201    /// megagram
202    ///
203    /// rec20
204    Megagram,
205    /// metre per minute
206    ///
207    /// rec20
208    MetrePerMinute,
209    /// milliroentgen
210    ///
211    /// rec20
212    Milliroentgen,
213    /// millivolt
214    ///
215    /// rec20
216    Millivolt,
217    /// megajoule
218    ///
219    /// rec20
220    Megajoule,
221    /// manmonth
222    ///
223    /// rec20
224    Manmonth,
225    /// centistokes
226    ///
227    /// rec20
228    Centistokes,
229    /// microlitre
230    ///
231    /// rec20
232    Microlitre,
233    /// micrometre (micron)
234    ///
235    /// rec20
236    MicrometreMicron,
237    /// milliampere
238    ///
239    /// rec20
240    Milliampere,
241    /// megabyte
242    ///
243    /// rec20
244    Megabyte,
245    /// milligram per hour
246    ///
247    /// rec20
248    MilligramPerHour,
249    /// megabecquerel
250    ///
251    /// rec20
252    Megabecquerel,
253    /// microfarad
254    ///
255    /// rec20
256    Microfarad,
257    /// newton per metre
258    ///
259    /// rec20
260    NewtonPerMetre,
261    /// ounce inch
262    ///
263    /// rec20
264    OunceInch,
265    /// ounce foot
266    ///
267    /// rec20
268    OunceFoot,
269    /// picofarad
270    ///
271    /// rec20
272    Picofarad,
273    /// pound per hour
274    ///
275    /// rec20
276    PoundPerHour,
277    /// ton (US) per hour
278    ///
279    /// rec20
280    TonUsPerHour,
281    /// kilolitre per hour
282    ///
283    /// rec20
284    KilolitrePerHour,
285    /// barrel (US) per minute
286    ///
287    /// rec20
288    BarrelUsPerMinute,
289    /// batch
290    ///
291    /// rec20
292    Batch,
293    /// MMSCF/day
294    ///
295    /// rec20
296    MmscfDay,
297    /// hydraulic horse power
298    ///
299    /// rec20
300    HydraulicHorsePower,
301    /// ampere square metre per joule second
302    ///
303    /// rec20
304    AmpereSquareMetrePerJouleSecond,
305    /// angstrom
306    ///
307    /// rec20
308    Angstrom,
309    /// astronomical unit
310    ///
311    /// rec20
312    AstronomicalUnit,
313    /// attojoule
314    ///
315    /// rec20
316    Attojoule,
317    /// barn
318    ///
319    /// rec20
320    Barn,
321    /// barn per electronvolt
322    ///
323    /// rec20
324    BarnPerElectronvolt,
325    /// barn per steradian electronvolt
326    ///
327    /// rec20
328    BarnPerSteradianElectronvolt,
329    /// barn per steradian
330    ///
331    /// rec20
332    BarnPerSteradian,
333    /// becquerel per kilogram
334    ///
335    /// rec20
336    BecquerelPerKilogram,
337    /// becquerel per cubic metre
338    ///
339    /// rec20
340    BecquerelPerCubicMetre,
341    /// ampere per centimetre
342    ///
343    /// rec20
344    AmperePerCentimetre,
345    /// British thermal unit (international table) per second square foot degree Rankine
346    ///
347    /// rec20
348    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine,
349    /// British thermal unit (international table) per pound degree Rankine
350    ///
351    /// rec20
352    BritishThermalUnitInternationalTablePerPoundDegreeRankine,
353    /// British thermal unit (international table) per second foot degree Rankine
354    ///
355    /// rec20
356    BritishThermalUnitInternationalTablePerSecondFootDegreeRankine,
357    /// British thermal unit (international table) per hour square foot degree Rankine
358    ///
359    /// rec20
360    BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine,
361    /// candela per square metre
362    ///
363    /// rec20
364    CandelaPerSquareMetre,
365    /// coulomb metre
366    ///
367    /// rec20
368    CoulombMetre,
369    /// coulomb metre squared per volt
370    ///
371    /// rec20
372    CoulombMetreSquaredPerVolt,
373    /// coulomb per cubic centimetre
374    ///
375    /// rec20
376    CoulombPerCubicCentimetre,
377    /// coulomb per cubic metre
378    ///
379    /// rec20
380    CoulombPerCubicMetre,
381    /// ampere per millimetre
382    ///
383    /// rec20
384    AmperePerMillimetre,
385    /// coulomb per cubic millimetre
386    ///
387    /// rec20
388    CoulombPerCubicMillimetre,
389    /// coulomb per kilogram second
390    ///
391    /// rec20
392    CoulombPerKilogramSecond,
393    /// coulomb per mole
394    ///
395    /// rec20
396    CoulombPerMole,
397    /// coulomb per square centimetre
398    ///
399    /// rec20
400    CoulombPerSquareCentimetre,
401    /// coulomb per square metre
402    ///
403    /// rec20
404    CoulombPerSquareMetre,
405    /// coulomb per square millimetre
406    ///
407    /// rec20
408    CoulombPerSquareMillimetre,
409    /// cubic centimetre per mole
410    ///
411    /// rec20
412    CubicCentimetrePerMole,
413    /// cubic decimetre per mole
414    ///
415    /// rec20
416    CubicDecimetrePerMole,
417    /// cubic metre per coulomb
418    ///
419    /// rec20
420    CubicMetrePerCoulomb,
421    /// cubic metre per kilogram
422    ///
423    /// rec20
424    CubicMetrePerKilogram,
425    /// ampere per square centimetre
426    ///
427    /// rec20
428    AmperePerSquareCentimetre,
429    /// cubic metre per mole
430    ///
431    /// rec20
432    CubicMetrePerMole,
433    /// ampere per square metre
434    ///
435    /// rec20
436    AmperePerSquareMetre,
437    /// curie per kilogram
438    ///
439    /// rec20
440    CuriePerKilogram,
441    /// deadweight tonnage
442    ///
443    /// rec20
444    DeadweightTonnage,
445    /// decalitre
446    ///
447    /// rec20
448    Decalitre,
449    /// decametre
450    ///
451    /// rec20
452    Decametre,
453    /// decitex
454    ///
455    /// rec20
456    Decitex,
457    /// degree Rankine
458    ///
459    /// rec20
460    DegreeRankine,
461    /// denier
462    ///
463    /// rec20
464    Denier,
465    /// ampere square metre
466    ///
467    /// rec20
468    AmpereSquareMetre,
469    /// electronvolt
470    ///
471    /// rec20
472    Electronvolt,
473    /// electronvolt per metre
474    ///
475    /// rec20
476    ElectronvoltPerMetre,
477    /// electronvolt square metre
478    ///
479    /// rec20
480    ElectronvoltSquareMetre,
481    /// electronvolt square metre per kilogram
482    ///
483    /// rec20
484    ElectronvoltSquareMetrePerKilogram,
485    /// 8-part cloud cover
486    ///
487    /// rec20
488    _8PartCloudCover,
489    /// ampere per square metre kelvin squared
490    ///
491    /// rec20
492    AmperePerSquareMetreKelvinSquared,
493    /// exajoule
494    ///
495    /// rec20
496    Exajoule,
497    /// farad per metre
498    ///
499    /// rec20
500    FaradPerMetre,
501    /// ampere per square millimetre
502    ///
503    /// rec20
504    AmperePerSquareMillimetre,
505    /// femtojoule
506    ///
507    /// rec20
508    Femtojoule,
509    /// femtometre
510    ///
511    /// rec20
512    Femtometre,
513    /// foot per second squared
514    ///
515    /// rec20
516    FootPerSecondSquared,
517    /// foot pound-force per second
518    ///
519    /// rec20
520    FootPoundForcePerSecond,
521    /// freight ton
522    ///
523    /// rec20
524    FreightTon,
525    /// gal
526    ///
527    /// rec20
528    Gal,
529    /// ampere second
530    ///
531    /// rec20
532    AmpereSecond,
533    /// gigacoulomb per cubic metre
534    ///
535    /// rec20
536    GigacoulombPerCubicMetre,
537    /// gigaelectronvolt
538    ///
539    /// rec20
540    Gigaelectronvolt,
541    /// gigahertz
542    ///
543    /// rec20
544    Gigahertz,
545    /// gigaohm
546    ///
547    /// rec20
548    Gigaohm,
549    /// gigaohm metre
550    ///
551    /// rec20
552    GigaohmMetre,
553    /// gigapascal
554    ///
555    /// rec20
556    Gigapascal,
557    /// rate
558    ///
559    /// rec20
560    Rate,
561    /// gigawatt
562    ///
563    /// rec20
564    Gigawatt,
565    /// gon
566    ///
567    /// rec20
568    Gon,
569    /// gram per cubic metre
570    ///
571    /// rec20
572    GramPerCubicMetre,
573    /// gram per mole
574    ///
575    /// rec20
576    GramPerMole,
577    /// gray
578    ///
579    /// rec20
580    Gray,
581    /// gray per second
582    ///
583    /// rec20
584    GrayPerSecond,
585    /// hectopascal
586    ///
587    /// rec20
588    Hectopascal,
589    /// henry per metre
590    ///
591    /// rec20
592    HenryPerMetre,
593    /// bit
594    ///
595    /// rec20
596    Bit,
597    /// ball
598    ///
599    /// rec20
600    Ball,
601    /// bulk pack
602    ///
603    /// rec20
604    BulkPack,
605    /// acre
606    ///
607    /// rec20
608    Acre,
609    /// activity
610    ///
611    /// rec20
612    Activity,
613    /// byte
614    ///
615    /// rec20
616    Byte,
617    /// ampere per metre
618    ///
619    /// rec20
620    AmperePerMetre,
621    /// additional minute
622    ///
623    /// rec20
624    AdditionalMinute,
625    /// average minute per call
626    ///
627    /// rec20
628    AverageMinutePerCall,
629    /// fathom
630    ///
631    /// rec20
632    Fathom,
633    /// access line
634    ///
635    /// rec20
636    AccessLine,
637    /// ampere hour
638    ///
639    /// rec20
640    AmpereHour,
641    /// ampere
642    ///
643    /// rec20
644    Ampere,
645    /// year
646    ///
647    /// rec20
648    Year,
649    /// troy ounce or apothecary ounce
650    ///
651    /// rec20
652    TroyOunceOrApothecaryOunce,
653    /// anti-hemophilic factor (AHF) unit
654    ///
655    /// rec20
656    AntiHemophilicFactorAhfUnit,
657    /// assortment
658    ///
659    /// rec20
660    Assortment,
661    /// alcoholic strength by mass
662    ///
663    /// rec20
664    AlcoholicStrengthByMass,
665    /// alcoholic strength by volume
666    ///
667    /// rec20
668    AlcoholicStrengthByVolume,
669    /// standard atmosphere
670    ///
671    /// rec20
672    StandardAtmosphere,
673    /// american wire gauge
674    ///
675    /// rec20
676    AmericanWireGauge,
677    /// assembly
678    ///
679    /// rec20
680    Assembly,
681    /// British thermal unit (international table) per pound
682    ///
683    /// rec20
684    BritishThermalUnitInternationalTablePerPound,
685    /// barrel (US) per day
686    ///
687    /// rec20
688    BarrelUsPerDay,
689    /// bit per second
690    ///
691    /// rec20
692    BitPerSecond,
693    /// joule per kilogram kelvin
694    ///
695    /// rec20
696    JoulePerKilogramKelvin,
697    /// joule per metre
698    ///
699    /// rec20
700    JoulePerMetre,
701    /// joule per square metre
702    ///
703    /// rec20
704    JoulePerSquareMetre,
705    /// joule per metre to the fourth power
706    ///
707    /// rec20
708    JoulePerMetreToFourthPower,
709    /// joule per mole
710    ///
711    /// rec20
712    JoulePerMole,
713    /// joule per mole kelvin
714    ///
715    /// rec20
716    JoulePerMoleKelvin,
717    /// credit
718    ///
719    /// rec20
720    Credit,
721    /// joule second
722    ///
723    /// rec20
724    JouleSecond,
725    /// digit
726    ///
727    /// rec20
728    Digit,
729    /// joule square metre per kilogram
730    ///
731    /// rec20
732    JouleSquareMetrePerKilogram,
733    /// kelvin per watt
734    ///
735    /// rec20
736    KelvinPerWatt,
737    /// kiloampere
738    ///
739    /// rec20
740    Kiloampere,
741    /// kiloampere per square metre
742    ///
743    /// rec20
744    KiloamperePerSquareMetre,
745    /// kiloampere per metre
746    ///
747    /// rec20
748    KiloamperePerMetre,
749    /// kilobecquerel per kilogram
750    ///
751    /// rec20
752    KilobecquerelPerKilogram,
753    /// kilocoulomb
754    ///
755    /// rec20
756    Kilocoulomb,
757    /// kilocoulomb per cubic metre
758    ///
759    /// rec20
760    KilocoulombPerCubicMetre,
761    /// kilocoulomb per square metre
762    ///
763    /// rec20
764    KilocoulombPerSquareMetre,
765    /// kiloelectronvolt
766    ///
767    /// rec20
768    Kiloelectronvolt,
769    /// batting pound
770    ///
771    /// rec20
772    BattingPound,
773    /// gibibit
774    ///
775    /// rec20
776    Gibibit,
777    /// kilogram metre per second
778    ///
779    /// rec20
780    KilogramMetrePerSecond,
781    /// kilogram metre squared
782    ///
783    /// rec20
784    KilogramMetreSquared,
785    /// kilogram metre squared per second
786    ///
787    /// rec20
788    KilogramMetreSquaredPerSecond,
789    /// kilogram per cubic decimetre
790    ///
791    /// rec20
792    KilogramPerCubicDecimetre,
793    /// kilogram per litre
794    ///
795    /// rec20
796    KilogramPerLitre,
797    /// barrel, imperial
798    ///
799    /// rec20
800    BarrelImperial,
801    /// kilojoule per kelvin
802    ///
803    /// rec20
804    KilojoulePerKelvin,
805    /// kilojoule per kilogram
806    ///
807    /// rec20
808    KilojoulePerKilogram,
809    /// kilojoule per kilogram kelvin
810    ///
811    /// rec20
812    KilojoulePerKilogramKelvin,
813    /// kilojoule per mole
814    ///
815    /// rec20
816    KilojoulePerMole,
817    /// kilomole
818    ///
819    /// rec20
820    Kilomole,
821    /// kilomole per cubic metre
822    ///
823    /// rec20
824    KilomolePerCubicMetre,
825    /// kilonewton
826    ///
827    /// rec20
828    Kilonewton,
829    /// kilonewton metre
830    ///
831    /// rec20
832    KilonewtonMetre,
833    /// kiloohm
834    ///
835    /// rec20
836    Kiloohm,
837    /// kiloohm metre
838    ///
839    /// rec20
840    KiloohmMetre,
841    /// kilosecond
842    ///
843    /// rec20
844    Kilosecond,
845    /// kilosiemens
846    ///
847    /// rec20
848    Kilosiemens,
849    /// kilosiemens per metre
850    ///
851    /// rec20
852    KilosiemensPerMetre,
853    /// kilovolt per metre
854    ///
855    /// rec20
856    KilovoltPerMetre,
857    /// kiloweber per metre
858    ///
859    /// rec20
860    KiloweberPerMetre,
861    /// light year
862    ///
863    /// rec20
864    LightYear,
865    /// litre per mole
866    ///
867    /// rec20
868    LitrePerMole,
869    /// lumen hour
870    ///
871    /// rec20
872    LumenHour,
873    /// lumen per square metre
874    ///
875    /// rec20
876    LumenPerSquareMetre,
877    /// lumen per watt
878    ///
879    /// rec20
880    LumenPerWatt,
881    /// lumen second
882    ///
883    /// rec20
884    LumenSecond,
885    /// lux hour
886    ///
887    /// rec20
888    LuxHour,
889    /// lux second
890    ///
891    /// rec20
892    LuxSecond,
893    /// megaampere per square metre
894    ///
895    /// rec20
896    MegaamperePerSquareMetre,
897    /// megabecquerel per kilogram
898    ///
899    /// rec20
900    MegabecquerelPerKilogram,
901    /// gigabit
902    ///
903    /// rec20
904    Gigabit,
905    /// megacoulomb per cubic metre
906    ///
907    /// rec20
908    MegacoulombPerCubicMetre,
909    /// cycle
910    ///
911    /// rec20
912    Cycle,
913    /// megacoulomb per square metre
914    ///
915    /// rec20
916    MegacoulombPerSquareMetre,
917    /// megaelectronvolt
918    ///
919    /// rec20
920    Megaelectronvolt,
921    /// megagram per cubic metre
922    ///
923    /// rec20
924    MegagramPerCubicMetre,
925    /// meganewton
926    ///
927    /// rec20
928    Meganewton,
929    /// meganewton metre
930    ///
931    /// rec20
932    MeganewtonMetre,
933    /// megaohm
934    ///
935    /// rec20
936    Megaohm,
937    /// megaohm metre
938    ///
939    /// rec20
940    MegaohmMetre,
941    /// megasiemens per metre
942    ///
943    /// rec20
944    MegasiemensPerMetre,
945    /// megavolt
946    ///
947    /// rec20
948    Megavolt,
949    /// megavolt per metre
950    ///
951    /// rec20
952    MegavoltPerMetre,
953    /// joule per cubic metre
954    ///
955    /// rec20
956    JoulePerCubicMetre,
957    /// gigabit per second
958    ///
959    /// rec20
960    GigabitPerSecond,
961    /// reciprocal metre squared reciprocal second
962    ///
963    /// rec20
964    ReciprocalMetreSquaredReciprocalSecond,
965    /// inch per linear foot
966    ///
967    /// rec20
968    InchPerLinearFoot,
969    /// metre to the fourth power
970    ///
971    /// rec20
972    MetreToFourthPower,
973    /// microampere
974    ///
975    /// rec20
976    Microampere,
977    /// microbar
978    ///
979    /// rec20
980    Microbar,
981    /// microcoulomb
982    ///
983    /// rec20
984    Microcoulomb,
985    /// microcoulomb per cubic metre
986    ///
987    /// rec20
988    MicrocoulombPerCubicMetre,
989    /// microcoulomb per square metre
990    ///
991    /// rec20
992    MicrocoulombPerSquareMetre,
993    /// microfarad per metre
994    ///
995    /// rec20
996    MicrofaradPerMetre,
997    /// microhenry
998    ///
999    /// rec20
1000    Microhenry,
1001    /// microhenry per metre
1002    ///
1003    /// rec20
1004    MicrohenryPerMetre,
1005    /// micronewton
1006    ///
1007    /// rec20
1008    Micronewton,
1009    /// micronewton metre
1010    ///
1011    /// rec20
1012    MicronewtonMetre,
1013    /// microohm
1014    ///
1015    /// rec20
1016    Microohm,
1017    /// microohm metre
1018    ///
1019    /// rec20
1020    MicroohmMetre,
1021    /// micropascal
1022    ///
1023    /// rec20
1024    Micropascal,
1025    /// microradian
1026    ///
1027    /// rec20
1028    Microradian,
1029    /// microsecond
1030    ///
1031    /// rec20
1032    Microsecond,
1033    /// microsiemens
1034    ///
1035    /// rec20
1036    Microsiemens,
1037    /// bar [unit of pressure]
1038    ///
1039    /// rec20
1040    BarUnitPressure,
1041    /// base box
1042    ///
1043    /// rec20
1044    BaseBox,
1045    /// board foot
1046    ///
1047    /// rec20
1048    BoardFoot,
1049    /// brake horse power
1050    ///
1051    /// rec20
1052    BrakeHorsePower,
1053    /// billion (EUR)
1054    ///
1055    /// rec20
1056    BillionEur,
1057    /// dry barrel (US)
1058    ///
1059    /// rec20
1060    DryBarrelUs,
1061    /// barrel (US)
1062    ///
1063    /// rec20
1064    BarrelUs,
1065    /// hundred board foot
1066    ///
1067    /// rec20
1068    HundredBoardFoot,
1069    /// beats per minute
1070    ///
1071    /// rec20
1072    BeatsPerMinute,
1073    /// becquerel
1074    ///
1075    /// rec20
1076    Becquerel,
1077    /// British thermal unit (international table)
1078    ///
1079    /// rec20
1080    BritishThermalUnitInternationalTable,
1081    /// bushel (US)
1082    ///
1083    /// rec20
1084    BushelUs,
1085    /// bushel (UK)
1086    ///
1087    /// rec20
1088    BushelUk,
1089    /// call
1090    ///
1091    /// rec20
1092    Call,
1093    /// millifarad
1094    ///
1095    /// rec20
1096    Millifarad,
1097    /// milligal
1098    ///
1099    /// rec20
1100    Milligal,
1101    /// milligram per metre
1102    ///
1103    /// rec20
1104    MilligramPerMetre,
1105    /// milligray
1106    ///
1107    /// rec20
1108    Milligray,
1109    /// millihenry
1110    ///
1111    /// rec20
1112    Millihenry,
1113    /// millijoule
1114    ///
1115    /// rec20
1116    Millijoule,
1117    /// millimetre per second
1118    ///
1119    /// rec20
1120    MillimetrePerSecond,
1121    /// millimetre squared per second
1122    ///
1123    /// rec20
1124    MillimetreSquaredPerSecond,
1125    /// millimole
1126    ///
1127    /// rec20
1128    Millimole,
1129    /// mole per kilogram
1130    ///
1131    /// rec20
1132    MolePerKilogram,
1133    /// millinewton
1134    ///
1135    /// rec20
1136    Millinewton,
1137    /// kibibit
1138    ///
1139    /// rec20
1140    Kibibit,
1141    /// millinewton per metre
1142    ///
1143    /// rec20
1144    MillinewtonPerMetre,
1145    /// milliohm metre
1146    ///
1147    /// rec20
1148    MilliohmMetre,
1149    /// millipascal second
1150    ///
1151    /// rec20
1152    MillipascalSecond,
1153    /// milliradian
1154    ///
1155    /// rec20
1156    Milliradian,
1157    /// millisecond
1158    ///
1159    /// rec20
1160    Millisecond,
1161    /// millisiemens
1162    ///
1163    /// rec20
1164    Millisiemens,
1165    /// millisievert
1166    ///
1167    /// rec20
1168    Millisievert,
1169    /// millitesla
1170    ///
1171    /// rec20
1172    Millitesla,
1173    /// microvolt per metre
1174    ///
1175    /// rec20
1176    MicrovoltPerMetre,
1177    /// millivolt per metre
1178    ///
1179    /// rec20
1180    MillivoltPerMetre,
1181    /// milliwatt
1182    ///
1183    /// rec20
1184    Milliwatt,
1185    /// milliwatt per square metre
1186    ///
1187    /// rec20
1188    MilliwattPerSquareMetre,
1189    /// milliweber
1190    ///
1191    /// rec20
1192    Milliweber,
1193    /// mole
1194    ///
1195    /// rec20
1196    Mole,
1197    /// mole per cubic decimetre
1198    ///
1199    /// rec20
1200    MolePerCubicDecimetre,
1201    /// mole per cubic metre
1202    ///
1203    /// rec20
1204    MolePerCubicMetre,
1205    /// kilobit
1206    ///
1207    /// rec20
1208    Kilobit,
1209    /// mole per litre
1210    ///
1211    /// rec20
1212    MolePerLitre,
1213    /// nanoampere
1214    ///
1215    /// rec20
1216    Nanoampere,
1217    /// nanocoulomb
1218    ///
1219    /// rec20
1220    Nanocoulomb,
1221    /// nanofarad
1222    ///
1223    /// rec20
1224    Nanofarad,
1225    /// nanofarad per metre
1226    ///
1227    /// rec20
1228    NanofaradPerMetre,
1229    /// nanohenry
1230    ///
1231    /// rec20
1232    Nanohenry,
1233    /// nanohenry per metre
1234    ///
1235    /// rec20
1236    NanohenryPerMetre,
1237    /// nanometre
1238    ///
1239    /// rec20
1240    Nanometre,
1241    /// nanoohm metre
1242    ///
1243    /// rec20
1244    NanoohmMetre,
1245    /// nanosecond
1246    ///
1247    /// rec20
1248    Nanosecond,
1249    /// nanotesla
1250    ///
1251    /// rec20
1252    Nanotesla,
1253    /// nanowatt
1254    ///
1255    /// rec20
1256    Nanowatt,
1257    /// neper
1258    ///
1259    /// rec20
1260    Neper,
1261    /// neper per second
1262    ///
1263    /// rec20
1264    NeperPerSecond,
1265    /// picometre
1266    ///
1267    /// rec20
1268    Picometre,
1269    /// newton metre second
1270    ///
1271    /// rec20
1272    NewtonMetreSecond,
1273    /// newton metre squared per kilogram squared
1274    ///
1275    /// rec20
1276    NewtonMetreSquaredPerKilogramSquared,
1277    /// newton per square metre
1278    ///
1279    /// rec20
1280    NewtonPerSquareMetre,
1281    /// newton per square millimetre
1282    ///
1283    /// rec20
1284    NewtonPerSquareMillimetre,
1285    /// newton second
1286    ///
1287    /// rec20
1288    NewtonSecond,
1289    /// newton second per metre
1290    ///
1291    /// rec20
1292    NewtonSecondPerMetre,
1293    /// octave
1294    ///
1295    /// rec20
1296    Octave,
1297    /// ohm centimetre
1298    ///
1299    /// rec20
1300    OhmCentimetre,
1301    /// ohm metre
1302    ///
1303    /// rec20
1304    OhmMetre,
1305    /// one
1306    ///
1307    /// rec20
1308    One,
1309    /// parsec
1310    ///
1311    /// rec20
1312    Parsec,
1313    /// pascal per kelvin
1314    ///
1315    /// rec20
1316    PascalPerKelvin,
1317    /// pascal second
1318    ///
1319    /// rec20
1320    PascalSecond,
1321    /// pascal second per cubic metre
1322    ///
1323    /// rec20
1324    PascalSecondPerCubicMetre,
1325    /// pascal second per metre
1326    ///
1327    /// rec20
1328    PascalSecondPerMetre,
1329    /// petajoule
1330    ///
1331    /// rec20
1332    Petajoule,
1333    /// phon
1334    ///
1335    /// rec20
1336    Phon,
1337    /// centipoise
1338    ///
1339    /// rec20
1340    Centipoise,
1341    /// picoampere
1342    ///
1343    /// rec20
1344    Picoampere,
1345    /// picocoulomb
1346    ///
1347    /// rec20
1348    Picocoulomb,
1349    /// picofarad per metre
1350    ///
1351    /// rec20
1352    PicofaradPerMetre,
1353    /// picohenry
1354    ///
1355    /// rec20
1356    Picohenry,
1357    /// kilobit per second
1358    ///
1359    /// rec20
1360    KilobitPerSecond,
1361    /// picowatt
1362    ///
1363    /// rec20
1364    Picowatt,
1365    /// picowatt per square metre
1366    ///
1367    /// rec20
1368    PicowattPerSquareMetre,
1369    /// pound-force
1370    ///
1371    /// rec20
1372    PoundForce,
1373    /// kilovolt ampere hour
1374    ///
1375    /// rec20
1376    KilovoltAmpereHour,
1377    /// millicoulomb per kilogram
1378    ///
1379    /// rec20
1380    MillicoulombPerKilogram,
1381    /// rad
1382    ///
1383    /// rec20
1384    Rad,
1385    /// radian
1386    ///
1387    /// rec20
1388    Radian,
1389    /// radian square metre per mole
1390    ///
1391    /// rec20
1392    RadianSquareMetrePerMole,
1393    /// radian square metre per kilogram
1394    ///
1395    /// rec20
1396    RadianSquareMetrePerKilogram,
1397    /// radian per metre
1398    ///
1399    /// rec20
1400    RadianPerMetre,
1401    /// reciprocal angstrom
1402    ///
1403    /// rec20
1404    ReciprocalAngstrom,
1405    /// reciprocal cubic metre
1406    ///
1407    /// rec20
1408    ReciprocalCubicMetre,
1409    /// reciprocal cubic metre per second
1410    ///
1411    /// rec20
1412    ReciprocalCubicMetrePerSecond,
1413    /// reciprocal electron volt per cubic metre
1414    ///
1415    /// rec20
1416    ReciprocalElectronVoltPerCubicMetre,
1417    /// reciprocal henry
1418    ///
1419    /// rec20
1420    ReciprocalHenry,
1421    /// coil group
1422    ///
1423    /// rec20
1424    CoilGroup,
1425    /// reciprocal joule per cubic metre
1426    ///
1427    /// rec20
1428    ReciprocalJoulePerCubicMetre,
1429    /// reciprocal kelvin or kelvin to the power minus one
1430    ///
1431    /// rec20
1432    ReciprocalKelvinOrKelvinToPowerMinusOne,
1433    /// reciprocal metre
1434    ///
1435    /// rec20
1436    ReciprocalMetre,
1437    /// reciprocal square metre
1438    ///
1439    /// rec20
1440    ReciprocalSquareMetre,
1441    /// reciprocal minute
1442    ///
1443    /// rec20
1444    ReciprocalMinute,
1445    /// reciprocal mole
1446    ///
1447    /// rec20
1448    ReciprocalMole,
1449    /// reciprocal pascal or pascal to the power minus one
1450    ///
1451    /// rec20
1452    ReciprocalPascalOrPascalToPowerMinusOne,
1453    /// reciprocal second
1454    ///
1455    /// rec20
1456    ReciprocalSecond,
1457    /// reciprocal second per metre squared
1458    ///
1459    /// rec20
1460    ReciprocalSecondPerMetreSquared,
1461    /// carrying capacity in metric ton
1462    ///
1463    /// rec20
1464    CarryingCapacityInMetricTon,
1465    /// candela
1466    ///
1467    /// rec20
1468    Candela,
1469    /// degree Celsius
1470    ///
1471    /// rec20
1472    DegreeCelsius,
1473    /// hundred
1474    ///
1475    /// rec20
1476    Hundred,
1477    /// card
1478    ///
1479    /// rec20
1480    Card,
1481    /// centigram
1482    ///
1483    /// rec20
1484    Centigram,
1485    /// coulomb per kilogram
1486    ///
1487    /// rec20
1488    CoulombPerKilogram,
1489    /// hundred leave
1490    ///
1491    /// rec20
1492    HundredLeave,
1493    /// centilitre
1494    ///
1495    /// rec20
1496    Centilitre,
1497    /// square centimetre
1498    ///
1499    /// rec20
1500    SquareCentimetre,
1501    /// cubic centimetre
1502    ///
1503    /// rec20
1504    CubicCentimetre,
1505    /// centimetre
1506    ///
1507    /// rec20
1508    Centimetre,
1509    /// hundred pack
1510    ///
1511    /// rec20
1512    HundredPack,
1513    /// cental (UK)
1514    ///
1515    /// rec20
1516    CentalUk,
1517    /// coulomb
1518    ///
1519    /// rec20
1520    Coulomb,
1521    /// content gram
1522    ///
1523    /// rec20
1524    ContentGram,
1525    /// metric carat
1526    ///
1527    /// rec20
1528    MetricCarat,
1529    /// content ton (metric)
1530    ///
1531    /// rec20
1532    ContentTonMetric,
1533    /// curie
1534    ///
1535    /// rec20
1536    Curie,
1537    /// hundred pound (cwt) / hundred weight (US)
1538    ///
1539    /// rec20
1540    HundredPoundCwtHundredWeightUs,
1541    /// hundred weight (UK)
1542    ///
1543    /// rec20
1544    HundredWeightUk,
1545    /// kilowatt hour per hour
1546    ///
1547    /// rec20
1548    KilowattHourPerHour,
1549    /// lot [unit of weight]
1550    ///
1551    /// rec20
1552    LotUnitWeight,
1553    /// reciprocal second per steradian
1554    ///
1555    /// rec20
1556    ReciprocalSecondPerSteradian,
1557    /// siemens per metre
1558    ///
1559    /// rec20
1560    SiemensPerMetre,
1561    /// mebibit
1562    ///
1563    /// rec20
1564    Mebibit,
1565    /// siemens square metre per mole
1566    ///
1567    /// rec20
1568    SiemensSquareMetrePerMole,
1569    /// sievert
1570    ///
1571    /// rec20
1572    Sievert,
1573    /// sone
1574    ///
1575    /// rec20
1576    Sone,
1577    /// square centimetre per erg
1578    ///
1579    /// rec20
1580    SquareCentimetrePerErg,
1581    /// square centimetre per steradian erg
1582    ///
1583    /// rec20
1584    SquareCentimetrePerSteradianErg,
1585    /// metre kelvin
1586    ///
1587    /// rec20
1588    MetreKelvin,
1589    /// square metre kelvin per watt
1590    ///
1591    /// rec20
1592    SquareMetreKelvinPerWatt,
1593    /// reciprocal second per steradian metre squared
1594    ///
1595    /// rec20
1596    ReciprocalSecondPerSteradianMetreSquared,
1597    /// square metre per joule
1598    ///
1599    /// rec20
1600    SquareMetrePerJoule,
1601    /// square metre per kilogram
1602    ///
1603    /// rec20
1604    SquareMetrePerKilogram,
1605    /// square metre per mole
1606    ///
1607    /// rec20
1608    SquareMetrePerMole,
1609    /// pen gram (protein)
1610    ///
1611    /// rec20
1612    PenGramProtein,
1613    /// square metre per steradian
1614    ///
1615    /// rec20
1616    SquareMetrePerSteradian,
1617    /// square metre per steradian joule
1618    ///
1619    /// rec20
1620    SquareMetrePerSteradianJoule,
1621    /// square metre per volt second
1622    ///
1623    /// rec20
1624    SquareMetrePerVoltSecond,
1625    /// steradian
1626    ///
1627    /// rec20
1628    Steradian,
1629    /// terahertz
1630    ///
1631    /// rec20
1632    Terahertz,
1633    /// terajoule
1634    ///
1635    /// rec20
1636    Terajoule,
1637    /// terawatt
1638    ///
1639    /// rec20
1640    Terawatt,
1641    /// terawatt hour
1642    ///
1643    /// rec20
1644    TerawattHour,
1645    /// tesla
1646    ///
1647    /// rec20
1648    Tesla,
1649    /// tex
1650    ///
1651    /// rec20
1652    Tex,
1653    /// megabit
1654    ///
1655    /// rec20
1656    Megabit,
1657    /// tonne per cubic metre
1658    ///
1659    /// rec20
1660    TonnePerCubicMetre,
1661    /// tropical year
1662    ///
1663    /// rec20
1664    TropicalYear,
1665    /// unified atomic mass unit
1666    ///
1667    /// rec20
1668    UnifiedAtomicMassUnit,
1669    /// var
1670    ///
1671    /// rec20
1672    Var,
1673    /// volt squared per kelvin squared
1674    ///
1675    /// rec20
1676    VoltSquaredPerKelvinSquared,
1677    /// volt - ampere
1678    ///
1679    /// rec20
1680    VoltAmpere,
1681    /// volt per centimetre
1682    ///
1683    /// rec20
1684    VoltPerCentimetre,
1685    /// volt per kelvin
1686    ///
1687    /// rec20
1688    VoltPerKelvin,
1689    /// millivolt per kelvin
1690    ///
1691    /// rec20
1692    MillivoltPerKelvin,
1693    /// kilogram per square centimetre
1694    ///
1695    /// rec20
1696    KilogramPerSquareCentimetre,
1697    /// volt per metre
1698    ///
1699    /// rec20
1700    VoltPerMetre,
1701    /// volt per millimetre
1702    ///
1703    /// rec20
1704    VoltPerMillimetre,
1705    /// watt per kelvin
1706    ///
1707    /// rec20
1708    WattPerKelvin,
1709    /// watt per metre kelvin
1710    ///
1711    /// rec20
1712    WattPerMetreKelvin,
1713    /// watt per square metre
1714    ///
1715    /// rec20
1716    WattPerSquareMetre,
1717    /// watt per square metre kelvin
1718    ///
1719    /// rec20
1720    WattPerSquareMetreKelvin,
1721    /// watt per square metre kelvin to the fourth power
1722    ///
1723    /// rec20
1724    WattPerSquareMetreKelvinToFourthPower,
1725    /// watt per steradian
1726    ///
1727    /// rec20
1728    WattPerSteradian,
1729    /// watt per steradian square metre
1730    ///
1731    /// rec20
1732    WattPerSteradianSquareMetre,
1733    /// weber per metre
1734    ///
1735    /// rec20
1736    WeberPerMetre,
1737    /// roentgen per second
1738    ///
1739    /// rec20
1740    RoentgenPerSecond,
1741    /// weber per millimetre
1742    ///
1743    /// rec20
1744    WeberPerMillimetre,
1745    /// minute [unit of angle]
1746    ///
1747    /// rec20
1748    MinuteUnitAngle,
1749    /// second [unit of angle]
1750    ///
1751    /// rec20
1752    SecondUnitAngle,
1753    /// book
1754    ///
1755    /// rec20
1756    Book,
1757    /// round
1758    ///
1759    /// rec20
1760    Round,
1761    /// number of words
1762    ///
1763    /// rec20
1764    NumberWords,
1765    /// inch to the fourth power
1766    ///
1767    /// rec20
1768    InchToFourthPower,
1769    /// joule square metre
1770    ///
1771    /// rec20
1772    JouleSquareMetre,
1773    /// kilogram per mole
1774    ///
1775    /// rec20
1776    KilogramPerMole,
1777    /// megacoulomb
1778    ///
1779    /// rec20
1780    Megacoulomb,
1781    /// megajoule per second
1782    ///
1783    /// rec20
1784    MegajoulePerSecond,
1785    /// microwatt
1786    ///
1787    /// rec20
1788    Microwatt,
1789    /// microtesla
1790    ///
1791    /// rec20
1792    Microtesla,
1793    /// microvolt
1794    ///
1795    /// rec20
1796    Microvolt,
1797    /// millinewton metre
1798    ///
1799    /// rec20
1800    MillinewtonMetre,
1801    /// microwatt per square metre
1802    ///
1803    /// rec20
1804    MicrowattPerSquareMetre,
1805    /// millicoulomb
1806    ///
1807    /// rec20
1808    Millicoulomb,
1809    /// millimole per kilogram
1810    ///
1811    /// rec20
1812    MillimolePerKilogram,
1813    /// millicoulomb per cubic metre
1814    ///
1815    /// rec20
1816    MillicoulombPerCubicMetre,
1817    /// millicoulomb per square metre
1818    ///
1819    /// rec20
1820    MillicoulombPerSquareMetre,
1821    /// rem
1822    ///
1823    /// rec20
1824    Rem,
1825    /// second per cubic metre
1826    ///
1827    /// rec20
1828    SecondPerCubicMetre,
1829    /// second per cubic metre radian
1830    ///
1831    /// rec20
1832    SecondPerCubicMetreRadian,
1833    /// joule per gram
1834    ///
1835    /// rec20
1836    JoulePerGram,
1837    /// decare
1838    ///
1839    /// rec20
1840    Decare,
1841    /// ten day
1842    ///
1843    /// rec20
1844    TenDay,
1845    /// day
1846    ///
1847    /// rec20
1848    Day,
1849    /// dry pound
1850    ///
1851    /// rec20
1852    DryPound,
1853    /// Decibel-milliwatts
1854    ///
1855    /// Rec20
1856    DecibelMilliwatts,
1857    /// Decibel watt
1858    ///
1859    /// Rec20
1860    DecibelWatt,
1861    /// degree [unit of angle]
1862    ///
1863    /// rec20
1864    DegreeUnitAngle,
1865    /// decade
1866    ///
1867    /// rec20
1868    Decade,
1869    /// decigram
1870    ///
1871    /// rec20
1872    Decigram,
1873    /// decagram
1874    ///
1875    /// rec20
1876    Decagram,
1877    /// decilitre
1878    ///
1879    /// rec20
1880    Decilitre,
1881    /// cubic decametre
1882    ///
1883    /// rec20
1884    CubicDecametre,
1885    /// square decimetre
1886    ///
1887    /// rec20
1888    SquareDecimetre,
1889    /// standard kilolitre
1890    ///
1891    /// rec20
1892    StandardKilolitre,
1893    /// cubic decimetre
1894    ///
1895    /// rec20
1896    CubicDecimetre,
1897    /// decimetre
1898    ///
1899    /// rec20
1900    Decimetre,
1901    /// decinewton metre
1902    ///
1903    /// rec20
1904    DecinewtonMetre,
1905    /// dozen piece
1906    ///
1907    /// rec20
1908    DozenPiece,
1909    /// dozen pair
1910    ///
1911    /// rec20
1912    DozenPair,
1913    /// displacement tonnage
1914    ///
1915    /// rec20
1916    DisplacementTonnage,
1917    /// dram (US)
1918    ///
1919    /// rec20
1920    DramUs,
1921    /// dram (UK)
1922    ///
1923    /// rec20
1924    DramUk,
1925    /// dozen roll
1926    ///
1927    /// rec20
1928    DozenRoll,
1929    /// dry ton
1930    ///
1931    /// rec20
1932    DryTon,
1933    /// decitonne
1934    ///
1935    /// rec20
1936    Decitonne,
1937    /// pennyweight
1938    ///
1939    /// rec20
1940    Pennyweight,
1941    /// dozen
1942    ///
1943    /// rec20
1944    Dozen,
1945    /// dozen pack
1946    ///
1947    /// rec20
1948    DozenPack,
1949    /// newton per square centimetre
1950    ///
1951    /// rec20
1952    NewtonPerSquareCentimetre,
1953    /// megawatt hour per hour
1954    ///
1955    /// rec20
1956    MegawattHourPerHour,
1957    /// megawatt per hertz
1958    ///
1959    /// rec20
1960    MegawattPerHertz,
1961    /// milliampere hour
1962    ///
1963    /// rec20
1964    MilliampereHour,
1965    /// degree day
1966    ///
1967    /// rec20
1968    DegreeDay,
1969    /// mille
1970    ///
1971    /// rec20
1972    Mille,
1973    /// kilocalorie (international table)
1974    ///
1975    /// rec20
1976    KilocalorieInternationalTable,
1977    /// kilocalorie (thermochemical) per hour
1978    ///
1979    /// rec20
1980    KilocalorieThermochemicalPerHour,
1981    /// million Btu(IT) per hour
1982    ///
1983    /// rec20
1984    MillionBtuItPerHour,
1985    /// cubic foot per second
1986    ///
1987    /// rec20
1988    CubicFootPerSecond,
1989    /// tonne per hour
1990    ///
1991    /// rec20
1992    TonnePerHour,
1993    /// ping
1994    ///
1995    /// rec20
1996    Ping,
1997    /// megabit per second
1998    ///
1999    /// rec20
2000    MegabitPerSecond,
2001    /// shares
2002    ///
2003    /// rec20
2004    Shares,
2005    /// TEU
2006    ///
2007    /// rec20
2008    Teu,
2009    /// tyre
2010    ///
2011    /// rec20
2012    Tyre,
2013    /// active unit
2014    ///
2015    /// rec20
2016    ActiveUnit,
2017    /// dose
2018    ///
2019    /// rec20
2020    Dose,
2021    /// air dry ton
2022    ///
2023    /// rec20
2024    AirDryTon,
2025    /// strand
2026    ///
2027    /// rec20
2028    Strand,
2029    /// square metre per litre
2030    ///
2031    /// rec20
2032    SquareMetrePerLitre,
2033    /// litre per hour
2034    ///
2035    /// rec20
2036    LitrePerHour,
2037    /// foot per thousand
2038    ///
2039    /// rec20
2040    FootPerThousand,
2041    /// gigabyte
2042    ///
2043    /// rec20
2044    Gigabyte,
2045    /// terabyte
2046    ///
2047    /// rec20
2048    Terabyte,
2049    /// petabyte
2050    ///
2051    /// rec20
2052    Petabyte,
2053    /// pixel
2054    ///
2055    /// rec20
2056    Pixel,
2057    /// megapixel
2058    ///
2059    /// rec20
2060    Megapixel,
2061    /// dots per inch
2062    ///
2063    /// rec20
2064    DotsPerInch,
2065    /// gross kilogram
2066    ///
2067    /// rec20
2068    GrossKilogram,
2069    /// part per hundred thousand
2070    ///
2071    /// rec20
2072    PartPerHundredThousand,
2073    /// kilogram-force per square millimetre
2074    ///
2075    /// rec20
2076    KilogramForcePerSquareMillimetre,
2077    /// kilogram-force per square centimetre
2078    ///
2079    /// rec20
2080    KilogramForcePerSquareCentimetre,
2081    /// joule per square centimetre
2082    ///
2083    /// rec20
2084    JoulePerSquareCentimetre,
2085    /// kilogram-force metre per square centimetre
2086    ///
2087    /// rec20
2088    KilogramForceMetrePerSquareCentimetre,
2089    /// milliohm
2090    ///
2091    /// rec20
2092    Milliohm,
2093    /// kilowatt hour per cubic metre
2094    ///
2095    /// rec20
2096    KilowattHourPerCubicMetre,
2097    /// kilowatt hour per kelvin
2098    ///
2099    /// rec20
2100    KilowattHourPerKelvin,
2101    /// service unit
2102    ///
2103    /// rec20
2104    ServiceUnit,
2105    /// working day
2106    ///
2107    /// rec20
2108    WorkingDay,
2109    /// accounting unit
2110    ///
2111    /// rec20
2112    AccountingUnit,
2113    /// job
2114    ///
2115    /// rec20
2116    Job,
2117    /// run foot
2118    ///
2119    /// rec20
2120    RunFoot,
2121    /// test
2122    ///
2123    /// rec20
2124    Test,
2125    /// trip
2126    ///
2127    /// rec20
2128    Trip,
2129    /// use
2130    ///
2131    /// rec20
2132    Use,
2133    /// well
2134    ///
2135    /// rec20
2136    Well,
2137    /// zone
2138    ///
2139    /// rec20
2140    Zone,
2141    /// exabit per second
2142    ///
2143    /// rec20
2144    ExabitPerSecond,
2145    /// exbibyte
2146    ///
2147    /// rec20
2148    Exbibyte,
2149    /// pebibyte
2150    ///
2151    /// rec20
2152    Pebibyte,
2153    /// tebibyte
2154    ///
2155    /// rec20
2156    Tebibyte,
2157    /// gibibyte
2158    ///
2159    /// rec20
2160    Gibibyte,
2161    /// mebibyte
2162    ///
2163    /// rec20
2164    Mebibyte,
2165    /// kibibyte
2166    ///
2167    /// rec20
2168    Kibibyte,
2169    /// exbibit per metre
2170    ///
2171    /// rec20
2172    ExbibitPerMetre,
2173    /// exbibit per square metre
2174    ///
2175    /// rec20
2176    ExbibitPerSquareMetre,
2177    /// exbibit per cubic metre
2178    ///
2179    /// rec20
2180    ExbibitPerCubicMetre,
2181    /// gigabyte per second
2182    ///
2183    /// rec20
2184    GigabytePerSecond,
2185    /// gibibit per metre
2186    ///
2187    /// rec20
2188    GibibitPerMetre,
2189    /// gibibit per square metre
2190    ///
2191    /// rec20
2192    GibibitPerSquareMetre,
2193    /// gibibit per cubic metre
2194    ///
2195    /// rec20
2196    GibibitPerCubicMetre,
2197    /// kibibit per metre
2198    ///
2199    /// rec20
2200    KibibitPerMetre,
2201    /// kibibit per square metre
2202    ///
2203    /// rec20
2204    KibibitPerSquareMetre,
2205    /// kibibit per cubic metre
2206    ///
2207    /// rec20
2208    KibibitPerCubicMetre,
2209    /// mebibit per metre
2210    ///
2211    /// rec20
2212    MebibitPerMetre,
2213    /// mebibit per square metre
2214    ///
2215    /// rec20
2216    MebibitPerSquareMetre,
2217    /// mebibit per cubic metre
2218    ///
2219    /// rec20
2220    MebibitPerCubicMetre,
2221    /// petabit
2222    ///
2223    /// rec20
2224    Petabit,
2225    /// petabit per second
2226    ///
2227    /// rec20
2228    PetabitPerSecond,
2229    /// pebibit per metre
2230    ///
2231    /// rec20
2232    PebibitPerMetre,
2233    /// pebibit per square metre
2234    ///
2235    /// rec20
2236    PebibitPerSquareMetre,
2237    /// pebibit per cubic metre
2238    ///
2239    /// rec20
2240    PebibitPerCubicMetre,
2241    /// terabit
2242    ///
2243    /// rec20
2244    Terabit,
2245    /// terabit per second
2246    ///
2247    /// rec20
2248    TerabitPerSecond,
2249    /// tebibit per metre
2250    ///
2251    /// rec20
2252    TebibitPerMetre,
2253    /// tebibit per cubic metre
2254    ///
2255    /// rec20
2256    TebibitPerCubicMetre,
2257    /// tebibit per square metre
2258    ///
2259    /// rec20
2260    TebibitPerSquareMetre,
2261    /// bit per metre
2262    ///
2263    /// rec20
2264    BitPerMetre,
2265    /// bit per square metre
2266    ///
2267    /// rec20
2268    BitPerSquareMetre,
2269    /// reciprocal centimetre
2270    ///
2271    /// rec20
2272    ReciprocalCentimetre,
2273    /// reciprocal day
2274    ///
2275    /// rec20
2276    ReciprocalDay,
2277    /// cubic decimetre per hour
2278    ///
2279    /// rec20
2280    CubicDecimetrePerHour,
2281    /// kilogram per hour
2282    ///
2283    /// rec20
2284    KilogramPerHour,
2285    /// kilomole per second
2286    ///
2287    /// rec20
2288    KilomolePerSecond,
2289    /// mole per second
2290    ///
2291    /// rec20
2292    MolePerSecond,
2293    /// degree per second
2294    ///
2295    /// rec20
2296    DegreePerSecond,
2297    /// millimetre per degree Celcius metre
2298    ///
2299    /// rec20
2300    MillimetrePerDegreeCelciusMetre,
2301    /// degree Celsius per kelvin
2302    ///
2303    /// rec20
2304    DegreeCelsiusPerKelvin,
2305    /// hectopascal per bar
2306    ///
2307    /// rec20
2308    HectopascalPerBar,
2309    /// each
2310    ///
2311    /// rec20
2312    Each,
2313    /// electronic mail box
2314    ///
2315    /// rec20
2316    ElectronicMailBox,
2317    /// equivalent gallon
2318    ///
2319    /// rec20
2320    EquivalentGallon,
2321    /// bit per cubic metre
2322    ///
2323    /// rec20
2324    BitPerCubicMetre,
2325    /// kelvin per kelvin
2326    ///
2327    /// rec20
2328    KelvinPerKelvin,
2329    /// kilopascal per bar
2330    ///
2331    /// rec20
2332    KilopascalPerBar,
2333    /// millibar per bar
2334    ///
2335    /// rec20
2336    MillibarPerBar,
2337    /// megapascal per bar
2338    ///
2339    /// rec20
2340    MegapascalPerBar,
2341    /// poise per bar
2342    ///
2343    /// rec20
2344    PoisePerBar,
2345    /// pascal per bar
2346    ///
2347    /// rec20
2348    PascalPerBar,
2349    /// milliampere per inch
2350    ///
2351    /// rec20
2352    MilliamperePerInch,
2353    /// kelvin per hour
2354    ///
2355    /// rec20
2356    KelvinPerHour,
2357    /// kelvin per minute
2358    ///
2359    /// rec20
2360    KelvinPerMinute,
2361    /// kelvin per second
2362    ///
2363    /// rec20
2364    KelvinPerSecond,
2365    /// slug
2366    ///
2367    /// rec20
2368    Slug,
2369    /// gram per kelvin
2370    ///
2371    /// rec20
2372    GramPerKelvin,
2373    /// kilogram per kelvin
2374    ///
2375    /// rec20
2376    KilogramPerKelvin,
2377    /// milligram per kelvin
2378    ///
2379    /// rec20
2380    MilligramPerKelvin,
2381    /// pound-force per foot
2382    ///
2383    /// rec20
2384    PoundForcePerFoot,
2385    /// kilogram square centimetre
2386    ///
2387    /// rec20
2388    KilogramSquareCentimetre,
2389    /// kilogram square millimetre
2390    ///
2391    /// rec20
2392    KilogramSquareMillimetre,
2393    /// pound inch squared
2394    ///
2395    /// rec20
2396    PoundInchSquared,
2397    /// pound-force inch
2398    ///
2399    /// rec20
2400    PoundForceInch,
2401    /// pound-force foot per ampere
2402    ///
2403    /// rec20
2404    PoundForceFootPerAmpere,
2405    /// gram per cubic decimetre
2406    ///
2407    /// rec20
2408    GramPerCubicDecimetre,
2409    /// kilogram per kilomol
2410    ///
2411    /// rec20
2412    KilogramPerKilomol,
2413    /// gram per hertz
2414    ///
2415    /// rec20
2416    GramPerHertz,
2417    /// gram per day
2418    ///
2419    /// rec20
2420    GramPerDay,
2421    /// gram per hour
2422    ///
2423    /// rec20
2424    GramPerHour,
2425    /// gram per minute
2426    ///
2427    /// rec20
2428    GramPerMinute,
2429    /// gram per second
2430    ///
2431    /// rec20
2432    GramPerSecond,
2433    /// kilogram per day
2434    ///
2435    /// rec20
2436    KilogramPerDay,
2437    /// kilogram per minute
2438    ///
2439    /// rec20
2440    KilogramPerMinute,
2441    /// milligram per day
2442    ///
2443    /// rec20
2444    MilligramPerDay,
2445    /// milligram per minute
2446    ///
2447    /// rec20
2448    MilligramPerMinute,
2449    /// milligram per second
2450    ///
2451    /// rec20
2452    MilligramPerSecond,
2453    /// gram per day kelvin
2454    ///
2455    /// rec20
2456    GramPerDayKelvin,
2457    /// gram per hour kelvin
2458    ///
2459    /// rec20
2460    GramPerHourKelvin,
2461    /// gram per minute kelvin
2462    ///
2463    /// rec20
2464    GramPerMinuteKelvin,
2465    /// gram per second kelvin
2466    ///
2467    /// rec20
2468    GramPerSecondKelvin,
2469    /// kilogram per day kelvin
2470    ///
2471    /// rec20
2472    KilogramPerDayKelvin,
2473    /// kilogram per hour kelvin
2474    ///
2475    /// rec20
2476    KilogramPerHourKelvin,
2477    /// kilogram per minute kelvin
2478    ///
2479    /// rec20
2480    KilogramPerMinuteKelvin,
2481    /// kilogram per second kelvin
2482    ///
2483    /// rec20
2484    KilogramPerSecondKelvin,
2485    /// milligram per day kelvin
2486    ///
2487    /// rec20
2488    MilligramPerDayKelvin,
2489    /// milligram per hour kelvin
2490    ///
2491    /// rec20
2492    MilligramPerHourKelvin,
2493    /// milligram per minute kelvin
2494    ///
2495    /// rec20
2496    MilligramPerMinuteKelvin,
2497    /// milligram per second kelvin
2498    ///
2499    /// rec20
2500    MilligramPerSecondKelvin,
2501    /// newton per millimetre
2502    ///
2503    /// rec20
2504    NewtonPerMillimetre,
2505    /// pound-force per inch
2506    ///
2507    /// rec20
2508    PoundForcePerInch,
2509    /// rod [unit of distance]
2510    ///
2511    /// rec20
2512    RodUnitDistance,
2513    /// micrometre per kelvin
2514    ///
2515    /// rec20
2516    MicrometrePerKelvin,
2517    /// centimetre per kelvin
2518    ///
2519    /// rec20
2520    CentimetrePerKelvin,
2521    /// metre per kelvin
2522    ///
2523    /// rec20
2524    MetrePerKelvin,
2525    /// millimetre per kelvin
2526    ///
2527    /// rec20
2528    MillimetrePerKelvin,
2529    /// milliohm per metre
2530    ///
2531    /// rec20
2532    MilliohmPerMetre,
2533    /// ohm per mile (statute mile)
2534    ///
2535    /// rec20
2536    OhmPerMileStatuteMile,
2537    /// ohm per kilometre
2538    ///
2539    /// rec20
2540    OhmPerKilometre,
2541    /// milliampere per pound-force per square inch
2542    ///
2543    /// rec20
2544    MilliamperePerPoundForcePerSquareInch,
2545    /// reciprocal bar
2546    ///
2547    /// rec20
2548    ReciprocalBar,
2549    /// milliampere per bar
2550    ///
2551    /// rec20
2552    MilliamperePerBar,
2553    /// degree Celsius per bar
2554    ///
2555    /// rec20
2556    DegreeCelsiusPerBar,
2557    /// kelvin per bar
2558    ///
2559    /// rec20
2560    KelvinPerBar,
2561    /// gram per day bar
2562    ///
2563    /// rec20
2564    GramPerDayBar,
2565    /// gram per hour bar
2566    ///
2567    /// rec20
2568    GramPerHourBar,
2569    /// gram per minute bar
2570    ///
2571    /// rec20
2572    GramPerMinuteBar,
2573    /// gram per second bar
2574    ///
2575    /// rec20
2576    GramPerSecondBar,
2577    /// kilogram per day bar
2578    ///
2579    /// rec20
2580    KilogramPerDayBar,
2581    /// kilogram per hour bar
2582    ///
2583    /// rec20
2584    KilogramPerHourBar,
2585    /// kilogram per minute bar
2586    ///
2587    /// rec20
2588    KilogramPerMinuteBar,
2589    /// kilogram per second bar
2590    ///
2591    /// rec20
2592    KilogramPerSecondBar,
2593    /// milligram per day bar
2594    ///
2595    /// rec20
2596    MilligramPerDayBar,
2597    /// milligram per hour bar
2598    ///
2599    /// rec20
2600    MilligramPerHourBar,
2601    /// milligram per minute bar
2602    ///
2603    /// rec20
2604    MilligramPerMinuteBar,
2605    /// milligram per second bar
2606    ///
2607    /// rec20
2608    MilligramPerSecondBar,
2609    /// gram per bar
2610    ///
2611    /// rec20
2612    GramPerBar,
2613    /// milligram per bar
2614    ///
2615    /// rec20
2616    MilligramPerBar,
2617    /// milliampere per millimetre
2618    ///
2619    /// rec20
2620    MilliamperePerMillimetre,
2621    /// pascal second per kelvin
2622    ///
2623    /// rec20
2624    PascalSecondPerKelvin,
2625    /// inch of water
2626    ///
2627    /// rec20
2628    InchWater,
2629    /// inch of mercury
2630    ///
2631    /// rec20
2632    InchMercury,
2633    /// water horse power
2634    ///
2635    /// rec20
2636    WaterHorsePower,
2637    /// bar per kelvin
2638    ///
2639    /// rec20
2640    BarPerKelvin,
2641    /// hectopascal per kelvin
2642    ///
2643    /// rec20
2644    HectopascalPerKelvin,
2645    /// kilopascal per kelvin
2646    ///
2647    /// rec20
2648    KilopascalPerKelvin,
2649    /// millibar per kelvin
2650    ///
2651    /// rec20
2652    MillibarPerKelvin,
2653    /// megapascal per kelvin
2654    ///
2655    /// rec20
2656    MegapascalPerKelvin,
2657    /// poise per kelvin
2658    ///
2659    /// rec20
2660    PoisePerKelvin,
2661    /// volt per litre minute
2662    ///
2663    /// rec20
2664    VoltPerLitreMinute,
2665    /// newton centimetre
2666    ///
2667    /// rec20
2668    NewtonCentimetre,
2669    /// newton metre per degree
2670    ///
2671    /// rec20
2672    NewtonMetrePerDegree,
2673    /// newton metre per ampere
2674    ///
2675    /// rec20
2676    NewtonMetrePerAmpere,
2677    /// bar litre per second
2678    ///
2679    /// rec20
2680    BarLitrePerSecond,
2681    /// bar cubic metre per second
2682    ///
2683    /// rec20
2684    BarCubicMetrePerSecond,
2685    /// hectopascal litre per second
2686    ///
2687    /// rec20
2688    HectopascalLitrePerSecond,
2689    /// hectopascal cubic metre per second
2690    ///
2691    /// rec20
2692    HectopascalCubicMetrePerSecond,
2693    /// millibar litre per second
2694    ///
2695    /// rec20
2696    MillibarLitrePerSecond,
2697    /// millibar cubic metre per second
2698    ///
2699    /// rec20
2700    MillibarCubicMetrePerSecond,
2701    /// megapascal litre per second
2702    ///
2703    /// rec20
2704    MegapascalLitrePerSecond,
2705    /// megapascal cubic metre per second
2706    ///
2707    /// rec20
2708    MegapascalCubicMetrePerSecond,
2709    /// pascal litre per second
2710    ///
2711    /// rec20
2712    PascalLitrePerSecond,
2713    /// degree Fahrenheit
2714    ///
2715    /// rec20
2716    DegreeFahrenheit,
2717    /// farad
2718    ///
2719    /// rec20
2720    Farad,
2721    /// fibre metre
2722    ///
2723    /// rec20
2724    FibreMetre,
2725    /// thousand cubic foot
2726    ///
2727    /// rec20
2728    ThousandCubicFoot,
2729    /// hundred cubic metre
2730    ///
2731    /// rec20
2732    HundredCubicMetre,
2733    /// micromole
2734    ///
2735    /// rec20
2736    Micromole,
2737    /// failures in time
2738    ///
2739    /// rec20
2740    FailuresInTime,
2741    /// flake ton
2742    ///
2743    /// rec20
2744    FlakeTon,
2745    /// Formazin nephelometric unit
2746    ///
2747    /// Rec20
2748    FormazinNephelometricUnit,
2749    /// foot
2750    ///
2751    /// rec20
2752    Foot,
2753    /// pound per square foot
2754    ///
2755    /// rec20
2756    PoundPerSquareFoot,
2757    /// foot per minute
2758    ///
2759    /// rec20
2760    FootPerMinute,
2761    /// foot per second
2762    ///
2763    /// rec20
2764    FootPerSecond,
2765    /// square foot
2766    ///
2767    /// rec20
2768    SquareFoot,
2769    /// cubic foot
2770    ///
2771    /// rec20
2772    CubicFoot,
2773    /// pascal cubic metre per second
2774    ///
2775    /// rec20
2776    PascalCubicMetrePerSecond,
2777    /// centimetre per bar
2778    ///
2779    /// rec20
2780    CentimetrePerBar,
2781    /// metre per bar
2782    ///
2783    /// rec20
2784    MetrePerBar,
2785    /// millimetre per bar
2786    ///
2787    /// rec20
2788    MillimetrePerBar,
2789    /// square inch per second
2790    ///
2791    /// rec20
2792    SquareInchPerSecond,
2793    /// square metre per second kelvin
2794    ///
2795    /// rec20
2796    SquareMetrePerSecondKelvin,
2797    /// stokes per kelvin
2798    ///
2799    /// rec20
2800    StokesPerKelvin,
2801    /// gram per cubic centimetre bar
2802    ///
2803    /// rec20
2804    GramPerCubicCentimetreBar,
2805    /// gram per cubic decimetre bar
2806    ///
2807    /// rec20
2808    GramPerCubicDecimetreBar,
2809    /// gram per litre bar
2810    ///
2811    /// rec20
2812    GramPerLitreBar,
2813    /// gram per cubic metre bar
2814    ///
2815    /// rec20
2816    GramPerCubicMetreBar,
2817    /// gram per millilitre bar
2818    ///
2819    /// rec20
2820    GramPerMillilitreBar,
2821    /// kilogram per cubic centimetre bar
2822    ///
2823    /// rec20
2824    KilogramPerCubicCentimetreBar,
2825    /// kilogram per litre bar
2826    ///
2827    /// rec20
2828    KilogramPerLitreBar,
2829    /// kilogram per cubic metre bar
2830    ///
2831    /// rec20
2832    KilogramPerCubicMetreBar,
2833    /// newton metre per kilogram
2834    ///
2835    /// rec20
2836    NewtonMetrePerKilogram,
2837    /// US gallon per minute
2838    ///
2839    /// rec20
2840    UsGallonPerMinute,
2841    /// pound-force foot per pound
2842    ///
2843    /// rec20
2844    PoundForceFootPerPound,
2845    /// cup [unit of volume]
2846    ///
2847    /// rec20
2848    CupUnitVolume,
2849    /// peck
2850    ///
2851    /// rec20
2852    Peck,
2853    /// tablespoon (US)
2854    ///
2855    /// rec20
2856    TablespoonUs,
2857    /// teaspoon (US)
2858    ///
2859    /// rec20
2860    TeaspoonUs,
2861    /// stere
2862    ///
2863    /// rec20
2864    Stere,
2865    /// cubic centimetre per kelvin
2866    ///
2867    /// rec20
2868    CubicCentimetrePerKelvin,
2869    /// litre per kelvin
2870    ///
2871    /// rec20
2872    LitrePerKelvin,
2873    /// cubic metre per kelvin
2874    ///
2875    /// rec20
2876    CubicMetrePerKelvin,
2877    /// Imperial gallon per minute
2878    ///
2879    /// rec20
2880    ImperialGallonPerMinute,
2881    /// millilitre per kelvin
2882    ///
2883    /// rec20
2884    MillilitrePerKelvin,
2885    /// kilogram per cubic centimetre
2886    ///
2887    /// rec20
2888    KilogramPerCubicCentimetre,
2889    /// ounce (avoirdupois) per cubic yard
2890    ///
2891    /// rec20
2892    OunceAvoirdupoisPerCubicYard,
2893    /// gram per cubic centimetre kelvin
2894    ///
2895    /// rec20
2896    GramPerCubicCentimetreKelvin,
2897    /// gram per cubic decimetre kelvin
2898    ///
2899    /// rec20
2900    GramPerCubicDecimetreKelvin,
2901    /// gram per litre kelvin
2902    ///
2903    /// rec20
2904    GramPerLitreKelvin,
2905    /// gram per cubic metre kelvin
2906    ///
2907    /// rec20
2908    GramPerCubicMetreKelvin,
2909    /// gram per millilitre kelvin
2910    ///
2911    /// rec20
2912    GramPerMillilitreKelvin,
2913    /// kilogram per cubic centimetre kelvin
2914    ///
2915    /// rec20
2916    KilogramPerCubicCentimetreKelvin,
2917    /// kilogram per litre kelvin
2918    ///
2919    /// rec20
2920    KilogramPerLitreKelvin,
2921    /// kilogram per cubic metre kelvin
2922    ///
2923    /// rec20
2924    KilogramPerCubicMetreKelvin,
2925    /// square metre per second bar
2926    ///
2927    /// rec20
2928    SquareMetrePerSecondBar,
2929    /// microsiemens per centimetre
2930    ///
2931    /// rec20
2932    MicrosiemensPerCentimetre,
2933    /// microsiemens per metre
2934    ///
2935    /// rec20
2936    MicrosiemensPerMetre,
2937    /// nanosiemens per centimetre
2938    ///
2939    /// rec20
2940    NanosiemensPerCentimetre,
2941    /// nanosiemens per metre
2942    ///
2943    /// rec20
2944    NanosiemensPerMetre,
2945    /// stokes per bar
2946    ///
2947    /// rec20
2948    StokesPerBar,
2949    /// cubic centimetre per day
2950    ///
2951    /// rec20
2952    CubicCentimetrePerDay,
2953    /// cubic centimetre per hour
2954    ///
2955    /// rec20
2956    CubicCentimetrePerHour,
2957    /// cubic centimetre per minute
2958    ///
2959    /// rec20
2960    CubicCentimetrePerMinute,
2961    /// gallon (US) per hour
2962    ///
2963    /// rec20
2964    GallonUsPerHour,
2965    /// litre per second
2966    ///
2967    /// rec20
2968    LitrePerSecond,
2969    /// cubic metre per day
2970    ///
2971    /// rec20
2972    CubicMetrePerDay,
2973    /// cubic metre per minute
2974    ///
2975    /// rec20
2976    CubicMetrePerMinute,
2977    /// millilitre per day
2978    ///
2979    /// rec20
2980    MillilitrePerDay,
2981    /// millilitre per hour
2982    ///
2983    /// rec20
2984    MillilitrePerHour,
2985    /// cubic inch per hour
2986    ///
2987    /// rec20
2988    CubicInchPerHour,
2989    /// cubic inch per minute
2990    ///
2991    /// rec20
2992    CubicInchPerMinute,
2993    /// cubic inch per second
2994    ///
2995    /// rec20
2996    CubicInchPerSecond,
2997    /// milliampere per litre minute
2998    ///
2999    /// rec20
3000    MilliamperePerLitreMinute,
3001    /// volt per bar
3002    ///
3003    /// rec20
3004    VoltPerBar,
3005    /// cubic centimetre per day kelvin
3006    ///
3007    /// rec20
3008    CubicCentimetrePerDayKelvin,
3009    /// cubic centimetre per hour kelvin
3010    ///
3011    /// rec20
3012    CubicCentimetrePerHourKelvin,
3013    /// cubic centimetre per minute kelvin
3014    ///
3015    /// rec20
3016    CubicCentimetrePerMinuteKelvin,
3017    /// cubic centimetre per second kelvin
3018    ///
3019    /// rec20
3020    CubicCentimetrePerSecondKelvin,
3021    /// litre per day kelvin
3022    ///
3023    /// rec20
3024    LitrePerDayKelvin,
3025    /// litre per hour kelvin
3026    ///
3027    /// rec20
3028    LitrePerHourKelvin,
3029    /// litre per minute kelvin
3030    ///
3031    /// rec20
3032    LitrePerMinuteKelvin,
3033    /// litre per second kelvin
3034    ///
3035    /// rec20
3036    LitrePerSecondKelvin,
3037    /// cubic metre per day kelvin
3038    ///
3039    /// rec20
3040    CubicMetrePerDayKelvin,
3041    /// cubic metre per hour kelvin
3042    ///
3043    /// rec20
3044    CubicMetrePerHourKelvin,
3045    /// cubic metre per minute kelvin
3046    ///
3047    /// rec20
3048    CubicMetrePerMinuteKelvin,
3049    /// cubic metre per second kelvin
3050    ///
3051    /// rec20
3052    CubicMetrePerSecondKelvin,
3053    /// millilitre per day kelvin
3054    ///
3055    /// rec20
3056    MillilitrePerDayKelvin,
3057    /// millilitre per hour kelvin
3058    ///
3059    /// rec20
3060    MillilitrePerHourKelvin,
3061    /// millilitre per minute kelvin
3062    ///
3063    /// rec20
3064    MillilitrePerMinuteKelvin,
3065    /// millilitre per second kelvin
3066    ///
3067    /// rec20
3068    MillilitrePerSecondKelvin,
3069    /// millimetre to the fourth power
3070    ///
3071    /// rec20
3072    MillimetreToFourthPower,
3073    /// cubic centimetre per day bar
3074    ///
3075    /// rec20
3076    CubicCentimetrePerDayBar,
3077    /// cubic centimetre per hour bar
3078    ///
3079    /// rec20
3080    CubicCentimetrePerHourBar,
3081    /// cubic centimetre per minute bar
3082    ///
3083    /// rec20
3084    CubicCentimetrePerMinuteBar,
3085    /// cubic centimetre per second bar
3086    ///
3087    /// rec20
3088    CubicCentimetrePerSecondBar,
3089    /// litre per day bar
3090    ///
3091    /// rec20
3092    LitrePerDayBar,
3093    /// litre per hour bar
3094    ///
3095    /// rec20
3096    LitrePerHourBar,
3097    /// litre per minute bar
3098    ///
3099    /// rec20
3100    LitrePerMinuteBar,
3101    /// litre per second bar
3102    ///
3103    /// rec20
3104    LitrePerSecondBar,
3105    /// cubic metre per day bar
3106    ///
3107    /// rec20
3108    CubicMetrePerDayBar,
3109    /// cubic metre per hour bar
3110    ///
3111    /// rec20
3112    CubicMetrePerHourBar,
3113    /// cubic metre per minute bar
3114    ///
3115    /// rec20
3116    CubicMetrePerMinuteBar,
3117    /// cubic metre per second bar
3118    ///
3119    /// rec20
3120    CubicMetrePerSecondBar,
3121    /// millilitre per day bar
3122    ///
3123    /// rec20
3124    MillilitrePerDayBar,
3125    /// millilitre per hour bar
3126    ///
3127    /// rec20
3128    MillilitrePerHourBar,
3129    /// millilitre per minute bar
3130    ///
3131    /// rec20
3132    MillilitrePerMinuteBar,
3133    /// millilitre per second bar
3134    ///
3135    /// rec20
3136    MillilitrePerSecondBar,
3137    /// cubic centimetre per bar
3138    ///
3139    /// rec20
3140    CubicCentimetrePerBar,
3141    /// litre per bar
3142    ///
3143    /// rec20
3144    LitrePerBar,
3145    /// cubic metre per bar
3146    ///
3147    /// rec20
3148    CubicMetrePerBar,
3149    /// millilitre per bar
3150    ///
3151    /// rec20
3152    MillilitrePerBar,
3153    /// microhenry per kiloohm
3154    ///
3155    /// rec20
3156    MicrohenryPerKiloohm,
3157    /// microhenry per ohm
3158    ///
3159    /// rec20
3160    MicrohenryPerOhm,
3161    /// gallon (US) per day
3162    ///
3163    /// rec20
3164    GallonUsPerDay,
3165    /// gigabecquerel
3166    ///
3167    /// rec20
3168    Gigabecquerel,
3169    /// gram, dry weight
3170    ///
3171    /// rec20
3172    GramDryWeight,
3173    /// pound per gallon (US)
3174    ///
3175    /// rec20
3176    PoundPerGallonUs,
3177    /// gram per metre (gram per 100 centimetres)
3178    ///
3179    /// rec20
3180    GramPerMetreGramPer100Centimetres,
3181    /// gram of fissile isotope
3182    ///
3183    /// rec20
3184    GramFissileIsotope,
3185    /// great gross
3186    ///
3187    /// rec20
3188    GreatGross,
3189    /// gill (US)
3190    ///
3191    /// rec20
3192    GillUs,
3193    /// gram, including container
3194    ///
3195    /// rec20
3196    GramIncludingContainer,
3197    /// gill (UK)
3198    ///
3199    /// rec20
3200    GillUk,
3201    /// gram, including inner packaging
3202    ///
3203    /// rec20
3204    GramIncludingInnerPackaging,
3205    /// gram per millilitre
3206    ///
3207    /// rec20
3208    GramPerMillilitre,
3209    /// gram per litre
3210    ///
3211    /// rec20
3212    GramPerLitre,
3213    /// dry gallon (US)
3214    ///
3215    /// rec20
3216    DryGallonUs,
3217    /// gallon (UK)
3218    ///
3219    /// rec20
3220    GallonUk,
3221    /// gallon (US)
3222    ///
3223    /// rec20
3224    GallonUs,
3225    /// gram per square metre
3226    ///
3227    /// rec20
3228    GramPerSquareMetre,
3229    /// milligram per square metre
3230    ///
3231    /// rec20
3232    MilligramPerSquareMetre,
3233    /// milligram per cubic metre
3234    ///
3235    /// rec20
3236    MilligramPerCubicMetre,
3237    /// microgram per cubic metre
3238    ///
3239    /// rec20
3240    MicrogramPerCubicMetre,
3241    /// gram
3242    ///
3243    /// rec20
3244    Gram,
3245    /// grain
3246    ///
3247    /// rec20
3248    Grain,
3249    /// gross
3250    ///
3251    /// rec20
3252    Gross,
3253    /// gigajoule
3254    ///
3255    /// rec20
3256    Gigajoule,
3257    /// gigawatt hour
3258    ///
3259    /// rec20
3260    GigawattHour,
3261    /// henry per kiloohm
3262    ///
3263    /// rec20
3264    HenryPerKiloohm,
3265    /// henry per ohm
3266    ///
3267    /// rec20
3268    HenryPerOhm,
3269    /// millihenry per kiloohm
3270    ///
3271    /// rec20
3272    MillihenryPerKiloohm,
3273    /// millihenry per ohm
3274    ///
3275    /// rec20
3276    MillihenryPerOhm,
3277    /// pascal second per bar
3278    ///
3279    /// rec20
3280    PascalSecondPerBar,
3281    /// microbecquerel
3282    ///
3283    /// rec20
3284    Microbecquerel,
3285    /// reciprocal year
3286    ///
3287    /// rec20
3288    ReciprocalYear,
3289    /// reciprocal hour
3290    ///
3291    /// rec20
3292    ReciprocalHour,
3293    /// reciprocal month
3294    ///
3295    /// rec20
3296    ReciprocalMonth,
3297    /// degree Celsius per hour
3298    ///
3299    /// rec20
3300    DegreeCelsiusPerHour,
3301    /// degree Celsius per minute
3302    ///
3303    /// rec20
3304    DegreeCelsiusPerMinute,
3305    /// degree Celsius per second
3306    ///
3307    /// rec20
3308    DegreeCelsiusPerSecond,
3309    /// square centimetre per gram
3310    ///
3311    /// rec20
3312    SquareCentimetrePerGram,
3313    /// square decametre
3314    ///
3315    /// rec20
3316    SquareDecametre,
3317    /// square hectometre
3318    ///
3319    /// rec20
3320    SquareHectometre,
3321    /// cubic hectometre
3322    ///
3323    /// rec20
3324    CubicHectometre,
3325    /// cubic kilometre
3326    ///
3327    /// rec20
3328    CubicKilometre,
3329    /// blank
3330    ///
3331    /// rec20
3332    Blank,
3333    /// volt square inch per pound-force
3334    ///
3335    /// rec20
3336    VoltSquareInchPerPoundForce,
3337    /// volt per inch
3338    ///
3339    /// rec20
3340    VoltPerInch,
3341    /// volt per microsecond
3342    ///
3343    /// rec20
3344    VoltPerMicrosecond,
3345    /// percent per kelvin
3346    ///
3347    /// rec20
3348    PercentPerKelvin,
3349    /// ohm per metre
3350    ///
3351    /// rec20
3352    OhmPerMetre,
3353    /// degree per metre
3354    ///
3355    /// rec20
3356    DegreePerMetre,
3357    /// microfarad per kilometre
3358    ///
3359    /// rec20
3360    MicrofaradPerKilometre,
3361    /// microgram per litre
3362    ///
3363    /// rec20
3364    MicrogramPerLitre,
3365    /// square micrometre (square micron)
3366    ///
3367    /// rec20
3368    SquareMicrometreSquareMicron,
3369    /// ampere per kilogram
3370    ///
3371    /// rec20
3372    AmperePerKilogram,
3373    /// ampere squared second
3374    ///
3375    /// rec20
3376    AmpereSquaredSecond,
3377    /// farad per kilometre
3378    ///
3379    /// rec20
3380    FaradPerKilometre,
3381    /// hertz metre
3382    ///
3383    /// rec20
3384    HertzMetre,
3385    /// kelvin metre per watt
3386    ///
3387    /// rec20
3388    KelvinMetrePerWatt,
3389    /// megaohm per kilometre
3390    ///
3391    /// rec20
3392    MegaohmPerKilometre,
3393    /// megaohm per metre
3394    ///
3395    /// rec20
3396    MegaohmPerMetre,
3397    /// megaampere
3398    ///
3399    /// rec20
3400    Megaampere,
3401    /// megahertz kilometre
3402    ///
3403    /// rec20
3404    MegahertzKilometre,
3405    /// newton per ampere
3406    ///
3407    /// rec20
3408    NewtonPerAmpere,
3409    /// newton metre watt to the power minus 0,5
3410    ///
3411    /// rec20
3412    NewtonMetreWattToPowerMinus05,
3413    /// pascal per metre
3414    ///
3415    /// rec20
3416    PascalPerMetre,
3417    /// siemens per centimetre
3418    ///
3419    /// rec20
3420    SiemensPerCentimetre,
3421    /// teraohm
3422    ///
3423    /// rec20
3424    Teraohm,
3425    /// volt second per metre
3426    ///
3427    /// rec20
3428    VoltSecondPerMetre,
3429    /// volt per second
3430    ///
3431    /// rec20
3432    VoltPerSecond,
3433    /// watt per cubic metre
3434    ///
3435    /// rec20
3436    WattPerCubicMetre,
3437    /// attofarad
3438    ///
3439    /// rec20
3440    Attofarad,
3441    /// centimetre per hour
3442    ///
3443    /// rec20
3444    CentimetrePerHour,
3445    /// reciprocal cubic centimetre
3446    ///
3447    /// rec20
3448    ReciprocalCubicCentimetre,
3449    /// decibel per kilometre
3450    ///
3451    /// rec20
3452    DecibelPerKilometre,
3453    /// decibel per metre
3454    ///
3455    /// rec20
3456    DecibelPerMetre,
3457    /// kilogram per bar
3458    ///
3459    /// rec20
3460    KilogramPerBar,
3461    /// kilogram per cubic decimetre kelvin
3462    ///
3463    /// rec20
3464    KilogramPerCubicDecimetreKelvin,
3465    /// kilogram per cubic decimetre bar
3466    ///
3467    /// rec20
3468    KilogramPerCubicDecimetreBar,
3469    /// kilogram per square metre second
3470    ///
3471    /// rec20
3472    KilogramPerSquareMetreSecond,
3473    /// inch per two pi radiant
3474    ///
3475    /// rec20
3476    InchPerTwoPiRadiant,
3477    /// metre per volt second
3478    ///
3479    /// rec20
3480    MetrePerVoltSecond,
3481    /// square metre per newton
3482    ///
3483    /// rec20
3484    SquareMetrePerNewton,
3485    /// cubic metre per cubic metre
3486    ///
3487    /// rec20
3488    CubicMetrePerCubicMetre,
3489    /// millisiemens per centimetre
3490    ///
3491    /// rec20
3492    MillisiemensPerCentimetre,
3493    /// millivolt per minute
3494    ///
3495    /// rec20
3496    MillivoltPerMinute,
3497    /// milligram per square centimetre
3498    ///
3499    /// rec20
3500    MilligramPerSquareCentimetre,
3501    /// milligram per gram
3502    ///
3503    /// rec20
3504    MilligramPerGram,
3505    /// millilitre per cubic metre
3506    ///
3507    /// rec20
3508    MillilitrePerCubicMetre,
3509    /// millimetre per year
3510    ///
3511    /// rec20
3512    MillimetrePerYear,
3513    /// millimetre per hour
3514    ///
3515    /// rec20
3516    MillimetrePerHour,
3517    /// millimole per gram
3518    ///
3519    /// rec20
3520    MillimolePerGram,
3521    /// picopascal per kilometre
3522    ///
3523    /// rec20
3524    PicopascalPerKilometre,
3525    /// picosecond
3526    ///
3527    /// rec20
3528    Picosecond,
3529    /// percent per month
3530    ///
3531    /// rec20
3532    PercentPerMonth,
3533    /// percent per hectobar
3534    ///
3535    /// rec20
3536    PercentPerHectobar,
3537    /// percent per decakelvin
3538    ///
3539    /// rec20
3540    PercentPerDecakelvin,
3541    /// watt per metre
3542    ///
3543    /// rec20
3544    WattPerMetre,
3545    /// decapascal
3546    ///
3547    /// rec20
3548    Decapascal,
3549    /// gram per millimetre
3550    ///
3551    /// rec20
3552    GramPerMillimetre,
3553    /// module width
3554    ///
3555    /// rec20
3556    ModuleWidth,
3557    /// French gauge
3558    ///
3559    /// rec20
3560    FrenchGauge,
3561    /// rack unit
3562    ///
3563    /// rec20
3564    RackUnit,
3565    /// millimetre per minute
3566    ///
3567    /// rec20
3568    MillimetrePerMinute,
3569    /// big point
3570    ///
3571    /// rec20
3572    BigPoint,
3573    /// litre per kilogram
3574    ///
3575    /// rec20
3576    LitrePerKilogram,
3577    /// gram millimetre
3578    ///
3579    /// rec20
3580    GramMillimetre,
3581    /// reciprocal week
3582    ///
3583    /// rec20
3584    ReciprocalWeek,
3585    /// piece
3586    ///
3587    /// rec20
3588    Piece,
3589    /// megaohm kilometre
3590    ///
3591    /// rec20
3592    MegaohmKilometre,
3593    /// percent per ohm
3594    ///
3595    /// rec20
3596    PercentPerOhm,
3597    /// percent per degree
3598    ///
3599    /// rec20
3600    PercentPerDegree,
3601    /// percent per ten thousand
3602    ///
3603    /// rec20
3604    PercentPerTenThousand,
3605    /// percent per one hundred thousand
3606    ///
3607    /// rec20
3608    PercentPerOneHundredThousand,
3609    /// percent per hundred
3610    ///
3611    /// rec20
3612    PercentPerHundred,
3613    /// percent per thousand
3614    ///
3615    /// rec20
3616    PercentPerThousand,
3617    /// percent per volt
3618    ///
3619    /// rec20
3620    PercentPerVolt,
3621    /// percent per bar
3622    ///
3623    /// rec20
3624    PercentPerBar,
3625    /// percent per inch
3626    ///
3627    /// rec20
3628    PercentPerInch,
3629    /// percent per metre
3630    ///
3631    /// rec20
3632    PercentPerMetre,
3633    /// hank
3634    ///
3635    /// rec20
3636    Hank,
3637    /// Piece Day
3638    ///
3639    /// Rec20
3640    PieceDay,
3641    /// hectobar
3642    ///
3643    /// rec20
3644    Hectobar,
3645    /// hundred boxes
3646    ///
3647    /// rec20
3648    HundredBoxes,
3649    /// hundred count
3650    ///
3651    /// rec20
3652    HundredCount,
3653    /// hundred kilogram, dry weight
3654    ///
3655    /// rec20
3656    HundredKilogramDryWeight,
3657    /// head
3658    ///
3659    /// rec20
3660    Head,
3661    /// hectogram
3662    ///
3663    /// rec20
3664    Hectogram,
3665    /// hundred cubic foot
3666    ///
3667    /// rec20
3668    HundredCubicFoot,
3669    /// hundred international unit
3670    ///
3671    /// rec20
3672    HundredInternationalUnit,
3673    /// hundred kilogram, net mass
3674    ///
3675    /// rec20
3676    HundredKilogramNetMass,
3677    /// hectolitre
3678    ///
3679    /// rec20
3680    Hectolitre,
3681    /// mile per hour (statute mile)
3682    ///
3683    /// rec20
3684    MilePerHourStatuteMile,
3685    /// Piece Month
3686    ///
3687    /// Rec20
3688    PieceMonth,
3689    /// million cubic metre
3690    ///
3691    /// rec20
3692    MillionCubicMetre,
3693    /// hectometre
3694    ///
3695    /// rec20
3696    Hectometre,
3697    /// hectolitre of pure alcohol
3698    ///
3699    /// rec20
3700    HectolitrePureAlcohol,
3701    /// hertz
3702    ///
3703    /// rec20
3704    Hertz,
3705    /// hour
3706    ///
3707    /// rec20
3708    Hour,
3709    /// Piece Week
3710    ///
3711    /// Rec20
3712    PieceWeek,
3713    /// inch pound (pound inch)
3714    ///
3715    /// rec20
3716    InchPoundPoundInch,
3717    /// person
3718    ///
3719    /// rec20
3720    Person,
3721    /// inch
3722    ///
3723    /// rec20
3724    Inch,
3725    /// square inch
3726    ///
3727    /// rec20
3728    SquareInch,
3729    /// cubic inch
3730    ///
3731    /// rec20
3732    CubicInch,
3733    /// international sugar degree
3734    ///
3735    /// rec20
3736    InternationalSugarDegree,
3737    /// inch per second
3738    ///
3739    /// rec20
3740    InchPerSecond,
3741    /// international unit per gram
3742    ///
3743    /// rec20
3744    InternationalUnitPerGram,
3745    /// inch per second squared
3746    ///
3747    /// rec20
3748    InchPerSecondSquared,
3749    /// percent per millimetre
3750    ///
3751    /// rec20
3752    PercentPerMillimetre,
3753    /// per mille per psi
3754    ///
3755    /// rec20
3756    PerMillePerPsi,
3757    /// degree API
3758    ///
3759    /// rec20
3760    DegreeApi,
3761    /// degree Baume (origin scale)
3762    ///
3763    /// rec20
3764    DegreeBaumeOriginScale,
3765    /// degree Baume (US heavy)
3766    ///
3767    /// rec20
3768    DegreeBaumeUsHeavy,
3769    /// degree Baume (US light)
3770    ///
3771    /// rec20
3772    DegreeBaumeUsLight,
3773    /// degree Balling
3774    ///
3775    /// rec20
3776    DegreeBalling,
3777    /// degree Brix
3778    ///
3779    /// rec20
3780    DegreeBrix,
3781    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical)
3782    ///
3783    /// rec20
3784    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical,
3785    /// joule per kilogram
3786    ///
3787    /// rec20
3788    JoulePerKilogram,
3789    /// degree Fahrenheit per kelvin
3790    ///
3791    /// rec20
3792    DegreeFahrenheitPerKelvin,
3793    /// degree Fahrenheit per bar
3794    ///
3795    /// rec20
3796    DegreeFahrenheitPerBar,
3797    /// degree Fahrenheit hour square foot per British thermal unit (international table)
3798    ///
3799    /// rec20
3800    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable,
3801    /// degree Fahrenheit per hour
3802    ///
3803    /// rec20
3804    DegreeFahrenheitPerHour,
3805    /// degree Fahrenheit per minute
3806    ///
3807    /// rec20
3808    DegreeFahrenheitPerMinute,
3809    /// degree Fahrenheit per second
3810    ///
3811    /// rec20
3812    DegreeFahrenheitPerSecond,
3813    /// reciprocal degree Fahrenheit
3814    ///
3815    /// rec20
3816    ReciprocalDegreeFahrenheit,
3817    /// degree Oechsle
3818    ///
3819    /// rec20
3820    DegreeOechsle,
3821    /// degree Rankine per hour
3822    ///
3823    /// rec20
3824    DegreeRankinePerHour,
3825    /// degree Rankine per minute
3826    ///
3827    /// rec20
3828    DegreeRankinePerMinute,
3829    /// degree Rankine per second
3830    ///
3831    /// rec20
3832    DegreeRankinePerSecond,
3833    /// degree Twaddell
3834    ///
3835    /// rec20
3836    DegreeTwaddell,
3837    /// micropoise
3838    ///
3839    /// rec20
3840    Micropoise,
3841    /// microgram per kilogram
3842    ///
3843    /// rec20
3844    MicrogramPerKilogram,
3845    /// microgram per cubic metre kelvin
3846    ///
3847    /// rec20
3848    MicrogramPerCubicMetreKelvin,
3849    /// microgram per cubic metre bar
3850    ///
3851    /// rec20
3852    MicrogramPerCubicMetreBar,
3853    /// microlitre per litre
3854    ///
3855    /// rec20
3856    MicrolitrePerLitre,
3857    /// baud
3858    ///
3859    /// rec20
3860    Baud,
3861    /// British thermal unit (mean)
3862    ///
3863    /// rec20
3864    BritishThermalUnitMean,
3865    /// British thermal unit (international table) foot per hour square foot degree Fahrenheit
3866    ///
3867    /// rec20
3868    BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
3869    /// British thermal unit (international table) inch per hour square foot degree Fahrenheit
3870    ///
3871    /// rec20
3872    BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
3873    /// British thermal unit (international table) inch per second square foot degree Fahrenheit
3874    ///
3875    /// rec20
3876    BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
3877    /// British thermal unit (international table) per pound degree Fahrenheit
3878    ///
3879    /// rec20
3880    BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit,
3881    /// British thermal unit (international table) per minute
3882    ///
3883    /// rec20
3884    BritishThermalUnitInternationalTablePerMinute,
3885    /// British thermal unit (international table) per second
3886    ///
3887    /// rec20
3888    BritishThermalUnitInternationalTablePerSecond,
3889    /// British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit
3890    ///
3891    /// rec20
3892    BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit,
3893    /// British thermal unit (thermochemical) per hour
3894    ///
3895    /// rec20
3896    BritishThermalUnitThermochemicalPerHour,
3897    /// British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit
3898    ///
3899    /// rec20
3900    BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit,
3901    /// British thermal unit (thermochemical) inch per second square foot degree Fahrenheit
3902    ///
3903    /// rec20
3904    BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit,
3905    /// British thermal unit (thermochemical) per pound degree Fahrenheit
3906    ///
3907    /// rec20
3908    BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit,
3909    /// British thermal unit (thermochemical) per minute
3910    ///
3911    /// rec20
3912    BritishThermalUnitThermochemicalPerMinute,
3913    /// British thermal unit (thermochemical) per second
3914    ///
3915    /// rec20
3916    BritishThermalUnitThermochemicalPerSecond,
3917    /// coulomb square metre per kilogram
3918    ///
3919    /// rec20
3920    CoulombSquareMetrePerKilogram,
3921    /// megabaud
3922    ///
3923    /// rec20
3924    Megabaud,
3925    /// watt second
3926    ///
3927    /// rec20
3928    WattSecond,
3929    /// bar per bar
3930    ///
3931    /// rec20
3932    BarPerBar,
3933    /// barrel (UK petroleum)
3934    ///
3935    /// rec20
3936    BarrelUkPetroleum,
3937    /// barrel (UK petroleum) per minute
3938    ///
3939    /// rec20
3940    BarrelUkPetroleumPerMinute,
3941    /// barrel (UK petroleum) per day
3942    ///
3943    /// rec20
3944    BarrelUkPetroleumPerDay,
3945    /// barrel (UK petroleum) per hour
3946    ///
3947    /// rec20
3948    BarrelUkPetroleumPerHour,
3949    /// barrel (UK petroleum) per second
3950    ///
3951    /// rec20
3952    BarrelUkPetroleumPerSecond,
3953    /// barrel (US petroleum) per hour
3954    ///
3955    /// rec20
3956    BarrelUsPetroleumPerHour,
3957    /// barrel (US petroleum) per second
3958    ///
3959    /// rec20
3960    BarrelUsPetroleumPerSecond,
3961    /// bushel (UK) per day
3962    ///
3963    /// rec20
3964    BushelUkPerDay,
3965    /// bushel (UK) per hour
3966    ///
3967    /// rec20
3968    BushelUkPerHour,
3969    /// bushel (UK) per minute
3970    ///
3971    /// rec20
3972    BushelUkPerMinute,
3973    /// bushel (UK) per second
3974    ///
3975    /// rec20
3976    BushelUkPerSecond,
3977    /// bushel (US dry) per day
3978    ///
3979    /// rec20
3980    BushelUsDryPerDay,
3981    /// bushel (US dry) per hour
3982    ///
3983    /// rec20
3984    BushelUsDryPerHour,
3985    /// bushel (US dry) per minute
3986    ///
3987    /// rec20
3988    BushelUsDryPerMinute,
3989    /// bushel (US dry) per second
3990    ///
3991    /// rec20
3992    BushelUsDryPerSecond,
3993    /// centinewton metre
3994    ///
3995    /// rec20
3996    CentinewtonMetre,
3997    /// centipoise per kelvin
3998    ///
3999    /// rec20
4000    CentipoisePerKelvin,
4001    /// centipoise per bar
4002    ///
4003    /// rec20
4004    CentipoisePerBar,
4005    /// calorie (mean)
4006    ///
4007    /// rec20
4008    CalorieMean,
4009    /// calorie (international table) per gram degree Celsius
4010    ///
4011    /// rec20
4012    CalorieInternationalTablePerGramDegreeCelsius,
4013    /// calorie (thermochemical) per centimetre second degree Celsius
4014    ///
4015    /// rec20
4016    CalorieThermochemicalPerCentimetreSecondDegreeCelsius,
4017    /// calorie (thermochemical) per gram degree Celsius
4018    ///
4019    /// rec20
4020    CalorieThermochemicalPerGramDegreeCelsius,
4021    /// calorie (thermochemical) per minute
4022    ///
4023    /// rec20
4024    CalorieThermochemicalPerMinute,
4025    /// calorie (thermochemical) per second
4026    ///
4027    /// rec20
4028    CalorieThermochemicalPerSecond,
4029    /// clo
4030    ///
4031    /// rec20
4032    Clo,
4033    /// centimetre per second kelvin
4034    ///
4035    /// rec20
4036    CentimetrePerSecondKelvin,
4037    /// centimetre per second bar
4038    ///
4039    /// rec20
4040    CentimetrePerSecondBar,
4041    /// cubic centimetre per cubic metre
4042    ///
4043    /// rec20
4044    CubicCentimetrePerCubicMetre,
4045    /// cubic decimetre per day
4046    ///
4047    /// rec20
4048    CubicDecimetrePerDay,
4049    /// cubic decimetre per cubic metre
4050    ///
4051    /// rec20
4052    CubicDecimetrePerCubicMetre,
4053    /// cubic decimetre per minute
4054    ///
4055    /// rec20
4056    CubicDecimetrePerMinute,
4057    /// cubic decimetre per second
4058    ///
4059    /// rec20
4060    CubicDecimetrePerSecond,
4061    /// ounce (UK fluid) per day
4062    ///
4063    /// rec20
4064    OunceUkFluidPerDay,
4065    /// ounce (UK fluid) per hour
4066    ///
4067    /// rec20
4068    OunceUkFluidPerHour,
4069    /// ounce (UK fluid) per minute
4070    ///
4071    /// rec20
4072    OunceUkFluidPerMinute,
4073    /// ounce (UK fluid) per second
4074    ///
4075    /// rec20
4076    OunceUkFluidPerSecond,
4077    /// ounce (US fluid) per day
4078    ///
4079    /// rec20
4080    OunceUsFluidPerDay,
4081    /// joule per kelvin
4082    ///
4083    /// rec20
4084    JoulePerKelvin,
4085    /// megajoule per kilogram
4086    ///
4087    /// rec20
4088    MegajoulePerKilogram,
4089    /// megajoule per cubic metre
4090    ///
4091    /// rec20
4092    MegajoulePerCubicMetre,
4093    /// pipeline joint
4094    ///
4095    /// rec20
4096    PipelineJoint,
4097    /// joule
4098    ///
4099    /// rec20
4100    Joule,
4101    /// hundred metre
4102    ///
4103    /// rec20
4104    HundredMetre,
4105    /// number of jewels
4106    ///
4107    /// rec20
4108    NumberJewels,
4109    /// kilowatt demand
4110    ///
4111    /// rec20
4112    KilowattDemand,
4113    /// ounce (US fluid) per hour
4114    ///
4115    /// rec20
4116    OunceUsFluidPerHour,
4117    /// ounce (US fluid) per minute
4118    ///
4119    /// rec20
4120    OunceUsFluidPerMinute,
4121    /// ounce (US fluid) per second
4122    ///
4123    /// rec20
4124    OunceUsFluidPerSecond,
4125    /// foot per degree Fahrenheit
4126    ///
4127    /// rec20
4128    FootPerDegreeFahrenheit,
4129    /// foot per hour
4130    ///
4131    /// rec20
4132    FootPerHour,
4133    /// foot pound-force per hour
4134    ///
4135    /// rec20
4136    FootPoundForcePerHour,
4137    /// foot pound-force per minute
4138    ///
4139    /// rec20
4140    FootPoundForcePerMinute,
4141    /// foot per psi
4142    ///
4143    /// rec20
4144    FootPerPsi,
4145    /// foot per second degree Fahrenheit
4146    ///
4147    /// rec20
4148    FootPerSecondDegreeFahrenheit,
4149    /// foot per second psi
4150    ///
4151    /// rec20
4152    FootPerSecondPsi,
4153    /// kilovolt ampere reactive demand
4154    ///
4155    /// rec20
4156    KilovoltAmpereReactiveDemand,
4157    /// reciprocal cubic foot
4158    ///
4159    /// rec20
4160    ReciprocalCubicFoot,
4161    /// cubic foot per degree Fahrenheit
4162    ///
4163    /// rec20
4164    CubicFootPerDegreeFahrenheit,
4165    /// cubic foot per day
4166    ///
4167    /// rec20
4168    CubicFootPerDay,
4169    /// cubic foot per psi
4170    ///
4171    /// rec20
4172    CubicFootPerPsi,
4173    /// gallon (UK) per day
4174    ///
4175    /// rec20
4176    GallonUkPerDay,
4177    /// gallon (UK) per hour
4178    ///
4179    /// rec20
4180    GallonUkPerHour,
4181    /// gallon (UK) per second
4182    ///
4183    /// rec20
4184    GallonUkPerSecond,
4185    /// kilovolt ampere reactive hour
4186    ///
4187    /// rec20
4188    KilovoltAmpereReactiveHour,
4189    /// gallon (US liquid) per second
4190    ///
4191    /// rec20
4192    GallonUsLiquidPerSecond,
4193    /// gram-force per square centimetre
4194    ///
4195    /// rec20
4196    GramForcePerSquareCentimetre,
4197    /// gill (UK) per day
4198    ///
4199    /// rec20
4200    GillUkPerDay,
4201    /// gill (UK) per hour
4202    ///
4203    /// rec20
4204    GillUkPerHour,
4205    /// gill (UK) per minute
4206    ///
4207    /// rec20
4208    GillUkPerMinute,
4209    /// gill (UK) per second
4210    ///
4211    /// rec20
4212    GillUkPerSecond,
4213    /// gill (US) per day
4214    ///
4215    /// rec20
4216    GillUsPerDay,
4217    /// gill (US) per hour
4218    ///
4219    /// rec20
4220    GillUsPerHour,
4221    /// gill (US) per minute
4222    ///
4223    /// rec20
4224    GillUsPerMinute,
4225    /// gill (US) per second
4226    ///
4227    /// rec20
4228    GillUsPerSecond,
4229    /// standard acceleration of free fall
4230    ///
4231    /// rec20
4232    StandardAccelerationFreeFall,
4233    /// grain per gallon (US)
4234    ///
4235    /// rec20
4236    GrainPerGallonUs,
4237    /// horsepower (boiler)
4238    ///
4239    /// rec20
4240    HorsepowerBoiler,
4241    /// horsepower (electric)
4242    ///
4243    /// rec20
4244    HorsepowerElectric,
4245    /// inch per degree Fahrenheit
4246    ///
4247    /// rec20
4248    InchPerDegreeFahrenheit,
4249    /// inch per psi
4250    ///
4251    /// rec20
4252    InchPerPsi,
4253    /// inch per second degree Fahrenheit
4254    ///
4255    /// rec20
4256    InchPerSecondDegreeFahrenheit,
4257    /// inch per second psi
4258    ///
4259    /// rec20
4260    InchPerSecondPsi,
4261    /// reciprocal cubic inch
4262    ///
4263    /// rec20
4264    ReciprocalCubicInch,
4265    /// kilobaud
4266    ///
4267    /// rec20
4268    Kilobaud,
4269    /// kilocalorie (mean)
4270    ///
4271    /// rec20
4272    KilocalorieMean,
4273    /// kilocalorie (international table) per hour metre degree Celsius
4274    ///
4275    /// rec20
4276    KilocalorieInternationalTablePerHourMetreDegreeCelsius,
4277    /// kilocalorie (thermochemical)
4278    ///
4279    /// rec20
4280    KilocalorieThermochemical,
4281    /// kilocalorie (thermochemical) per minute
4282    ///
4283    /// rec20
4284    KilocalorieThermochemicalPerMinute,
4285    /// kilocalorie (thermochemical) per second
4286    ///
4287    /// rec20
4288    KilocalorieThermochemicalPerSecond,
4289    /// kilomole per hour
4290    ///
4291    /// rec20
4292    KilomolePerHour,
4293    /// kilomole per cubic metre kelvin
4294    ///
4295    /// rec20
4296    KilomolePerCubicMetreKelvin,
4297    /// kilolitre
4298    ///
4299    /// rec20
4300    Kilolitre,
4301    /// kilomole per cubic metre bar
4302    ///
4303    /// rec20
4304    KilomolePerCubicMetreBar,
4305    /// kilomole per minute
4306    ///
4307    /// rec20
4308    KilomolePerMinute,
4309    /// litre per litre
4310    ///
4311    /// rec20
4312    LitrePerLitre,
4313    /// reciprocal litre
4314    ///
4315    /// rec20
4316    ReciprocalLitre,
4317    /// pound (avoirdupois) per degree Fahrenheit
4318    ///
4319    /// rec20
4320    PoundAvoirdupoisPerDegreeFahrenheit,
4321    /// pound (avoirdupois) square foot
4322    ///
4323    /// rec20
4324    PoundAvoirdupoisSquareFoot,
4325    /// pound (avoirdupois) per day
4326    ///
4327    /// rec20
4328    PoundAvoirdupoisPerDay,
4329    /// pound per foot hour
4330    ///
4331    /// rec20
4332    PoundPerFootHour,
4333    /// pound per foot second
4334    ///
4335    /// rec20
4336    PoundPerFootSecond,
4337    /// pound (avoirdupois) per cubic foot degree Fahrenheit
4338    ///
4339    /// rec20
4340    PoundAvoirdupoisPerCubicFootDegreeFahrenheit,
4341    /// pound (avoirdupois) per cubic foot psi
4342    ///
4343    /// rec20
4344    PoundAvoirdupoisPerCubicFootPsi,
4345    /// pound (avoirdupois) per gallon (UK)
4346    ///
4347    /// rec20
4348    PoundAvoirdupoisPerGallonUk,
4349    /// pound (avoirdupois) per hour degree Fahrenheit
4350    ///
4351    /// rec20
4352    PoundAvoirdupoisPerHourDegreeFahrenheit,
4353    /// pound (avoirdupois) per hour psi
4354    ///
4355    /// rec20
4356    PoundAvoirdupoisPerHourPsi,
4357    /// pound (avoirdupois) per cubic inch degree Fahrenheit
4358    ///
4359    /// rec20
4360    PoundAvoirdupoisPerCubicInchDegreeFahrenheit,
4361    /// pound (avoirdupois) per cubic inch psi
4362    ///
4363    /// rec20
4364    PoundAvoirdupoisPerCubicInchPsi,
4365    /// pound (avoirdupois) per psi
4366    ///
4367    /// rec20
4368    PoundAvoirdupoisPerPsi,
4369    /// pound (avoirdupois) per minute
4370    ///
4371    /// rec20
4372    PoundAvoirdupoisPerMinute,
4373    /// pound (avoirdupois) per minute degree Fahrenheit
4374    ///
4375    /// rec20
4376    PoundAvoirdupoisPerMinuteDegreeFahrenheit,
4377    /// pound (avoirdupois) per minute psi
4378    ///
4379    /// rec20
4380    PoundAvoirdupoisPerMinutePsi,
4381    /// pound (avoirdupois) per second
4382    ///
4383    /// rec20
4384    PoundAvoirdupoisPerSecond,
4385    /// pound (avoirdupois) per second degree Fahrenheit
4386    ///
4387    /// rec20
4388    PoundAvoirdupoisPerSecondDegreeFahrenheit,
4389    /// pound (avoirdupois) per second psi
4390    ///
4391    /// rec20
4392    PoundAvoirdupoisPerSecondPsi,
4393    /// pound per cubic yard
4394    ///
4395    /// rec20
4396    PoundPerCubicYard,
4397    /// pound-force per square foot
4398    ///
4399    /// rec20
4400    PoundForcePerSquareFoot,
4401    /// pound-force per square inch degree Fahrenheit
4402    ///
4403    /// rec20
4404    PoundForcePerSquareInchDegreeFahrenheit,
4405    /// psi cubic inch per second
4406    ///
4407    /// rec20
4408    PsiCubicInchPerSecond,
4409    /// psi litre per second
4410    ///
4411    /// rec20
4412    PsiLitrePerSecond,
4413    /// psi cubic metre per second
4414    ///
4415    /// rec20
4416    PsiCubicMetrePerSecond,
4417    /// psi cubic yard per second
4418    ///
4419    /// rec20
4420    PsiCubicYardPerSecond,
4421    /// pound-force second per square foot
4422    ///
4423    /// rec20
4424    PoundForceSecondPerSquareFoot,
4425    /// pound-force second per square inch
4426    ///
4427    /// rec20
4428    PoundForceSecondPerSquareInch,
4429    /// reciprocal psi
4430    ///
4431    /// rec20
4432    ReciprocalPsi,
4433    /// quart (UK liquid) per day
4434    ///
4435    /// rec20
4436    QuartUkLiquidPerDay,
4437    /// quart (UK liquid) per hour
4438    ///
4439    /// rec20
4440    QuartUkLiquidPerHour,
4441    /// quart (UK liquid) per minute
4442    ///
4443    /// rec20
4444    QuartUkLiquidPerMinute,
4445    /// quart (UK liquid) per second
4446    ///
4447    /// rec20
4448    QuartUkLiquidPerSecond,
4449    /// quart (US liquid) per day
4450    ///
4451    /// rec20
4452    QuartUsLiquidPerDay,
4453    /// quart (US liquid) per hour
4454    ///
4455    /// rec20
4456    QuartUsLiquidPerHour,
4457    /// cake
4458    ///
4459    /// rec20
4460    Cake,
4461    /// katal
4462    ///
4463    /// rec20
4464    Katal,
4465    /// kilocharacter
4466    ///
4467    /// rec20
4468    Kilocharacter,
4469    /// kilobar
4470    ///
4471    /// rec20
4472    Kilobar,
4473    /// kilogram of choline chloride
4474    ///
4475    /// rec20
4476    KilogramCholineChloride,
4477    /// kilogram drained net weight
4478    ///
4479    /// rec20
4480    KilogramDrainedNetWeight,
4481    /// kelvin
4482    ///
4483    /// rec20
4484    Kelvin,
4485    /// kilogram
4486    ///
4487    /// rec20
4488    Kilogram,
4489    /// kilogram per second
4490    ///
4491    /// rec20
4492    KilogramPerSecond,
4493    /// kilogram of hydrogen peroxide
4494    ///
4495    /// rec20
4496    KilogramHydrogenPeroxide,
4497    /// kilohertz
4498    ///
4499    /// rec20
4500    Kilohertz,
4501    /// kilogram per millimetre width
4502    ///
4503    /// rec20
4504    KilogramPerMillimetreWidth,
4505    /// kilogram, including container
4506    ///
4507    /// rec20
4508    KilogramIncludingContainer,
4509    /// kilogram, including inner packaging
4510    ///
4511    /// rec20
4512    KilogramIncludingInnerPackaging,
4513    /// kilosegment
4514    ///
4515    /// rec20
4516    Kilosegment,
4517    /// kilojoule
4518    ///
4519    /// rec20
4520    Kilojoule,
4521    /// kilogram per metre
4522    ///
4523    /// rec20
4524    KilogramPerMetre,
4525    /// lactic dry material percentage
4526    ///
4527    /// rec20
4528    LacticDryMaterialPercentage,
4529    /// kilolux
4530    ///
4531    /// rec20
4532    Kilolux,
4533    /// kilogram of methylamine
4534    ///
4535    /// rec20
4536    KilogramMethylamine,
4537    /// kilometre per hour
4538    ///
4539    /// rec20
4540    KilometrePerHour,
4541    /// square kilometre
4542    ///
4543    /// rec20
4544    SquareKilometre,
4545    /// kilogram per cubic metre
4546    ///
4547    /// rec20
4548    KilogramPerCubicMetre,
4549    /// kilometre
4550    ///
4551    /// rec20
4552    Kilometre,
4553    /// kilogram of nitrogen
4554    ///
4555    /// rec20
4556    KilogramNitrogen,
4557    /// kilonewton per square metre
4558    ///
4559    /// rec20
4560    KilonewtonPerSquareMetre,
4561    /// kilogram named substance
4562    ///
4563    /// rec20
4564    KilogramNamedSubstance,
4565    /// knot
4566    ///
4567    /// rec20
4568    Knot,
4569    /// milliequivalence caustic potash per gram of product
4570    ///
4571    /// rec20
4572    MilliequivalenceCausticPotashPerGramProduct,
4573    /// kilopascal
4574    ///
4575    /// rec20
4576    Kilopascal,
4577    /// kilogram of potassium hydroxide (caustic potash)
4578    ///
4579    /// rec20
4580    KilogramPotassiumHydroxideCausticPotash,
4581    /// kilogram of potassium oxide
4582    ///
4583    /// rec20
4584    KilogramPotassiumOxide,
4585    /// kilogram of phosphorus pentoxide (phosphoric anhydride)
4586    ///
4587    /// rec20
4588    KilogramPhosphorusPentoxidePhosphoricAnhydride,
4589    /// kiloroentgen
4590    ///
4591    /// rec20
4592    Kiloroentgen,
4593    /// kilogram of substance 90 % dry
4594    ///
4595    /// rec20
4596    KilogramSubstance90Dry,
4597    /// kilogram of sodium hydroxide (caustic soda)
4598    ///
4599    /// rec20
4600    KilogramSodiumHydroxideCausticSoda,
4601    /// kit
4602    ///
4603    /// rec20
4604    Kit,
4605    /// kilotonne
4606    ///
4607    /// rec20
4608    Kilotonne,
4609    /// kilogram of uranium
4610    ///
4611    /// rec20
4612    KilogramUranium,
4613    /// kilovolt - ampere
4614    ///
4615    /// rec20
4616    KilovoltAmpere,
4617    /// kilovar
4618    ///
4619    /// rec20
4620    Kilovar,
4621    /// kilovolt
4622    ///
4623    /// rec20
4624    Kilovolt,
4625    /// kilogram per millimetre
4626    ///
4627    /// rec20
4628    KilogramPerMillimetre,
4629    /// kilowatt hour
4630    ///
4631    /// rec20
4632    KilowattHour,
4633    /// Kilowatt hour per normalized cubic metre
4634    ///
4635    /// rec20
4636    KilowattHourPerNormalizedCubicMetre,
4637    /// kilogram of tungsten trioxide
4638    ///
4639    /// rec20
4640    KilogramTungstenTrioxide,
4641    /// Kilowatt hour per standard cubic metre
4642    ///
4643    /// rec20
4644    KilowattHourPerStandardCubicMetre,
4645    /// kilowatt
4646    ///
4647    /// rec20
4648    Kilowatt,
4649    /// kilowatt year
4650    ///
4651    /// Rec20
4652    KilowattYear,
4653    /// millilitre per kilogram
4654    ///
4655    /// rec20
4656    MillilitrePerKilogram,
4657    /// quart (US liquid) per minute
4658    ///
4659    /// rec20
4660    QuartUsLiquidPerMinute,
4661    /// quart (US liquid) per second
4662    ///
4663    /// rec20
4664    QuartUsLiquidPerSecond,
4665    /// metre per second kelvin
4666    ///
4667    /// rec20
4668    MetrePerSecondKelvin,
4669    /// metre per second bar
4670    ///
4671    /// rec20
4672    MetrePerSecondBar,
4673    /// square metre hour degree Celsius per kilocalorie (international table)
4674    ///
4675    /// rec20
4676    SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable,
4677    /// millipascal second per kelvin
4678    ///
4679    /// rec20
4680    MillipascalSecondPerKelvin,
4681    /// millipascal second per bar
4682    ///
4683    /// rec20
4684    MillipascalSecondPerBar,
4685    /// milligram per cubic metre kelvin
4686    ///
4687    /// rec20
4688    MilligramPerCubicMetreKelvin,
4689    /// milligram per cubic metre bar
4690    ///
4691    /// rec20
4692    MilligramPerCubicMetreBar,
4693    /// millilitre per litre
4694    ///
4695    /// rec20
4696    MillilitrePerLitre,
4697    /// litre per minute
4698    ///
4699    /// rec20
4700    LitrePerMinute,
4701    /// reciprocal cubic millimetre
4702    ///
4703    /// rec20
4704    ReciprocalCubicMillimetre,
4705    /// cubic millimetre per cubic metre
4706    ///
4707    /// rec20
4708    CubicMillimetrePerCubicMetre,
4709    /// mole per hour
4710    ///
4711    /// rec20
4712    MolePerHour,
4713    /// mole per kilogram kelvin
4714    ///
4715    /// rec20
4716    MolePerKilogramKelvin,
4717    /// mole per kilogram bar
4718    ///
4719    /// rec20
4720    MolePerKilogramBar,
4721    /// mole per litre kelvin
4722    ///
4723    /// rec20
4724    MolePerLitreKelvin,
4725    /// mole per litre bar
4726    ///
4727    /// rec20
4728    MolePerLitreBar,
4729    /// mole per cubic metre kelvin
4730    ///
4731    /// rec20
4732    MolePerCubicMetreKelvin,
4733    /// mole per cubic metre bar
4734    ///
4735    /// rec20
4736    MolePerCubicMetreBar,
4737    /// mole per minute
4738    ///
4739    /// rec20
4740    MolePerMinute,
4741    /// milliroentgen aequivalent men
4742    ///
4743    /// rec20
4744    MilliroentgenAequivalentMen,
4745    /// nanogram per kilogram
4746    ///
4747    /// rec20
4748    NanogramPerKilogram,
4749    /// ounce (avoirdupois) per day
4750    ///
4751    /// rec20
4752    OunceAvoirdupoisPerDay,
4753    /// ounce (avoirdupois) per hour
4754    ///
4755    /// rec20
4756    OunceAvoirdupoisPerHour,
4757    /// ounce (avoirdupois) per minute
4758    ///
4759    /// rec20
4760    OunceAvoirdupoisPerMinute,
4761    /// ounce (avoirdupois) per second
4762    ///
4763    /// rec20
4764    OunceAvoirdupoisPerSecond,
4765    /// ounce (avoirdupois) per gallon (UK)
4766    ///
4767    /// rec20
4768    OunceAvoirdupoisPerGallonUk,
4769    /// ounce (avoirdupois) per gallon (US)
4770    ///
4771    /// rec20
4772    OunceAvoirdupoisPerGallonUs,
4773    /// ounce (avoirdupois) per cubic inch
4774    ///
4775    /// rec20
4776    OunceAvoirdupoisPerCubicInch,
4777    /// ounce (avoirdupois)-force
4778    ///
4779    /// rec20
4780    OunceAvoirdupoisForce,
4781    /// ounce (avoirdupois)-force inch
4782    ///
4783    /// rec20
4784    OunceAvoirdupoisForceInch,
4785    /// picosiemens per metre
4786    ///
4787    /// rec20
4788    PicosiemensPerMetre,
4789    /// peck (UK)
4790    ///
4791    /// rec20
4792    PeckUk,
4793    /// peck (UK) per day
4794    ///
4795    /// rec20
4796    PeckUkPerDay,
4797    /// peck (UK) per hour
4798    ///
4799    /// rec20
4800    PeckUkPerHour,
4801    /// peck (UK) per minute
4802    ///
4803    /// rec20
4804    PeckUkPerMinute,
4805    /// peck (UK) per second
4806    ///
4807    /// rec20
4808    PeckUkPerSecond,
4809    /// peck (US dry) per day
4810    ///
4811    /// rec20
4812    PeckUsDryPerDay,
4813    /// peck (US dry) per hour
4814    ///
4815    /// rec20
4816    PeckUsDryPerHour,
4817    /// peck (US dry) per minute
4818    ///
4819    /// rec20
4820    PeckUsDryPerMinute,
4821    /// peck (US dry) per second
4822    ///
4823    /// rec20
4824    PeckUsDryPerSecond,
4825    /// psi per psi
4826    ///
4827    /// rec20
4828    PsiPerPsi,
4829    /// pint (UK) per day
4830    ///
4831    /// rec20
4832    PintUkPerDay,
4833    /// pint (UK) per hour
4834    ///
4835    /// rec20
4836    PintUkPerHour,
4837    /// pint (UK) per minute
4838    ///
4839    /// rec20
4840    PintUkPerMinute,
4841    /// pint (UK) per second
4842    ///
4843    /// rec20
4844    PintUkPerSecond,
4845    /// pint (US liquid) per day
4846    ///
4847    /// rec20
4848    PintUsLiquidPerDay,
4849    /// pint (US liquid) per hour
4850    ///
4851    /// rec20
4852    PintUsLiquidPerHour,
4853    /// pint (US liquid) per minute
4854    ///
4855    /// rec20
4856    PintUsLiquidPerMinute,
4857    /// pint (US liquid) per second
4858    ///
4859    /// rec20
4860    PintUsLiquidPerSecond,
4861    /// slug per day
4862    ///
4863    /// rec20
4864    SlugPerDay,
4865    /// slug per foot second
4866    ///
4867    /// rec20
4868    SlugPerFootSecond,
4869    /// slug per cubic foot
4870    ///
4871    /// rec20
4872    SlugPerCubicFoot,
4873    /// slug per hour
4874    ///
4875    /// rec20
4876    SlugPerHour,
4877    /// slug per minute
4878    ///
4879    /// rec20
4880    SlugPerMinute,
4881    /// slug per second
4882    ///
4883    /// rec20
4884    SlugPerSecond,
4885    /// tonne per kelvin
4886    ///
4887    /// rec20
4888    TonnePerKelvin,
4889    /// tonne per bar
4890    ///
4891    /// rec20
4892    TonnePerBar,
4893    /// tonne per day
4894    ///
4895    /// rec20
4896    TonnePerDay,
4897    /// tonne per day kelvin
4898    ///
4899    /// rec20
4900    TonnePerDayKelvin,
4901    /// tonne per day bar
4902    ///
4903    /// rec20
4904    TonnePerDayBar,
4905    /// tonne per hour kelvin
4906    ///
4907    /// rec20
4908    TonnePerHourKelvin,
4909    /// tonne per hour bar
4910    ///
4911    /// rec20
4912    TonnePerHourBar,
4913    /// tonne per cubic metre kelvin
4914    ///
4915    /// rec20
4916    TonnePerCubicMetreKelvin,
4917    /// tonne per cubic metre bar
4918    ///
4919    /// rec20
4920    TonnePerCubicMetreBar,
4921    /// tonne per minute
4922    ///
4923    /// rec20
4924    TonnePerMinute,
4925    /// tonne per minute kelvin
4926    ///
4927    /// rec20
4928    TonnePerMinuteKelvin,
4929    /// tonne per minute bar
4930    ///
4931    /// rec20
4932    TonnePerMinuteBar,
4933    /// tonne per second
4934    ///
4935    /// rec20
4936    TonnePerSecond,
4937    /// tonne per second kelvin
4938    ///
4939    /// rec20
4940    TonnePerSecondKelvin,
4941    /// tonne per second bar
4942    ///
4943    /// rec20
4944    TonnePerSecondBar,
4945    /// ton (UK shipping)
4946    ///
4947    /// rec20
4948    TonUkShipping,
4949    /// ton long per day
4950    ///
4951    /// rec20
4952    TonLongPerDay,
4953    /// ton (US shipping)
4954    ///
4955    /// rec20
4956    TonUsShipping,
4957    /// ton short per degree Fahrenheit
4958    ///
4959    /// rec20
4960    TonShortPerDegreeFahrenheit,
4961    /// ton short per day
4962    ///
4963    /// rec20
4964    TonShortPerDay,
4965    /// ton short per hour degree Fahrenheit
4966    ///
4967    /// rec20
4968    TonShortPerHourDegreeFahrenheit,
4969    /// ton short per hour psi
4970    ///
4971    /// rec20
4972    TonShortPerHourPsi,
4973    /// ton short per psi
4974    ///
4975    /// rec20
4976    TonShortPerPsi,
4977    /// ton (UK long) per cubic yard
4978    ///
4979    /// rec20
4980    TonUkLongPerCubicYard,
4981    /// ton (US short) per cubic yard
4982    ///
4983    /// rec20
4984    TonUsShortPerCubicYard,
4985    /// ton-force (US short)
4986    ///
4987    /// rec20
4988    TonForceUsShort,
4989    /// common year
4990    ///
4991    /// rec20
4992    CommonYear,
4993    /// sidereal year
4994    ///
4995    /// rec20
4996    SiderealYear,
4997    /// yard per degree Fahrenheit
4998    ///
4999    /// rec20
5000    YardPerDegreeFahrenheit,
5001    /// yard per psi
5002    ///
5003    /// rec20
5004    YardPerPsi,
5005    /// pound per cubic inch
5006    ///
5007    /// rec20
5008    PoundPerCubicInch,
5009    /// lactose excess percentage
5010    ///
5011    /// rec20
5012    LactoseExcessPercentage,
5013    /// pound
5014    ///
5015    /// rec20
5016    Pound,
5017    /// troy pound (US)
5018    ///
5019    /// rec20
5020    TroyPoundUs,
5021    /// litre per day
5022    ///
5023    /// rec20
5024    LitrePerDay,
5025    /// leaf
5026    ///
5027    /// rec20
5028    Leaf,
5029    /// linear foot
5030    ///
5031    /// rec20
5032    LinearFoot,
5033    /// labour hour
5034    ///
5035    /// rec20
5036    LabourHour,
5037    /// link
5038    ///
5039    /// rec20
5040    Link,
5041    /// linear metre
5042    ///
5043    /// rec20
5044    LinearMetre,
5045    /// length
5046    ///
5047    /// rec20
5048    Length,
5049    /// lot [unit of procurement]
5050    ///
5051    /// rec20
5052    LotUnitProcurement,
5053    /// liquid pound
5054    ///
5055    /// rec20
5056    LiquidPound,
5057    /// litre of pure alcohol
5058    ///
5059    /// rec20
5060    LitrePureAlcohol,
5061    /// layer
5062    ///
5063    /// rec20
5064    Layer,
5065    /// lump sum
5066    ///
5067    /// rec20
5068    LumpSum,
5069    /// ton (UK) or long ton (US)
5070    ///
5071    /// rec20
5072    TonUkOrLongTonUs,
5073    /// litre
5074    ///
5075    /// rec20
5076    Litre,
5077    /// metric ton, lubricating oil
5078    ///
5079    /// rec20
5080    MetricTonLubricatingOil,
5081    /// lumen
5082    ///
5083    /// rec20
5084    Lumen,
5085    /// lux
5086    ///
5087    /// rec20
5088    Lux,
5089    /// linear yard
5090    ///
5091    /// rec20
5092    LinearYard,
5093    /// milligram per litre
5094    ///
5095    /// rec20
5096    MilligramPerLitre,
5097    /// reciprocal cubic yard
5098    ///
5099    /// rec20
5100    ReciprocalCubicYard,
5101    /// cubic yard per degree Fahrenheit
5102    ///
5103    /// rec20
5104    CubicYardPerDegreeFahrenheit,
5105    /// cubic yard per day
5106    ///
5107    /// rec20
5108    CubicYardPerDay,
5109    /// cubic yard per hour
5110    ///
5111    /// rec20
5112    CubicYardPerHour,
5113    /// cubic yard per psi
5114    ///
5115    /// rec20
5116    CubicYardPerPsi,
5117    /// cubic yard per minute
5118    ///
5119    /// rec20
5120    CubicYardPerMinute,
5121    /// cubic yard per second
5122    ///
5123    /// rec20
5124    CubicYardPerSecond,
5125    /// kilohertz metre
5126    ///
5127    /// rec20
5128    KilohertzMetre,
5129    /// gigahertz metre
5130    ///
5131    /// rec20
5132    GigahertzMetre,
5133    /// Beaufort
5134    ///
5135    /// rec20
5136    Beaufort,
5137    /// reciprocal megakelvin or megakelvin to the power minus one
5138    ///
5139    /// rec20
5140    ReciprocalMegakelvinOrMegakelvinToPowerMinusOne,
5141    /// reciprocal kilovolt - ampere reciprocal hour
5142    ///
5143    /// rec20
5144    ReciprocalKilovoltAmpereReciprocalHour,
5145    /// millilitre per square centimetre minute
5146    ///
5147    /// rec20
5148    MillilitrePerSquareCentimetreMinute,
5149    /// newton per centimetre
5150    ///
5151    /// rec20
5152    NewtonPerCentimetre,
5153    /// ohm kilometre
5154    ///
5155    /// rec20
5156    OhmKilometre,
5157    /// percent per degree Celsius
5158    ///
5159    /// rec20
5160    PercentPerDegreeCelsius,
5161    /// gigaohm per metre
5162    ///
5163    /// rec20
5164    GigaohmPerMetre,
5165    /// megahertz metre
5166    ///
5167    /// rec20
5168    MegahertzMetre,
5169    /// kilogram per kilogram
5170    ///
5171    /// rec20
5172    KilogramPerKilogram,
5173    /// reciprocal volt - ampere reciprocal second
5174    ///
5175    /// rec20
5176    ReciprocalVoltAmpereReciprocalSecond,
5177    /// kilogram per kilometre
5178    ///
5179    /// rec20
5180    KilogramPerKilometre,
5181    /// pascal second per litre
5182    ///
5183    /// rec20
5184    PascalSecondPerLitre,
5185    /// millimole per litre
5186    ///
5187    /// rec20
5188    MillimolePerLitre,
5189    /// newton metre per square metre
5190    ///
5191    /// rec20
5192    NewtonMetrePerSquareMetre,
5193    /// millivolt - ampere
5194    ///
5195    /// rec20
5196    MillivoltAmpere,
5197    /// 30-day month
5198    ///
5199    /// rec20
5200    _30DayMonth,
5201    /// actual/360
5202    ///
5203    /// rec20
5204    Actual360,
5205    /// kilometre per second squared
5206    ///
5207    /// rec20
5208    KilometrePerSecondSquared,
5209    /// centimetre per second squared
5210    ///
5211    /// rec20
5212    CentimetrePerSecondSquared,
5213    /// monetary value
5214    ///
5215    /// rec20
5216    MonetaryValue,
5217    /// yard per second squared
5218    ///
5219    /// rec20
5220    YardPerSecondSquared,
5221    /// millimetre per second squared
5222    ///
5223    /// rec20
5224    MillimetrePerSecondSquared,
5225    /// mile (statute mile) per second squared
5226    ///
5227    /// rec20
5228    MileStatuteMilePerSecondSquared,
5229    /// mil
5230    ///
5231    /// rec20
5232    Mil,
5233    /// revolution
5234    ///
5235    /// rec20
5236    Revolution,
5237    /// degree [unit of angle] per second squared
5238    ///
5239    /// rec20
5240    DegreeUnitAnglePerSecondSquared,
5241    /// revolution per minute
5242    ///
5243    /// rec20
5244    RevolutionPerMinute,
5245    /// circular mil
5246    ///
5247    /// rec20
5248    CircularMil,
5249    /// square mile (based on U.S. survey foot)
5250    ///
5251    /// rec20
5252    SquareMileBasedOnUSSurveyFoot,
5253    /// chain (based on U.S. survey foot)
5254    ///
5255    /// rec20
5256    ChainBasedOnUSSurveyFoot,
5257    /// microcurie
5258    ///
5259    /// rec20
5260    Microcurie,
5261    /// furlong
5262    ///
5263    /// rec20
5264    Furlong,
5265    /// foot (U.S. survey)
5266    ///
5267    /// rec20
5268    FootUSSurvey,
5269    /// mile (based on U.S. survey foot)
5270    ///
5271    /// rec20
5272    MileBasedOnUSSurveyFoot,
5273    /// metre per pascal
5274    ///
5275    /// rec20
5276    MetrePerPascal,
5277    /// metre per radiant
5278    ///
5279    /// rec20
5280    MetrePerRadiant,
5281    /// shake
5282    ///
5283    /// rec20
5284    Shake,
5285    /// mile per minute
5286    ///
5287    /// rec20
5288    MilePerMinute,
5289    /// mile per second
5290    ///
5291    /// rec20
5292    MilePerSecond,
5293    /// metre per second pascal
5294    ///
5295    /// rec20
5296    MetrePerSecondPascal,
5297    /// metre per hour
5298    ///
5299    /// rec20
5300    MetrePerHour,
5301    /// inch per year
5302    ///
5303    /// rec20
5304    InchPerYear,
5305    /// kilometre per second
5306    ///
5307    /// rec20
5308    KilometrePerSecond,
5309    /// inch per minute
5310    ///
5311    /// rec20
5312    InchPerMinute,
5313    /// yard per second
5314    ///
5315    /// rec20
5316    YardPerSecond,
5317    /// yard per minute
5318    ///
5319    /// rec20
5320    YardPerMinute,
5321    /// yard per hour
5322    ///
5323    /// rec20
5324    YardPerHour,
5325    /// acre-foot (based on U.S. survey foot)
5326    ///
5327    /// rec20
5328    AcreFootBasedOnUSSurveyFoot,
5329    /// cord (128 ft3)
5330    ///
5331    /// rec20
5332    Cord128Ft3,
5333    /// cubic mile (UK statute)
5334    ///
5335    /// rec20
5336    CubicMileUkStatute,
5337    /// micro-inch
5338    ///
5339    /// rec20
5340    MicroInch,
5341    /// ton, register
5342    ///
5343    /// rec20
5344    TonRegister,
5345    /// cubic metre per pascal
5346    ///
5347    /// rec20
5348    CubicMetrePerPascal,
5349    /// bel
5350    ///
5351    /// rec20
5352    Bel,
5353    /// kilogram per cubic metre pascal
5354    ///
5355    /// rec20
5356    KilogramPerCubicMetrePascal,
5357    /// kilogram per pascal
5358    ///
5359    /// rec20
5360    KilogramPerPascal,
5361    /// kilopound-force
5362    ///
5363    /// rec20
5364    KilopoundForce,
5365    /// poundal
5366    ///
5367    /// rec20
5368    Poundal,
5369    /// kilogram metre per second squared
5370    ///
5371    /// rec20
5372    KilogramMetrePerSecondSquared,
5373    /// pond
5374    ///
5375    /// rec20
5376    Pond,
5377    /// square foot per hour
5378    ///
5379    /// rec20
5380    SquareFootPerHour,
5381    /// stokes per pascal
5382    ///
5383    /// rec20
5384    StokesPerPascal,
5385    /// square centimetre per second
5386    ///
5387    /// rec20
5388    SquareCentimetrePerSecond,
5389    /// square metre per second pascal
5390    ///
5391    /// rec20
5392    SquareMetrePerSecondPascal,
5393    /// denier
5394    ///
5395    /// rec20
5396    Denier_Dup,
5397    /// pound per yard
5398    ///
5399    /// rec20
5400    PoundPerYard,
5401    /// ton, assay
5402    ///
5403    /// rec20
5404    TonAssay,
5405    /// pfund
5406    ///
5407    /// rec20
5408    Pfund,
5409    /// kilogram per second pascal
5410    ///
5411    /// rec20
5412    KilogramPerSecondPascal,
5413    /// tonne per month
5414    ///
5415    /// rec20
5416    TonnePerMonth,
5417    /// tonne per year
5418    ///
5419    /// rec20
5420    TonnePerYear,
5421    /// million Btu per 1000 cubic foot
5422    ///
5423    /// rec20
5424    MillionBtuPer1000CubicFoot,
5425    /// kilopound per hour
5426    ///
5427    /// rec20
5428    KilopoundPerHour,
5429    /// pound per pound
5430    ///
5431    /// rec20
5432    PoundPerPound,
5433    /// pound-force foot
5434    ///
5435    /// rec20
5436    PoundForceFoot,
5437    /// newton metre per radian
5438    ///
5439    /// rec20
5440    NewtonMetrePerRadian,
5441    /// kilogram metre
5442    ///
5443    /// rec20
5444    KilogramMetre,
5445    /// poundal foot
5446    ///
5447    /// rec20
5448    PoundalFoot,
5449    /// poundal inch
5450    ///
5451    /// rec20
5452    PoundalInch,
5453    /// dyne metre
5454    ///
5455    /// rec20
5456    DyneMetre,
5457    /// kilogram centimetre per second
5458    ///
5459    /// rec20
5460    KilogramCentimetrePerSecond,
5461    /// gram centimetre per second
5462    ///
5463    /// rec20
5464    GramCentimetrePerSecond,
5465    /// megavolt ampere reactive hour
5466    ///
5467    /// rec20
5468    MegavoltAmpereReactiveHour,
5469    /// megalitre
5470    ///
5471    /// rec20
5472    Megalitre,
5473    /// megametre
5474    ///
5475    /// rec20
5476    Megametre,
5477    /// megavar
5478    ///
5479    /// rec20
5480    Megavar,
5481    /// megawatt
5482    ///
5483    /// rec20
5484    Megawatt,
5485    /// thousand standard brick equivalent
5486    ///
5487    /// rec20
5488    ThousandStandardBrickEquivalent,
5489    /// thousand board foot
5490    ///
5491    /// rec20
5492    ThousandBoardFoot,
5493    /// millibar
5494    ///
5495    /// rec20
5496    Millibar,
5497    /// microgram
5498    ///
5499    /// rec20
5500    Microgram,
5501    /// millicurie
5502    ///
5503    /// rec20
5504    Millicurie,
5505    /// air dry metric ton
5506    ///
5507    /// rec20
5508    AirDryMetricTon,
5509    /// milligram
5510    ///
5511    /// rec20
5512    Milligram,
5513    /// megahertz
5514    ///
5515    /// rec20
5516    Megahertz,
5517    /// square mile (statute mile)
5518    ///
5519    /// rec20
5520    SquareMileStatuteMile,
5521    /// thousand
5522    ///
5523    /// rec20
5524    Thousand,
5525    /// minute [unit of time]
5526    ///
5527    /// rec20
5528    MinuteUnitTime,
5529    /// million
5530    ///
5531    /// rec20
5532    Million,
5533    /// million international unit
5534    ///
5535    /// rec20
5536    MillionInternationalUnit,
5537    /// Square Metre Day
5538    ///
5539    /// Rec20
5540    SquareMetreDay,
5541    /// Square Metre Month
5542    ///
5543    /// Rec20
5544    SquareMetreMonth,
5545    /// Square Metre Week
5546    ///
5547    /// Rec20
5548    SquareMetreWeek,
5549    /// milliard
5550    ///
5551    /// rec20
5552    Milliard,
5553    /// millilitre
5554    ///
5555    /// rec20
5556    Millilitre,
5557    /// square millimetre
5558    ///
5559    /// rec20
5560    SquareMillimetre,
5561    /// cubic millimetre
5562    ///
5563    /// rec20
5564    CubicMillimetre,
5565    /// millimetre
5566    ///
5567    /// rec20
5568    Millimetre,
5569    /// kilogram, dry weight
5570    ///
5571    /// rec20
5572    KilogramDryWeight,
5573    /// Mega Joule per Normalised cubic Metre
5574    ///
5575    /// Rec20
5576    MegaJoulePerNormalisedCubicMetre,
5577    /// month
5578    ///
5579    /// rec20
5580    Month,
5581    /// megapascal
5582    ///
5583    /// rec20
5584    Megapascal,
5585    /// Cubic Metre Day
5586    ///
5587    /// Rec20
5588    CubicMetreDay,
5589    /// cubic metre per hour
5590    ///
5591    /// rec20
5592    CubicMetrePerHour,
5593    /// Cubic Metre Month
5594    ///
5595    /// Rec20
5596    CubicMetreMonth,
5597    /// cubic metre per second
5598    ///
5599    /// rec20
5600    CubicMetrePerSecond,
5601    /// Cubic Metre Week
5602    ///
5603    /// Rec20
5604    CubicMetreWeek,
5605    /// Metre Day
5606    ///
5607    /// Rec20
5608    MetreDay,
5609    /// Metre Month
5610    ///
5611    /// Rec20
5612    MetreMonth,
5613    /// Metre Week
5614    ///
5615    /// Rec20
5616    MetreWeek,
5617    /// metre per second squared
5618    ///
5619    /// rec20
5620    MetrePerSecondSquared,
5621    /// square metre
5622    ///
5623    /// rec20
5624    SquareMetre,
5625    /// cubic metre
5626    ///
5627    /// rec20
5628    CubicMetre,
5629    /// metre
5630    ///
5631    /// rec20
5632    Metre,
5633    /// metre per second
5634    ///
5635    /// rec20
5636    MetrePerSecond,
5637    /// milihertz
5638    ///
5639    /// Rec20
5640    Milihertz,
5641    /// megavolt - ampere
5642    ///
5643    /// rec20
5644    MegavoltAmpere,
5645    /// megawatt hour (1000 kW.h)
5646    ///
5647    /// rec20
5648    MegawattHour1000KwH,
5649    /// pen calorie
5650    ///
5651    /// rec20
5652    PenCalorie,
5653    /// pound foot per second
5654    ///
5655    /// rec20
5656    PoundFootPerSecond,
5657    /// pound inch per second
5658    ///
5659    /// rec20
5660    PoundInchPerSecond,
5661    /// Pferdestaerke
5662    ///
5663    /// rec20
5664    Pferdestaerke,
5665    /// centimetre of mercury (0 ºC)
5666    ///
5667    /// rec20
5668    CentimetreMercury0Oc,
5669    /// centimetre of water (4 ºC)
5670    ///
5671    /// rec20
5672    CentimetreWater4Oc,
5673    /// foot of water (39.2 ºF)
5674    ///
5675    /// rec20
5676    FootWater392Of,
5677    /// inch of mercury (32 ºF)
5678    ///
5679    /// rec20
5680    InchMercury32Of,
5681    /// inch of mercury (60 ºF)
5682    ///
5683    /// rec20
5684    InchMercury60Of,
5685    /// inch of water (39.2 ºF)
5686    ///
5687    /// rec20
5688    InchWater392Of,
5689    /// inch of water (60 ºF)
5690    ///
5691    /// rec20
5692    InchWater60Of,
5693    /// kip per square inch
5694    ///
5695    /// rec20
5696    KipPerSquareInch,
5697    /// poundal per square foot
5698    ///
5699    /// rec20
5700    PoundalPerSquareFoot,
5701    /// ounce (avoirdupois) per square inch
5702    ///
5703    /// rec20
5704    OunceAvoirdupoisPerSquareInch,
5705    /// conventional metre of water
5706    ///
5707    /// rec20
5708    ConventionalMetreWater,
5709    /// gram per square millimetre
5710    ///
5711    /// rec20
5712    GramPerSquareMillimetre,
5713    /// pound per square yard
5714    ///
5715    /// rec20
5716    PoundPerSquareYard,
5717    /// poundal per square inch
5718    ///
5719    /// rec20
5720    PoundalPerSquareInch,
5721    /// foot to the fourth power
5722    ///
5723    /// rec20
5724    FootToFourthPower,
5725    /// cubic decimetre per kilogram
5726    ///
5727    /// rec20
5728    CubicDecimetrePerKilogram,
5729    /// cubic foot per pound
5730    ///
5731    /// rec20
5732    CubicFootPerPound,
5733    /// print point
5734    ///
5735    /// rec20
5736    PrintPoint,
5737    /// cubic inch per pound
5738    ///
5739    /// rec20
5740    CubicInchPerPound,
5741    /// kilonewton per metre
5742    ///
5743    /// rec20
5744    KilonewtonPerMetre,
5745    /// poundal per inch
5746    ///
5747    /// rec20
5748    PoundalPerInch,
5749    /// pound-force per yard
5750    ///
5751    /// rec20
5752    PoundForcePerYard,
5753    /// poundal second per square foot
5754    ///
5755    /// rec20
5756    PoundalSecondPerSquareFoot,
5757    /// poise per pascal
5758    ///
5759    /// rec20
5760    PoisePerPascal,
5761    /// newton second per square metre
5762    ///
5763    /// rec20
5764    NewtonSecondPerSquareMetre,
5765    /// kilogram per metre second
5766    ///
5767    /// rec20
5768    KilogramPerMetreSecond,
5769    /// kilogram per metre minute
5770    ///
5771    /// rec20
5772    KilogramPerMetreMinute,
5773    /// kilogram per metre day
5774    ///
5775    /// rec20
5776    KilogramPerMetreDay,
5777    /// kilogram per metre hour
5778    ///
5779    /// rec20
5780    KilogramPerMetreHour,
5781    /// gram per centimetre second
5782    ///
5783    /// rec20
5784    GramPerCentimetreSecond,
5785    /// poundal second per square inch
5786    ///
5787    /// rec20
5788    PoundalSecondPerSquareInch,
5789    /// pound per foot minute
5790    ///
5791    /// rec20
5792    PoundPerFootMinute,
5793    /// pound per foot day
5794    ///
5795    /// rec20
5796    PoundPerFootDay,
5797    /// cubic metre per second pascal
5798    ///
5799    /// rec20
5800    CubicMetrePerSecondPascal,
5801    /// foot poundal
5802    ///
5803    /// rec20
5804    FootPoundal,
5805    /// inch poundal
5806    ///
5807    /// rec20
5808    InchPoundal,
5809    /// watt per square centimetre
5810    ///
5811    /// rec20
5812    WattPerSquareCentimetre,
5813    /// watt per square inch
5814    ///
5815    /// rec20
5816    WattPerSquareInch,
5817    /// British thermal unit (international table) per square foot hour
5818    ///
5819    /// rec20
5820    BritishThermalUnitInternationalTablePerSquareFootHour,
5821    /// British thermal unit (thermochemical) per square foot hour
5822    ///
5823    /// rec20
5824    BritishThermalUnitThermochemicalPerSquareFootHour,
5825    /// British thermal unit (thermochemical) per square foot minute
5826    ///
5827    /// rec20
5828    BritishThermalUnitThermochemicalPerSquareFootMinute,
5829    /// British thermal unit (international table) per square foot second
5830    ///
5831    /// rec20
5832    BritishThermalUnitInternationalTablePerSquareFootSecond,
5833    /// British thermal unit (thermochemical) per square foot second
5834    ///
5835    /// rec20
5836    BritishThermalUnitThermochemicalPerSquareFootSecond,
5837    /// British thermal unit (international table) per square inch second
5838    ///
5839    /// rec20
5840    BritishThermalUnitInternationalTablePerSquareInchSecond,
5841    /// calorie (thermochemical) per square centimetre minute
5842    ///
5843    /// rec20
5844    CalorieThermochemicalPerSquareCentimetreMinute,
5845    /// calorie (thermochemical) per square centimetre second
5846    ///
5847    /// rec20
5848    CalorieThermochemicalPerSquareCentimetreSecond,
5849    /// British thermal unit (international table) per cubic foot
5850    ///
5851    /// rec20
5852    BritishThermalUnitInternationalTablePerCubicFoot,
5853    /// British thermal unit (thermochemical) per cubic foot
5854    ///
5855    /// rec20
5856    BritishThermalUnitThermochemicalPerCubicFoot,
5857    /// British thermal unit (international table) per degree Fahrenheit
5858    ///
5859    /// rec20
5860    BritishThermalUnitInternationalTablePerDegreeFahrenheit,
5861    /// British thermal unit (thermochemical) per degree Fahrenheit
5862    ///
5863    /// rec20
5864    BritishThermalUnitThermochemicalPerDegreeFahrenheit,
5865    /// British thermal unit (international table) per degree Rankine
5866    ///
5867    /// rec20
5868    BritishThermalUnitInternationalTablePerDegreeRankine,
5869    /// British thermal unit (thermochemical) per degree Rankine
5870    ///
5871    /// rec20
5872    BritishThermalUnitThermochemicalPerDegreeRankine,
5873    /// British thermal unit (thermochemical) per pound degree Rankine
5874    ///
5875    /// rec20
5876    BritishThermalUnitThermochemicalPerPoundDegreeRankine,
5877    /// kilocalorie (international table) per gram kelvin
5878    ///
5879    /// rec20
5880    KilocalorieInternationalTablePerGramKelvin,
5881    /// British thermal unit (39 ºF)
5882    ///
5883    /// rec20
5884    BritishThermalUnit39Of,
5885    /// British thermal unit (59 ºF)
5886    ///
5887    /// rec20
5888    BritishThermalUnit59Of,
5889    /// British thermal unit (60 ºF)
5890    ///
5891    /// rec20
5892    BritishThermalUnit60Of,
5893    /// calorie (20 ºC)
5894    ///
5895    /// rec20
5896    Calorie20Oc,
5897    /// quad (1015 BtuIT)
5898    ///
5899    /// rec20
5900    Quad1015Btuit,
5901    /// therm (EC)
5902    ///
5903    /// rec20
5904    ThermEc,
5905    /// therm (U.S.)
5906    ///
5907    /// rec20
5908    ThermUS,
5909    /// British thermal unit (thermochemical) per pound
5910    ///
5911    /// rec20
5912    BritishThermalUnitThermochemicalPerPound,
5913    /// British thermal unit (international table) per hour square foot degree Fahrenheit
5914    ///
5915    /// rec20
5916    BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit,
5917    /// British thermal unit (thermochemical) per hour square foot degree Fahrenheit
5918    ///
5919    /// rec20
5920    BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit,
5921    /// British thermal unit (international table) per second square foot degree Fahrenheit
5922    ///
5923    /// rec20
5924    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit,
5925    /// British thermal unit (thermochemical) per second square foot degree Fahrenheit
5926    ///
5927    /// rec20
5928    BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit,
5929    /// kilowatt per square metre kelvin
5930    ///
5931    /// rec20
5932    KilowattPerSquareMetreKelvin,
5933    /// kelvin per pascal
5934    ///
5935    /// rec20
5936    KelvinPerPascal,
5937    /// watt per metre degree Celsius
5938    ///
5939    /// rec20
5940    WattPerMetreDegreeCelsius,
5941    /// kilowatt per metre kelvin
5942    ///
5943    /// rec20
5944    KilowattPerMetreKelvin,
5945    /// kilowatt per metre degree Celsius
5946    ///
5947    /// rec20
5948    KilowattPerMetreDegreeCelsius,
5949    /// metre per degree Celcius metre
5950    ///
5951    /// rec20
5952    MetrePerDegreeCelciusMetre,
5953    /// degree Fahrenheit hour per British thermal unit (international table)
5954    ///
5955    /// rec20
5956    DegreeFahrenheitHourPerBritishThermalUnitInternationalTable,
5957    /// degree Fahrenheit hour per British thermal unit (thermochemical)
5958    ///
5959    /// rec20
5960    DegreeFahrenheitHourPerBritishThermalUnitThermochemical,
5961    /// degree Fahrenheit second per British thermal unit (international table)
5962    ///
5963    /// rec20
5964    DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable,
5965    /// degree Fahrenheit second per British thermal unit (thermochemical)
5966    ///
5967    /// rec20
5968    DegreeFahrenheitSecondPerBritishThermalUnitThermochemical,
5969    /// degree Fahrenheit hour square foot per British thermal unit (international table) inch
5970    ///
5971    /// rec20
5972    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
5973    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch
5974    ///
5975    /// rec20
5976    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch,
5977    /// kilofarad
5978    ///
5979    /// rec20
5980    Kilofarad,
5981    /// reciprocal joule
5982    ///
5983    /// rec20
5984    ReciprocalJoule,
5985    /// picosiemens
5986    ///
5987    /// rec20
5988    Picosiemens,
5989    /// ampere per pascal
5990    ///
5991    /// rec20
5992    AmperePerPascal,
5993    /// franklin
5994    ///
5995    /// rec20
5996    Franklin,
5997    /// ampere minute
5998    ///
5999    /// rec20
6000    AmpereMinute,
6001    /// biot
6002    ///
6003    /// rec20
6004    Biot,
6005    /// gilbert
6006    ///
6007    /// rec20
6008    Gilbert,
6009    /// volt per pascal
6010    ///
6011    /// rec20
6012    VoltPerPascal,
6013    /// picovolt
6014    ///
6015    /// rec20
6016    Picovolt,
6017    /// milligram per kilogram
6018    ///
6019    /// rec20
6020    MilligramPerKilogram,
6021    /// number of articles
6022    ///
6023    /// rec20
6024    NumberArticles,
6025    /// number of cells
6026    ///
6027    /// rec20
6028    NumberCells,
6029    /// newton
6030    ///
6031    /// rec20
6032    Newton,
6033    /// message
6034    ///
6035    /// rec20
6036    Message,
6037    /// nil
6038    ///
6039    /// rec20
6040    Nil,
6041    /// number of international units
6042    ///
6043    /// rec20
6044    NumberInternationalUnits,
6045    /// load
6046    ///
6047    /// rec20
6048    Load,
6049    /// Normalised cubic metre
6050    ///
6051    /// rec20
6052    NormalisedCubicMetre,
6053    /// nautical mile
6054    ///
6055    /// rec20
6056    NauticalMile,
6057    /// number of packs
6058    ///
6059    /// rec20
6060    NumberPacks,
6061    /// number of parts
6062    ///
6063    /// rec20
6064    NumberParts,
6065    /// net ton
6066    ///
6067    /// rec20
6068    NetTon,
6069    /// Nephelometric turbidity unit
6070    ///
6071    /// Rec20
6072    NephelometricTurbidityUnit,
6073    /// newton metre
6074    ///
6075    /// rec20
6076    NewtonMetre,
6077    /// part per thousand
6078    ///
6079    /// rec20
6080    PartPerThousand,
6081    /// panel
6082    ///
6083    /// rec20
6084    Panel,
6085    /// ozone depletion equivalent
6086    ///
6087    /// rec20
6088    OzoneDepletionEquivalent,
6089    /// ODS Grams
6090    ///
6091    /// rec20
6092    OdsGrams,
6093    /// ODS Kilograms
6094    ///
6095    /// rec20
6096    OdsKilograms,
6097    /// ODS Milligrams
6098    ///
6099    /// rec20
6100    OdsMilligrams,
6101    /// ohm
6102    ///
6103    /// rec20
6104    Ohm,
6105    /// ounce per square yard
6106    ///
6107    /// rec20
6108    OuncePerSquareYard,
6109    /// ounce (avoirdupois)
6110    ///
6111    /// rec20
6112    OunceAvoirdupois,
6113    /// oscillations per minute
6114    ///
6115    /// rec20
6116    OscillationsPerMinute,
6117    /// overtime hour
6118    ///
6119    /// rec20
6120    OvertimeHour,
6121    /// fluid ounce (US)
6122    ///
6123    /// rec20
6124    FluidOunceUs,
6125    /// fluid ounce (UK)
6126    ///
6127    /// rec20
6128    FluidOunceUk,
6129    /// percent
6130    ///
6131    /// rec20
6132    Percent,
6133    /// coulomb per metre
6134    ///
6135    /// rec20
6136    CoulombPerMetre,
6137    /// kiloweber
6138    ///
6139    /// rec20
6140    Kiloweber,
6141    /// gamma
6142    ///
6143    /// rec20
6144    Gamma,
6145    /// kilotesla
6146    ///
6147    /// rec20
6148    Kilotesla,
6149    /// joule per second
6150    ///
6151    /// rec20
6152    JoulePerSecond,
6153    /// joule per minute
6154    ///
6155    /// rec20
6156    JoulePerMinute,
6157    /// joule per hour
6158    ///
6159    /// rec20
6160    JoulePerHour,
6161    /// joule per day
6162    ///
6163    /// rec20
6164    JoulePerDay,
6165    /// kilojoule per second
6166    ///
6167    /// rec20
6168    KilojoulePerSecond,
6169    /// kilojoule per minute
6170    ///
6171    /// rec20
6172    KilojoulePerMinute,
6173    /// pound per foot
6174    ///
6175    /// rec20
6176    PoundPerFoot,
6177    /// kilojoule per hour
6178    ///
6179    /// rec20
6180    KilojoulePerHour,
6181    /// kilojoule per day
6182    ///
6183    /// rec20
6184    KilojoulePerDay,
6185    /// nanoohm
6186    ///
6187    /// rec20
6188    Nanoohm,
6189    /// ohm circular-mil per foot
6190    ///
6191    /// rec20
6192    OhmCircularMilPerFoot,
6193    /// kilohenry
6194    ///
6195    /// rec20
6196    Kilohenry,
6197    /// lumen per square foot
6198    ///
6199    /// rec20
6200    LumenPerSquareFoot,
6201    /// phot
6202    ///
6203    /// rec20
6204    Phot,
6205    /// footcandle
6206    ///
6207    /// rec20
6208    Footcandle,
6209    /// candela per square inch
6210    ///
6211    /// rec20
6212    CandelaPerSquareInch,
6213    /// footlambert
6214    ///
6215    /// rec20
6216    Footlambert,
6217    /// lambert
6218    ///
6219    /// rec20
6220    Lambert,
6221    /// stilb
6222    ///
6223    /// rec20
6224    Stilb,
6225    /// candela per square foot
6226    ///
6227    /// rec20
6228    CandelaPerSquareFoot,
6229    /// kilocandela
6230    ///
6231    /// rec20
6232    Kilocandela,
6233    /// millicandela
6234    ///
6235    /// rec20
6236    Millicandela,
6237    /// Hefner-Kerze
6238    ///
6239    /// rec20
6240    HefnerKerze,
6241    /// international candle
6242    ///
6243    /// rec20
6244    InternationalCandle,
6245    /// British thermal unit (international table) per square foot
6246    ///
6247    /// rec20
6248    BritishThermalUnitInternationalTablePerSquareFoot,
6249    /// British thermal unit (thermochemical) per square foot
6250    ///
6251    /// rec20
6252    BritishThermalUnitThermochemicalPerSquareFoot,
6253    /// calorie (thermochemical) per square centimetre
6254    ///
6255    /// rec20
6256    CalorieThermochemicalPerSquareCentimetre,
6257    /// langley
6258    ///
6259    /// rec20
6260    Langley,
6261    /// decade (logarithmic)
6262    ///
6263    /// rec20
6264    DecadeLogarithmic,
6265    /// pascal squared second
6266    ///
6267    /// rec20
6268    PascalSquaredSecond,
6269    /// bel per metre
6270    ///
6271    /// rec20
6272    BelPerMetre,
6273    /// pound mole
6274    ///
6275    /// rec20
6276    PoundMole,
6277    /// pound mole per second
6278    ///
6279    /// rec20
6280    PoundMolePerSecond,
6281    /// pound mole per minute
6282    ///
6283    /// rec20
6284    PoundMolePerMinute,
6285    /// kilomole per kilogram
6286    ///
6287    /// rec20
6288    KilomolePerKilogram,
6289    /// pound mole per pound
6290    ///
6291    /// rec20
6292    PoundMolePerPound,
6293    /// newton square metre per ampere
6294    ///
6295    /// rec20
6296    NewtonSquareMetrePerAmpere,
6297    /// five pack
6298    ///
6299    /// rec20
6300    FivePack,
6301    /// weber metre
6302    ///
6303    /// rec20
6304    WeberMetre,
6305    /// mol per kilogram pascal
6306    ///
6307    /// rec20
6308    MolPerKilogramPascal,
6309    /// mol per cubic metre pascal
6310    ///
6311    /// rec20
6312    MolPerCubicMetrePascal,
6313    /// unit pole
6314    ///
6315    /// rec20
6316    UnitPole,
6317    /// milligray per second
6318    ///
6319    /// rec20
6320    MilligrayPerSecond,
6321    /// microgray per second
6322    ///
6323    /// rec20
6324    MicrograyPerSecond,
6325    /// nanogray per second
6326    ///
6327    /// rec20
6328    NanograyPerSecond,
6329    /// gray per minute
6330    ///
6331    /// rec20
6332    GrayPerMinute,
6333    /// milligray per minute
6334    ///
6335    /// rec20
6336    MilligrayPerMinute,
6337    /// microgray per minute
6338    ///
6339    /// rec20
6340    MicrograyPerMinute,
6341    /// nanogray per minute
6342    ///
6343    /// rec20
6344    NanograyPerMinute,
6345    /// gray per hour
6346    ///
6347    /// rec20
6348    GrayPerHour,
6349    /// milligray per hour
6350    ///
6351    /// rec20
6352    MilligrayPerHour,
6353    /// microgray per hour
6354    ///
6355    /// rec20
6356    MicrograyPerHour,
6357    /// nanogray per hour
6358    ///
6359    /// rec20
6360    NanograyPerHour,
6361    /// sievert per second
6362    ///
6363    /// rec20
6364    SievertPerSecond,
6365    /// millisievert per second
6366    ///
6367    /// rec20
6368    MillisievertPerSecond,
6369    /// microsievert per second
6370    ///
6371    /// rec20
6372    MicrosievertPerSecond,
6373    /// nanosievert per second
6374    ///
6375    /// rec20
6376    NanosievertPerSecond,
6377    /// rem per second
6378    ///
6379    /// rec20
6380    RemPerSecond,
6381    /// sievert per hour
6382    ///
6383    /// rec20
6384    SievertPerHour,
6385    /// millisievert per hour
6386    ///
6387    /// rec20
6388    MillisievertPerHour,
6389    /// microsievert per hour
6390    ///
6391    /// rec20
6392    MicrosievertPerHour,
6393    /// nanosievert per hour
6394    ///
6395    /// rec20
6396    NanosievertPerHour,
6397    /// sievert per minute
6398    ///
6399    /// rec20
6400    SievertPerMinute,
6401    /// millisievert per minute
6402    ///
6403    /// rec20
6404    MillisievertPerMinute,
6405    /// microsievert per minute
6406    ///
6407    /// rec20
6408    MicrosievertPerMinute,
6409    /// nanosievert per minute
6410    ///
6411    /// rec20
6412    NanosievertPerMinute,
6413    /// reciprocal square inch
6414    ///
6415    /// rec20
6416    ReciprocalSquareInch,
6417    /// pascal square metre per kilogram
6418    ///
6419    /// rec20
6420    PascalSquareMetrePerKilogram,
6421    /// millipascal per metre
6422    ///
6423    /// rec20
6424    MillipascalPerMetre,
6425    /// kilopascal per metre
6426    ///
6427    /// rec20
6428    KilopascalPerMetre,
6429    /// hectopascal per metre
6430    ///
6431    /// rec20
6432    HectopascalPerMetre,
6433    /// standard atmosphere per metre
6434    ///
6435    /// rec20
6436    StandardAtmospherePerMetre,
6437    /// technical atmosphere per metre
6438    ///
6439    /// rec20
6440    TechnicalAtmospherePerMetre,
6441    /// torr per metre
6442    ///
6443    /// rec20
6444    TorrPerMetre,
6445    /// psi per inch
6446    ///
6447    /// rec20
6448    PsiPerInch,
6449    /// cubic metre per second square metre
6450    ///
6451    /// rec20
6452    CubicMetrePerSecondSquareMetre,
6453    /// rhe
6454    ///
6455    /// rec20
6456    Rhe,
6457    /// pound-force foot per inch
6458    ///
6459    /// rec20
6460    PoundForceFootPerInch,
6461    /// pound-force inch per inch
6462    ///
6463    /// rec20
6464    PoundForceInchPerInch,
6465    /// perm (0 ºC)
6466    ///
6467    /// rec20
6468    Perm0Oc,
6469    /// perm (23 ºC)
6470    ///
6471    /// rec20
6472    Perm23Oc,
6473    /// byte per second
6474    ///
6475    /// rec20
6476    BytePerSecond,
6477    /// kilobyte per second
6478    ///
6479    /// rec20
6480    KilobytePerSecond,
6481    /// megabyte per second
6482    ///
6483    /// rec20
6484    MegabytePerSecond,
6485    /// reciprocal volt
6486    ///
6487    /// rec20
6488    ReciprocalVolt,
6489    /// reciprocal radian
6490    ///
6491    /// rec20
6492    ReciprocalRadian,
6493    /// pascal to the power sum of stoichiometric numbers
6494    ///
6495    /// rec20
6496    PascalToPowerSumStoichiometricNumbers,
6497    /// mole per cubiv metre to the power sum of stoichiometric numbers
6498    ///
6499    /// rec20
6500    MolePerCubivMetreToPowerSumStoichiometricNumbers,
6501    /// pascal
6502    ///
6503    /// rec20
6504    Pascal,
6505    /// pad
6506    ///
6507    /// rec20
6508    Pad,
6509    /// proof litre
6510    ///
6511    /// rec20
6512    ProofLitre,
6513    /// proof gallon
6514    ///
6515    /// rec20
6516    ProofGallon,
6517    /// pitch
6518    ///
6519    /// rec20
6520    Pitch,
6521    /// degree Plato
6522    ///
6523    /// rec20
6524    DegreePlato,
6525    /// pound per inch of length
6526    ///
6527    /// rec20
6528    PoundPerInchLength,
6529    /// page per inch
6530    ///
6531    /// rec20
6532    PagePerInch,
6533    /// pair
6534    ///
6535    /// rec20
6536    Pair,
6537    /// pound-force per square inch
6538    ///
6539    /// rec20
6540    PoundForcePerSquareInch,
6541    /// dry pint (US)
6542    ///
6543    /// rec20
6544    DryPintUs,
6545    /// pint (UK)
6546    ///
6547    /// rec20
6548    PintUk,
6549    /// liquid pint (US)
6550    ///
6551    /// rec20
6552    LiquidPintUs,
6553    /// portion
6554    ///
6555    /// rec20
6556    Portion,
6557    /// joule per tesla
6558    ///
6559    /// rec20
6560    JoulePerTesla,
6561    /// erlang
6562    ///
6563    /// rec20
6564    Erlang,
6565    /// octet
6566    ///
6567    /// rec20
6568    Octet,
6569    /// octet per second
6570    ///
6571    /// rec20
6572    OctetPerSecond,
6573    /// shannon
6574    ///
6575    /// rec20
6576    Shannon,
6577    /// hartley
6578    ///
6579    /// rec20
6580    Hartley,
6581    /// natural unit of information
6582    ///
6583    /// rec20
6584    NaturalUnitInformation,
6585    /// shannon per second
6586    ///
6587    /// rec20
6588    ShannonPerSecond,
6589    /// hartley per second
6590    ///
6591    /// rec20
6592    HartleyPerSecond,
6593    /// natural unit of information per second
6594    ///
6595    /// rec20
6596    NaturalUnitInformationPerSecond,
6597    /// second per kilogramm
6598    ///
6599    /// rec20
6600    SecondPerKilogramm,
6601    /// watt square metre
6602    ///
6603    /// rec20
6604    WattSquareMetre,
6605    /// second per radian cubic metre
6606    ///
6607    /// rec20
6608    SecondPerRadianCubicMetre,
6609    /// weber to the power minus one
6610    ///
6611    /// rec20
6612    WeberToPowerMinusOne,
6613    /// reciprocal inch
6614    ///
6615    /// rec20
6616    ReciprocalInch,
6617    /// dioptre
6618    ///
6619    /// rec20
6620    Dioptre,
6621    /// one per one
6622    ///
6623    /// rec20
6624    OnePerOne,
6625    /// newton metre per metre
6626    ///
6627    /// rec20
6628    NewtonMetrePerMetre,
6629    /// kilogram per square metre pascal second
6630    ///
6631    /// rec20
6632    KilogramPerSquareMetrePascalSecond,
6633    /// microgram per hectogram
6634    ///
6635    /// rec20
6636    MicrogramPerHectogram,
6637    /// meal
6638    ///
6639    /// rec20
6640    Meal,
6641    /// pH (potential of Hydrogen)
6642    ///
6643    /// rec20
6644    PhPotentialHydrogen,
6645    /// kilojoule per gram
6646    ///
6647    /// rec20
6648    KilojoulePerGram,
6649    /// femtolitre
6650    ///
6651    /// rec20
6652    Femtolitre,
6653    /// picolitre
6654    ///
6655    /// rec20
6656    Picolitre,
6657    /// nanolitre
6658    ///
6659    /// rec20
6660    Nanolitre,
6661    /// megawatts per minute
6662    ///
6663    /// rec20
6664    MegawattsPerMinute,
6665    /// square metre per cubic metre
6666    ///
6667    /// rec20
6668    SquareMetrePerCubicMetre,
6669    /// Standard cubic metre per day
6670    ///
6671    /// rec20
6672    StandardCubicMetrePerDay,
6673    /// Standard cubic metre per hour
6674    ///
6675    /// rec20
6676    StandardCubicMetrePerHour,
6677    /// Normalized cubic metre per day
6678    ///
6679    /// rec20
6680    NormalizedCubicMetrePerDay,
6681    /// Normalized cubic metre per hour
6682    ///
6683    /// rec20
6684    NormalizedCubicMetrePerHour,
6685    /// Joule per normalised cubic metre
6686    ///
6687    /// rec20
6688    JoulePerNormalisedCubicMetre,
6689    /// Joule per standard cubic metre
6690    ///
6691    /// rec20
6692    JoulePerStandardCubicMetre,
6693    /// page - facsimile
6694    ///
6695    /// rec20
6696    PageFacsimile,
6697    /// quarter (of a year)
6698    ///
6699    /// rec20
6700    QuarterAYear,
6701    /// page - hardcopy
6702    ///
6703    /// rec20
6704    PageHardcopy,
6705    /// quire
6706    ///
6707    /// rec20
6708    Quire,
6709    /// dry quart (US)
6710    ///
6711    /// rec20
6712    DryQuartUs,
6713    /// quart (UK)
6714    ///
6715    /// rec20
6716    QuartUk,
6717    /// liquid quart (US)
6718    ///
6719    /// rec20
6720    LiquidQuartUs,
6721    /// quarter (UK)
6722    ///
6723    /// rec20
6724    QuarterUk,
6725    /// pica
6726    ///
6727    /// rec20
6728    Pica,
6729    /// thousand cubic metre
6730    ///
6731    /// rec20
6732    ThousandCubicMetre,
6733    /// running or operating hour
6734    ///
6735    /// rec20
6736    RunningOrOperatingHour,
6737    /// ream
6738    ///
6739    /// rec20
6740    Ream,
6741    /// room
6742    ///
6743    /// rec20
6744    Room,
6745    /// pound per ream
6746    ///
6747    /// rec20
6748    PoundPerReam,
6749    /// revolutions per minute
6750    ///
6751    /// rec20
6752    RevolutionsPerMinute,
6753    /// revolutions per second
6754    ///
6755    /// rec20
6756    RevolutionsPerSecond,
6757    /// revenue ton mile
6758    ///
6759    /// rec20
6760    RevenueTonMile,
6761    /// square foot per second
6762    ///
6763    /// rec20
6764    SquareFootPerSecond,
6765    /// square metre per second
6766    ///
6767    /// rec20
6768    SquareMetrePerSecond,
6769    /// half year (6 months)
6770    ///
6771    /// rec20
6772    HalfYear6Months,
6773    /// score
6774    ///
6775    /// rec20
6776    Score,
6777    /// scruple
6778    ///
6779    /// rec20
6780    Scruple,
6781    /// second [unit of time]
6782    ///
6783    /// rec20
6784    SecondUnitTime,
6785    /// set
6786    ///
6787    /// rec20
6788    Set,
6789    /// segment
6790    ///
6791    /// rec20
6792    Segment,
6793    /// siemens
6794    ///
6795    /// rec20
6796    Siemens,
6797    /// Standard cubic metre
6798    ///
6799    /// rec20
6800    StandardCubicMetre,
6801    /// mile (statute mile)
6802    ///
6803    /// rec20
6804    MileStatuteMile,
6805    /// square
6806    ///
6807    /// rec20
6808    Square,
6809    /// square, roofing
6810    ///
6811    /// rec20
6812    SquareRoofing,
6813    /// strip
6814    ///
6815    /// rec20
6816    Strip,
6817    /// stick
6818    ///
6819    /// rec20
6820    Stick,
6821    /// stone (UK)
6822    ///
6823    /// rec20
6824    StoneUk,
6825    /// stick, cigarette
6826    ///
6827    /// rec20
6828    StickCigarette,
6829    /// standard litre
6830    ///
6831    /// rec20
6832    StandardLitre,
6833    /// ton (US) or short ton (UK/US)
6834    ///
6835    /// rec20
6836    TonUsOrShortTonUkUs,
6837    /// straw
6838    ///
6839    /// rec20
6840    Straw,
6841    /// skein
6842    ///
6843    /// rec20
6844    Skein,
6845    /// shipment
6846    ///
6847    /// rec20
6848    Shipment,
6849    /// syringe
6850    ///
6851    /// rec20
6852    Syringe,
6853    /// telecommunication line in service
6854    ///
6855    /// rec20
6856    TelecommunicationLineInService,
6857    /// thousand piece
6858    ///
6859    /// rec20
6860    ThousandPiece,
6861    /// kiloampere hour (thousand ampere hour)
6862    ///
6863    /// rec20
6864    KiloampereHourThousandAmpereHour,
6865    /// total acid number
6866    ///
6867    /// rec20
6868    TotalAcidNumber,
6869    /// thousand square inch
6870    ///
6871    /// rec20
6872    ThousandSquareInch,
6873    /// metric ton, including container
6874    ///
6875    /// rec20
6876    MetricTonIncludingContainer,
6877    /// metric ton, including inner packaging
6878    ///
6879    /// rec20
6880    MetricTonIncludingInnerPackaging,
6881    /// tonne kilometre
6882    ///
6883    /// rec20
6884    TonneKilometre,
6885    /// kilogram of imported meat, less offal
6886    ///
6887    /// rec20
6888    KilogramImportedMeatLessOffal,
6889    /// tonne (metric ton)
6890    ///
6891    /// rec20
6892    TonneMetricTon,
6893    /// ten pack
6894    ///
6895    /// rec20
6896    TenPack,
6897    /// teeth per inch
6898    ///
6899    /// rec20
6900    TeethPerInch,
6901    /// ten pair
6902    ///
6903    /// rec20
6904    TenPair,
6905    /// thousand cubic metre per day
6906    ///
6907    /// rec20
6908    ThousandCubicMetrePerDay,
6909    /// trillion (EUR)
6910    ///
6911    /// rec20
6912    TrillionEur,
6913    /// ten set
6914    ///
6915    /// rec20
6916    TenSet,
6917    /// ten thousand sticks
6918    ///
6919    /// rec20
6920    TenThousandSticks,
6921    /// treatment
6922    ///
6923    /// rec20
6924    Treatment,
6925    /// tablet
6926    ///
6927    /// rec20
6928    Tablet,
6929    /// telecommunication line in service average
6930    ///
6931    /// rec20
6932    TelecommunicationLineInServiceAverage,
6933    /// telecommunication port
6934    ///
6935    /// rec20
6936    TelecommunicationPort,
6937    /// volt - ampere per kilogram
6938    ///
6939    /// rec20
6940    VoltAmperePerKilogram,
6941    /// volt
6942    ///
6943    /// rec20
6944    Volt,
6945    /// percent volume
6946    ///
6947    /// rec20
6948    PercentVolume,
6949    /// wet kilo
6950    ///
6951    /// rec20
6952    WetKilo,
6953    /// watt per kilogram
6954    ///
6955    /// rec20
6956    WattPerKilogram,
6957    /// wet pound
6958    ///
6959    /// rec20
6960    WetPound,
6961    /// cord
6962    ///
6963    /// rec20
6964    Cord,
6965    /// wet ton
6966    ///
6967    /// rec20
6968    WetTon,
6969    /// weber
6970    ///
6971    /// rec20
6972    Weber,
6973    /// week
6974    ///
6975    /// rec20
6976    Week,
6977    /// wine gallon
6978    ///
6979    /// rec20
6980    WineGallon,
6981    /// watt hour
6982    ///
6983    /// rec20
6984    WattHour,
6985    /// working month
6986    ///
6987    /// rec20
6988    WorkingMonth,
6989    /// standard
6990    ///
6991    /// rec20
6992    Standard,
6993    /// watt
6994    ///
6995    /// rec20
6996    Watt,
6997    /// Gunter's chain
6998    ///
6999    /// rec20
7000    GuntersChain,
7001    /// square yard
7002    ///
7003    /// rec20
7004    SquareYard,
7005    /// cubic yard
7006    ///
7007    /// rec20
7008    CubicYard,
7009    /// yard
7010    ///
7011    /// rec20
7012    Yard,
7013    /// hanging container
7014    ///
7015    /// rec20
7016    HangingContainer,
7017    /// nanomole
7018    ///
7019    /// Rec20
7020    Nanomole,
7021    /// page
7022    ///
7023    /// rec20
7024    Page,
7025    /// mutually defined
7026    ///
7027    /// rec20
7028    MutuallyDefined,
7029    /// Drum, steel
7030    ///
7031    /// rec21
7032    DrumSteel,
7033    /// Drum, aluminium
7034    ///
7035    /// rec21
7036    DrumAluminium,
7037    /// Drum, plywood
7038    ///
7039    /// rec21
7040    DrumPlywood,
7041    /// Container, flexible
7042    ///
7043    /// rec21
7044    ContainerFlexible,
7045    /// Drum, fibre
7046    ///
7047    /// rec21
7048    DrumFibre,
7049    /// Drum, wooden
7050    ///
7051    /// rec21
7052    DrumWooden,
7053    /// Barrel, wooden
7054    ///
7055    /// rec21
7056    BarrelWooden,
7057    /// Jerrican, steel
7058    ///
7059    /// rec21
7060    JerricanSteel,
7061    /// Jerrican, plastic
7062    ///
7063    /// rec21
7064    JerricanPlastic,
7065    /// Bag, super bulk
7066    ///
7067    /// rec21
7068    BagSuperBulk,
7069    /// Bag, polybag
7070    ///
7071    /// rec21
7072    BagPolybag,
7073    /// Box, steel
7074    ///
7075    /// rec21
7076    BoxSteel,
7077    /// Box, aluminium
7078    ///
7079    /// rec21
7080    BoxAluminium,
7081    /// Box, natural wood
7082    ///
7083    /// rec21
7084    BoxNaturalWood,
7085    /// Box, plywood
7086    ///
7087    /// rec21
7088    BoxPlywood,
7089    /// Box, reconstituted wood
7090    ///
7091    /// rec21
7092    BoxReconstitutedWood,
7093    /// Box, fibreboard
7094    ///
7095    /// rec21
7096    BoxFibreboard,
7097    /// Box, plastic
7098    ///
7099    /// rec21
7100    BoxPlastic,
7101    /// Bag, woven plastic
7102    ///
7103    /// rec21
7104    BagWovenPlastic,
7105    /// Bag, textile
7106    ///
7107    /// rec21
7108    BagTextile,
7109    /// Bag, paper
7110    ///
7111    /// rec21
7112    BagPaper,
7113    /// Composite packaging, plastic receptacle
7114    ///
7115    /// rec21
7116    CompositePackagingPlasticReceptacle,
7117    /// Composite packaging, glass receptacle
7118    ///
7119    /// rec21
7120    CompositePackagingGlassReceptacle,
7121    /// Case, car
7122    ///
7123    /// rec21
7124    CaseCar,
7125    /// Case, wooden
7126    ///
7127    /// rec21
7128    CaseWooden,
7129    /// Pallet, wooden
7130    ///
7131    /// rec21
7132    PalletWooden,
7133    /// Crate, wooden
7134    ///
7135    /// rec21
7136    CrateWooden,
7137    /// Bundle, wooden
7138    ///
7139    /// rec21
7140    BundleWooden,
7141    /// Intermediate bulk container, rigid plastic
7142    ///
7143    /// rec21
7144    IntermediateBulkContainerRigidPlastic,
7145    /// Receptacle, fibre
7146    ///
7147    /// rec21
7148    ReceptacleFibre,
7149    /// Receptacle, paper
7150    ///
7151    /// rec21
7152    ReceptaclePaper,
7153    /// Receptacle, wooden
7154    ///
7155    /// rec21
7156    ReceptacleWooden,
7157    /// Aerosol
7158    ///
7159    /// rec21
7160    Aerosol,
7161    /// Pallet, modular, collars 80cms * 60cms
7162    ///
7163    /// rec21
7164    PalletModularCollars80cms60cms,
7165    /// Pallet, shrinkwrapped
7166    ///
7167    /// rec21
7168    PalletShrinkwrapped,
7169    /// Pallet, 100cms * 110cms
7170    ///
7171    /// rec21
7172    Pallet100cms110cms,
7173    /// Clamshell
7174    ///
7175    /// rec21
7176    Clamshell,
7177    /// Cone
7178    ///
7179    /// rec21
7180    Cone,
7181    /// Ball
7182    ///
7183    /// rec21
7184    Ball_Dup,
7185    /// Ampoule, non-protected
7186    ///
7187    /// rec21
7188    AmpouleNonProtected,
7189    /// Ampoule, protected
7190    ///
7191    /// rec21
7192    AmpouleProtected,
7193    /// Atomizer
7194    ///
7195    /// rec21
7196    Atomizer,
7197    /// Capsule
7198    ///
7199    /// rec21
7200    Capsule,
7201    /// Belt
7202    ///
7203    /// rec21
7204    Belt,
7205    /// Barrel
7206    ///
7207    /// rec21
7208    Barrel,
7209    /// Bobbin
7210    ///
7211    /// rec21
7212    Bobbin,
7213    /// Bottlecrate / bottlerack
7214    ///
7215    /// rec21
7216    BottlecrateBottlerack,
7217    /// Board
7218    ///
7219    /// rec21
7220    Board,
7221    /// Bundle
7222    ///
7223    /// rec21
7224    Bundle,
7225    /// Balloon, non-protected
7226    ///
7227    /// rec21
7228    BalloonNonProtected,
7229    /// Bag
7230    ///
7231    /// rec21
7232    Bag,
7233    /// Bunch
7234    ///
7235    /// rec21
7236    Bunch,
7237    /// Bin
7238    ///
7239    /// rec21
7240    Bin,
7241    /// Bucket
7242    ///
7243    /// rec21
7244    Bucket,
7245    /// Basket
7246    ///
7247    /// rec21
7248    Basket,
7249    /// Bale, compressed
7250    ///
7251    /// rec21
7252    BaleCompressed,
7253    /// Basin
7254    ///
7255    /// rec21
7256    Basin,
7257    /// Bale, non-compressed
7258    ///
7259    /// rec21
7260    BaleNonCompressed,
7261    /// Bottle, non-protected, cylindrical
7262    ///
7263    /// rec21
7264    BottleNonProtectedCylindrical,
7265    /// Balloon, protected
7266    ///
7267    /// rec21
7268    BalloonProtected,
7269    /// Bottle, protected cylindrical
7270    ///
7271    /// rec21
7272    BottleProtectedCylindrical,
7273    /// Bar
7274    ///
7275    /// rec21
7276    Bar,
7277    /// Bottle, non-protected, bulbous
7278    ///
7279    /// rec21
7280    BottleNonProtectedBulbous,
7281    /// Bolt
7282    ///
7283    /// rec21
7284    Bolt,
7285    /// Butt
7286    ///
7287    /// rec21
7288    Butt,
7289    /// Bottle, protected bulbous
7290    ///
7291    /// rec21
7292    BottleProtectedBulbous,
7293    /// Box, for liquids
7294    ///
7295    /// rec21
7296    BoxForLiquids,
7297    /// Box
7298    ///
7299    /// rec21
7300    Box,
7301    /// Board, in bundle/bunch/truss
7302    ///
7303    /// rec21
7304    BoardInBundleBunchTruss,
7305    /// Bars, in bundle/bunch/truss
7306    ///
7307    /// rec21
7308    BarsInBundleBunchTruss,
7309    /// Can, rectangular
7310    ///
7311    /// rec21
7312    CanRectangular,
7313    /// Crate, beer
7314    ///
7315    /// rec21
7316    CrateBeer,
7317    /// Churn
7318    ///
7319    /// rec21
7320    Churn,
7321    /// Can, with handle and spout
7322    ///
7323    /// rec21
7324    CanWithHandleAndSpout,
7325    /// Creel
7326    ///
7327    /// rec21
7328    Creel,
7329    /// Coffer
7330    ///
7331    /// rec21
7332    Coffer,
7333    /// Cage
7334    ///
7335    /// rec21
7336    Cage,
7337    /// Chest
7338    ///
7339    /// rec21
7340    Chest,
7341    /// Canister
7342    ///
7343    /// rec21
7344    Canister,
7345    /// Coffin
7346    ///
7347    /// rec21
7348    Coffin,
7349    /// Cask
7350    ///
7351    /// rec21
7352    Cask,
7353    /// Coil
7354    ///
7355    /// rec21
7356    Coil,
7357    /// Card
7358    ///
7359    /// rec21
7360    Card_Dup,
7361    /// Container, not otherwise specified as transport equipment
7362    ///
7363    /// rec21
7364    ContainerNotOtherwiseSpecifiedAsTransportEquipment,
7365    /// Carboy, non-protected
7366    ///
7367    /// rec21
7368    CarboyNonProtected,
7369    /// Carboy, protected
7370    ///
7371    /// rec21
7372    CarboyProtected,
7373    /// Cartridge
7374    ///
7375    /// rec21
7376    Cartridge,
7377    /// Crate
7378    ///
7379    /// rec21
7380    Crate,
7381    /// Case
7382    ///
7383    /// rec21
7384    Case,
7385    /// Carton
7386    ///
7387    /// rec21
7388    Carton,
7389    /// Cup
7390    ///
7391    /// rec21
7392    Cup,
7393    /// Cover
7394    ///
7395    /// rec21
7396    Cover,
7397    /// Cage, roll
7398    ///
7399    /// rec21
7400    CageRoll,
7401    /// Can, cylindrical
7402    ///
7403    /// rec21
7404    CanCylindrical,
7405    /// Cylinder
7406    ///
7407    /// rec21
7408    Cylinder,
7409    /// Canvas
7410    ///
7411    /// rec21
7412    Canvas,
7413    /// Crate, multiple layer, plastic
7414    ///
7415    /// rec21
7416    CrateMultipleLayerPlastic,
7417    /// Crate, multiple layer, wooden
7418    ///
7419    /// rec21
7420    CrateMultipleLayerWooden,
7421    /// Crate, multiple layer, cardboard
7422    ///
7423    /// rec21
7424    CrateMultipleLayerCardboard,
7425    /// Cage, Commonwealth Handling Equipment Pool (CHEP)
7426    ///
7427    /// rec21
7428    CageCommonwealthHandlingEquipmentPoolChep,
7429    /// Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox
7430    ///
7431    /// rec21
7432    BoxCommonwealthHandlingEquipmentPoolChepEurobox,
7433    /// Drum, iron
7434    ///
7435    /// rec21
7436    DrumIron,
7437    /// Demijohn, non-protected
7438    ///
7439    /// rec21
7440    DemijohnNonProtected,
7441    /// Crate, bulk, cardboard
7442    ///
7443    /// rec21
7444    CrateBulkCardboard,
7445    /// Crate, bulk, plastic
7446    ///
7447    /// rec21
7448    CrateBulkPlastic,
7449    /// Crate, bulk, wooden
7450    ///
7451    /// rec21
7452    CrateBulkWooden,
7453    /// Dispenser
7454    ///
7455    /// rec21
7456    Dispenser,
7457    /// Demijohn, protected
7458    ///
7459    /// rec21
7460    DemijohnProtected,
7461    /// Drum
7462    ///
7463    /// rec21
7464    Drum,
7465    /// Tray, one layer no cover, plastic
7466    ///
7467    /// rec21
7468    TrayOneLayerNoCoverPlastic,
7469    /// Tray, one layer no cover, wooden
7470    ///
7471    /// rec21
7472    TrayOneLayerNoCoverWooden,
7473    /// Tray, one layer no cover, polystyrene
7474    ///
7475    /// rec21
7476    TrayOneLayerNoCoverPolystyrene,
7477    /// Tray, one layer no cover, cardboard
7478    ///
7479    /// rec21
7480    TrayOneLayerNoCoverCardboard,
7481    /// Tray, two layers no cover, plastic tray
7482    ///
7483    /// rec21
7484    TrayTwoLayersNoCoverPlasticTray,
7485    /// Tray, two layers no cover, wooden
7486    ///
7487    /// rec21
7488    TrayTwoLayersNoCoverWooden,
7489    /// Tray, two layers no cover, cardboard
7490    ///
7491    /// rec21
7492    TrayTwoLayersNoCoverCardboard,
7493    /// Bag, plastic
7494    ///
7495    /// rec21
7496    BagPlastic,
7497    /// Case, with pallet base
7498    ///
7499    /// rec21
7500    CaseWithPalletBase,
7501    /// Case, with pallet base, wooden
7502    ///
7503    /// rec21
7504    CaseWithPalletBaseWooden,
7505    /// Case, with pallet base, cardboard
7506    ///
7507    /// rec21
7508    CaseWithPalletBaseCardboard,
7509    /// Case, with pallet base, plastic
7510    ///
7511    /// rec21
7512    CaseWithPalletBasePlastic,
7513    /// Case, with pallet base, metal
7514    ///
7515    /// rec21
7516    CaseWithPalletBaseMetal,
7517    /// Case, isothermic
7518    ///
7519    /// rec21
7520    CaseIsothermic,
7521    /// Envelope
7522    ///
7523    /// rec21
7524    Envelope,
7525    /// Flexibag
7526    ///
7527    /// rec21
7528    Flexibag,
7529    /// Crate, fruit
7530    ///
7531    /// rec21
7532    CrateFruit,
7533    /// Crate, framed
7534    ///
7535    /// rec21
7536    CrateFramed,
7537    /// Flexitank
7538    ///
7539    /// rec21
7540    Flexitank,
7541    /// Firkin
7542    ///
7543    /// rec21
7544    Firkin,
7545    /// Flask
7546    ///
7547    /// rec21
7548    Flask,
7549    /// Footlocker
7550    ///
7551    /// rec21
7552    Footlocker,
7553    /// Filmpack
7554    ///
7555    /// rec21
7556    Filmpack,
7557    /// Frame
7558    ///
7559    /// rec21
7560    Frame,
7561    /// Foodtainer
7562    ///
7563    /// rec21
7564    Foodtainer,
7565    /// Cart, flatbed
7566    ///
7567    /// rec21
7568    CartFlatbed,
7569    /// Bag, flexible container
7570    ///
7571    /// rec21
7572    BagFlexibleContainer,
7573    /// Bottle, gas
7574    ///
7575    /// rec21
7576    BottleGas,
7577    /// Girder
7578    ///
7579    /// rec21
7580    Girder,
7581    /// Container, gallon
7582    ///
7583    /// rec21
7584    ContainerGallon,
7585    /// Receptacle, glass
7586    ///
7587    /// rec21
7588    ReceptacleGlass,
7589    /// Tray, containing horizontally stacked flat items
7590    ///
7591    /// rec21
7592    TrayContainingHorizontallyStackedFlatItems,
7593    /// Bag, gunny
7594    ///
7595    /// rec21
7596    BagGunny,
7597    /// Girders, in bundle/bunch/truss
7598    ///
7599    /// rec21
7600    GirdersInBundleBunchTruss,
7601    /// Basket, with handle, plastic
7602    ///
7603    /// rec21
7604    BasketWithHandlePlastic,
7605    /// Basket, with handle, wooden
7606    ///
7607    /// rec21
7608    BasketWithHandleWooden,
7609    /// Basket, with handle, cardboard
7610    ///
7611    /// rec21
7612    BasketWithHandleCardboard,
7613    /// Hogshead
7614    ///
7615    /// rec21
7616    Hogshead,
7617    /// Hanger
7618    ///
7619    /// rec21
7620    Hanger,
7621    /// Hamper
7622    ///
7623    /// rec21
7624    Hamper,
7625    /// Package, display, wooden
7626    ///
7627    /// rec21
7628    PackageDisplayWooden,
7629    /// Package, display, cardboard
7630    ///
7631    /// rec21
7632    PackageDisplayCardboard,
7633    /// Package, display, plastic
7634    ///
7635    /// rec21
7636    PackageDisplayPlastic,
7637    /// Package, display, metal
7638    ///
7639    /// rec21
7640    PackageDisplayMetal,
7641    /// Package, show
7642    ///
7643    /// rec21
7644    PackageShow,
7645    /// Package, flow
7646    ///
7647    /// rec21
7648    PackageFlow,
7649    /// Package, paper wrapped
7650    ///
7651    /// rec21
7652    PackagePaperWrapped,
7653    /// Drum, plastic
7654    ///
7655    /// rec21
7656    DrumPlastic,
7657    /// Package, cardboard, with bottle grip-holes
7658    ///
7659    /// rec21
7660    PackageCardboardWithBottleGripHoles,
7661    /// Tray, rigid, lidded stackable (CEN TS 14482:2002)
7662    ///
7663    /// rec21
7664    TrayRigidLiddedStackableCenTs144822002,
7665    /// Ingot
7666    ///
7667    /// rec21
7668    Ingot,
7669    /// Ingots, in bundle/bunch/truss
7670    ///
7671    /// rec21
7672    IngotsInBundleBunchTruss,
7673    /// Bag, jumbo
7674    ///
7675    /// rec21
7676    BagJumbo,
7677    /// Jerrican, rectangular
7678    ///
7679    /// rec21
7680    JerricanRectangular,
7681    /// Jug
7682    ///
7683    /// rec21
7684    Jug,
7685    /// Jar
7686    ///
7687    /// rec21
7688    Jar,
7689    /// Jutebag
7690    ///
7691    /// rec21
7692    Jutebag,
7693    /// Jerrican, cylindrical
7694    ///
7695    /// rec21
7696    JerricanCylindrical,
7697    /// Keg
7698    ///
7699    /// rec21
7700    Keg,
7701    /// Kit
7702    ///
7703    /// rec21
7704    Kit_Dup,
7705    /// Luggage
7706    ///
7707    /// rec21
7708    Luggage,
7709    /// Log
7710    ///
7711    /// rec21
7712    Log,
7713    /// Lot
7714    ///
7715    /// rec21
7716    Lot,
7717    /// Lug
7718    ///
7719    /// rec21
7720    Lug,
7721    /// Liftvan
7722    ///
7723    /// rec21
7724    Liftvan,
7725    /// Logs, in bundle/bunch/truss
7726    ///
7727    /// rec21
7728    LogsInBundleBunchTruss,
7729    /// Crate, metal
7730    ///
7731    /// rec21
7732    CrateMetal,
7733    /// Bag, multiply
7734    ///
7735    /// rec21
7736    BagMultiply,
7737    /// Crate, milk
7738    ///
7739    /// rec21
7740    CrateMilk,
7741    /// Container, metal
7742    ///
7743    /// rec21
7744    ContainerMetal,
7745    /// Receptacle, metal
7746    ///
7747    /// rec21
7748    ReceptacleMetal,
7749    /// Sack, multi-wall
7750    ///
7751    /// rec21
7752    SackMultiWall,
7753    /// Mat
7754    ///
7755    /// rec21
7756    Mat,
7757    /// Receptacle, plastic wrapped
7758    ///
7759    /// rec21
7760    ReceptaclePlasticWrapped,
7761    /// Matchbox
7762    ///
7763    /// rec21
7764    Matchbox,
7765    /// Not available
7766    ///
7767    /// rec21
7768    NotAvailable,
7769    /// Unpacked or unpackaged
7770    ///
7771    /// rec21
7772    UnpackedOrUnpackaged,
7773    /// Unpacked or unpackaged, single unit
7774    ///
7775    /// rec21
7776    UnpackedOrUnpackagedSingleUnit,
7777    /// Unpacked or unpackaged, multiple units
7778    ///
7779    /// rec21
7780    UnpackedOrUnpackagedMultipleUnits,
7781    /// Nest
7782    ///
7783    /// rec21
7784    Nest,
7785    /// Net
7786    ///
7787    /// rec21
7788    Net,
7789    /// Net, tube, plastic
7790    ///
7791    /// rec21
7792    NetTubePlastic,
7793    /// Net, tube, textile
7794    ///
7795    /// rec21
7796    NetTubeTextile,
7797    /// Two sided cage on wheels with fixing strap
7798    ///
7799    /// Rec21
7800    TwoSidedCageOnWheelsWithFixingStrap,
7801    /// Trolley
7802    ///
7803    /// Rec21
7804    Trolley,
7805    /// Oneway pallet ISO 0 - 1/2 EURO Pallet
7806    ///
7807    /// Rec21
7808    OnewayPalletIso012EuroPallet,
7809    /// Oneway pallet ISO 1 - 1/1 EURO Pallet
7810    ///
7811    /// Rec21
7812    OnewayPalletIso111EuroPallet,
7813    /// Oneway pallet ISO 2 - 2/1 EURO Pallet
7814    ///
7815    /// Rec21
7816    OnewayPalletIso221EuroPallet,
7817    /// Pallet with exceptional dimensions
7818    ///
7819    /// Rec21
7820    PalletWithExceptionalDimensions,
7821    /// Wooden pallet 40 cm x 80 cm
7822    ///
7823    /// Rec21
7824    WoodenPallet40CmX80Cm,
7825    /// Plastic pallet SRS 60 cm x 80 cm
7826    ///
7827    /// Rec21
7828    PlasticPalletSrs60CmX80Cm,
7829    /// Plastic pallet SRS 80 cm x 120 cm
7830    ///
7831    /// Rec21
7832    PlasticPalletSrs80CmX120Cm,
7833    /// Pallet, CHEP 40 cm x 60 cm
7834    ///
7835    /// rec21
7836    PalletChep40CmX60Cm,
7837    /// Pallet, CHEP 80 cm x 120 cm
7838    ///
7839    /// rec21
7840    PalletChep80CmX120Cm,
7841    /// Pallet, CHEP 100 cm x 120 cm
7842    ///
7843    /// rec21
7844    PalletChep100CmX120Cm,
7845    /// Pallet, AS 4068-1993
7846    ///
7847    /// rec21
7848    PalletAs40681993,
7849    /// Pallet, ISO T11
7850    ///
7851    /// rec21
7852    PalletIsoT11,
7853    /// Platform, unspecified weight or dimension
7854    ///
7855    /// rec21
7856    PlatformUnspecifiedWeightOrDimension,
7857    /// Pallet ISO 0 - 1/2 EURO Pallet
7858    ///
7859    /// Rec21
7860    PalletIso012EuroPallet,
7861    /// Pallet ISO 1 - 1/1 EURO Pallet
7862    ///
7863    /// Rec21
7864    PalletIso111EuroPallet,
7865    /// Pallet ISO 2 – 2/1 EURO Pallet
7866    ///
7867    /// Rec21
7868    PalletIso221EuroPallet,
7869    /// 1/4 EURO Pallet
7870    ///
7871    /// Rec21
7872    _14EuroPallet,
7873    /// Block
7874    ///
7875    /// rec21
7876    Block,
7877    /// 1/8 EURO Pallet
7878    ///
7879    /// Rec21
7880    _18EuroPallet,
7881    /// Synthetic pallet ISO 1
7882    ///
7883    /// Rec21
7884    SyntheticPalletIso1,
7885    /// Synthetic pallet ISO 2
7886    ///
7887    /// Rec21
7888    SyntheticPalletIso2,
7889    /// Wholesaler pallet
7890    ///
7891    /// Rec21
7892    WholesalerPallet,
7893    /// Pallet 80 X 100 cm
7894    ///
7895    /// Rec21
7896    Pallet80X100Cm,
7897    /// Pallet 60 X 100 cm
7898    ///
7899    /// Rec21
7900    Pallet60X100Cm,
7901    /// Oneway pallet
7902    ///
7903    /// Rec21
7904    OnewayPallet,
7905    /// Octabin
7906    ///
7907    /// rec21
7908    Octabin,
7909    /// Container, outer
7910    ///
7911    /// rec21
7912    ContainerOuter,
7913    /// Returnable pallet
7914    ///
7915    /// Rec21
7916    ReturnablePallet,
7917    /// Large bag, pallet sized
7918    ///
7919    /// Rec21
7920    LargeBagPalletSized,
7921    /// A wheeled pallet with raised rim (81 x 67 x 135)
7922    ///
7923    /// Rec21
7924    AWheeledPalletWithRaisedRim81X67X135,
7925    /// A Wheeled pallet with raised rim (81 x 72 x 135)
7926    ///
7927    /// Rec21
7928    AWheeledPalletWithRaisedRim81X72X135,
7929    /// Wheeled pallet with raised rim ( 81 x 60 x 16)
7930    ///
7931    /// Rec21
7932    WheeledPalletWithRaisedRim81X60X16,
7933    /// CHEP pallet 60 cm x 80 cm
7934    ///
7935    /// Rec21
7936    ChepPallet60CmX80Cm,
7937    /// Pan
7938    ///
7939    /// rec21
7940    Pan,
7941    /// LPR pallet 60 cm x 80 cm
7942    ///
7943    /// Rec21
7944    LprPallet60CmX80Cm,
7945    /// LPR pallet 80 cm x 120 cm
7946    ///
7947    /// Rec21
7948    LprPallet80CmX120Cm,
7949    /// Packet
7950    ///
7951    /// rec21
7952    Packet,
7953    /// Pallet, box Combined open-ended box and pallet
7954    ///
7955    /// rec21
7956    PalletBoxCombinedOpenEndedBoxAndPallet,
7957    /// Parcel
7958    ///
7959    /// rec21
7960    Parcel,
7961    /// Pallet, modular, collars 80cms * 100cms
7962    ///
7963    /// rec21
7964    PalletModularCollars80cms100cms,
7965    /// Pallet, modular, collars 80cms * 120cms
7966    ///
7967    /// rec21
7968    PalletModularCollars80cms120cms,
7969    /// Pen
7970    ///
7971    /// rec21
7972    Pen,
7973    /// Plate
7974    ///
7975    /// rec21
7976    Plate,
7977    /// Pitcher
7978    ///
7979    /// rec21
7980    Pitcher,
7981    /// Pipe
7982    ///
7983    /// rec21
7984    Pipe,
7985    /// Punnet
7986    ///
7987    /// rec21
7988    Punnet,
7989    /// Package
7990    ///
7991    /// rec21
7992    Package,
7993    /// Pail
7994    ///
7995    /// rec21
7996    Pail,
7997    /// Plank
7998    ///
7999    /// rec21
8000    Plank,
8001    /// Pouch
8002    ///
8003    /// rec21
8004    Pouch,
8005    /// Piece
8006    ///
8007    /// rec21
8008    Piece_Dup,
8009    /// Receptacle, plastic
8010    ///
8011    /// rec21
8012    ReceptaclePlastic,
8013    /// Pot
8014    ///
8015    /// rec21
8016    Pot,
8017    /// Tray
8018    ///
8019    /// rec21
8020    Tray,
8021    /// Pipes, in bundle/bunch/truss
8022    ///
8023    /// rec21
8024    PipesInBundleBunchTruss,
8025    /// Pallet
8026    ///
8027    /// rec21
8028    Pallet,
8029    /// Plates, in bundle/bunch/truss
8030    ///
8031    /// rec21
8032    PlatesInBundleBunchTruss,
8033    /// Planks, in bundle/bunch/truss
8034    ///
8035    /// rec21
8036    PlanksInBundleBunchTruss,
8037    /// Drum, steel, non-removable head
8038    ///
8039    /// rec21
8040    DrumSteelNonRemovableHead,
8041    /// Drum, steel, removable head
8042    ///
8043    /// rec21
8044    DrumSteelRemovableHead,
8045    /// Drum, aluminium, non-removable head
8046    ///
8047    /// rec21
8048    DrumAluminiumNonRemovableHead,
8049    /// Drum, aluminium, removable head
8050    ///
8051    /// rec21
8052    DrumAluminiumRemovableHead,
8053    /// Drum, plastic, non-removable head
8054    ///
8055    /// rec21
8056    DrumPlasticNonRemovableHead,
8057    /// Drum, plastic, removable head
8058    ///
8059    /// rec21
8060    DrumPlasticRemovableHead,
8061    /// Barrel, wooden, bung type
8062    ///
8063    /// rec21
8064    BarrelWoodenBungType,
8065    /// Barrel, wooden, removable head
8066    ///
8067    /// rec21
8068    BarrelWoodenRemovableHead,
8069    /// Jerrican, steel, non-removable head
8070    ///
8071    /// rec21
8072    JerricanSteelNonRemovableHead,
8073    /// Jerrican, steel, removable head
8074    ///
8075    /// rec21
8076    JerricanSteelRemovableHead,
8077    /// Jerrican, plastic, non-removable head
8078    ///
8079    /// rec21
8080    JerricanPlasticNonRemovableHead,
8081    /// Jerrican, plastic, removable head
8082    ///
8083    /// rec21
8084    JerricanPlasticRemovableHead,
8085    /// Box, wooden, natural wood, ordinary
8086    ///
8087    /// rec21
8088    BoxWoodenNaturalWoodOrdinary,
8089    /// Box, wooden, natural wood, with sift proof walls
8090    ///
8091    /// rec21
8092    BoxWoodenNaturalWoodWithSiftProofWalls,
8093    /// Box, plastic, expanded
8094    ///
8095    /// rec21
8096    BoxPlasticExpanded,
8097    /// Box, plastic, solid
8098    ///
8099    /// rec21
8100    BoxPlasticSolid,
8101    /// Rod
8102    ///
8103    /// rec21
8104    Rod,
8105    /// Ring
8106    ///
8107    /// rec21
8108    Ring,
8109    /// Rack, clothing hanger
8110    ///
8111    /// rec21
8112    RackClothingHanger,
8113    /// Rack
8114    ///
8115    /// rec21
8116    Rack,
8117    /// Reel
8118    ///
8119    /// rec21
8120    Reel,
8121    /// Roll
8122    ///
8123    /// rec21
8124    Roll,
8125    /// Rednet
8126    ///
8127    /// rec21
8128    Rednet,
8129    /// Rods, in bundle/bunch/truss
8130    ///
8131    /// rec21
8132    RodsInBundleBunchTruss,
8133    /// Sack
8134    ///
8135    /// rec21
8136    Sack,
8137    /// Slab
8138    ///
8139    /// rec21
8140    Slab,
8141    /// Crate, shallow
8142    ///
8143    /// rec21
8144    CrateShallow,
8145    /// Spindle
8146    ///
8147    /// rec21
8148    Spindle,
8149    /// Sea-chest
8150    ///
8151    /// rec21
8152    SeaChest,
8153    /// Sachet
8154    ///
8155    /// rec21
8156    Sachet,
8157    /// Skid
8158    ///
8159    /// rec21
8160    Skid,
8161    /// Case, skeleton
8162    ///
8163    /// rec21
8164    CaseSkeleton,
8165    /// Slipsheet
8166    ///
8167    /// rec21
8168    Slipsheet,
8169    /// Sheetmetal
8170    ///
8171    /// rec21
8172    Sheetmetal,
8173    /// Spool
8174    ///
8175    /// rec21
8176    Spool,
8177    /// Sheet, plastic wrapping
8178    ///
8179    /// rec21
8180    SheetPlasticWrapping,
8181    /// Case, steel
8182    ///
8183    /// rec21
8184    CaseSteel,
8185    /// Sheet
8186    ///
8187    /// rec21
8188    Sheet,
8189    /// Suitcase
8190    ///
8191    /// rec21
8192    Suitcase,
8193    /// Envelope, steel
8194    ///
8195    /// rec21
8196    EnvelopeSteel,
8197    /// Shrinkwrapped
8198    ///
8199    /// rec21
8200    Shrinkwrapped,
8201    /// Set
8202    ///
8203    /// Rec21
8204    Set_Dup,
8205    /// Sleeve
8206    ///
8207    /// rec21
8208    Sleeve,
8209    /// Sheets, in bundle/bunch/truss
8210    ///
8211    /// rec21
8212    SheetsInBundleBunchTruss,
8213    /// Tablet
8214    ///
8215    /// rec21
8216    Tablet_Dup,
8217    /// Tub
8218    ///
8219    /// rec21
8220    Tub,
8221    /// Tea-chest
8222    ///
8223    /// rec21
8224    TeaChest,
8225    /// Tube, collapsible
8226    ///
8227    /// rec21
8228    TubeCollapsible,
8229    /// Tyre
8230    ///
8231    /// rec21
8232    Tyre_Dup,
8233    /// Tank container, generic
8234    ///
8235    /// rec21
8236    TankContainerGeneric,
8237    /// Tierce
8238    ///
8239    /// rec21
8240    Tierce,
8241    /// Tank, rectangular
8242    ///
8243    /// rec21
8244    TankRectangular,
8245    /// Tub, with lid
8246    ///
8247    /// rec21
8248    TubWithLid,
8249    /// Tin
8250    ///
8251    /// rec21
8252    Tin,
8253    /// Tun
8254    ///
8255    /// rec21
8256    Tun,
8257    /// Trunk
8258    ///
8259    /// rec21
8260    Trunk,
8261    /// Truss
8262    ///
8263    /// rec21
8264    Truss,
8265    /// Bag, tote
8266    ///
8267    /// rec21
8268    BagTote,
8269    /// Tube
8270    ///
8271    /// rec21
8272    Tube,
8273    /// Tube, with nozzle
8274    ///
8275    /// rec21
8276    TubeWithNozzle,
8277    /// Pallet, triwall
8278    ///
8279    /// rec21
8280    PalletTriwall,
8281    /// Tank, cylindrical
8282    ///
8283    /// rec21
8284    TankCylindrical,
8285    /// Tubes, in bundle/bunch/truss
8286    ///
8287    /// rec21
8288    TubesInBundleBunchTruss,
8289    /// Uncaged
8290    ///
8291    /// rec21
8292    Uncaged,
8293    /// Unit
8294    ///
8295    /// rec21
8296    Unit,
8297    /// Vat
8298    ///
8299    /// rec21
8300    Vat,
8301    /// Bulk, gas (at 1031 mbar and 15°C)
8302    ///
8303    /// rec21
8304    BulkGasAt1031MbarAnd15C,
8305    /// Vial
8306    ///
8307    /// rec21
8308    Vial,
8309    /// Vanpack
8310    ///
8311    /// rec21
8312    Vanpack,
8313    /// Bulk, liquid
8314    ///
8315    /// rec21
8316    BulkLiquid,
8317    /// Vehicle
8318    ///
8319    /// rec21
8320    Vehicle,
8321    /// Bulk, solid, large particles (“nodules”)
8322    ///
8323    /// rec21
8324    BulkSolidLargeParticlesNodules,
8325    /// Vacuum-packed
8326    ///
8327    /// rec21
8328    VacuumPacked,
8329    /// Bulk, liquefied gas (at abnormal temperature/pressure)
8330    ///
8331    /// rec21
8332    BulkLiquefiedGasAtAbnormalTemperaturePressure,
8333    /// Bulk, solid, granular particles (“grains”)
8334    ///
8335    /// rec21
8336    BulkSolidGranularParticlesGrains,
8337    /// Bulk, scrap metal
8338    ///
8339    /// rec21
8340    BulkScrapMetal,
8341    /// Bulk, solid, fine particles (“powders”)
8342    ///
8343    /// rec21
8344    BulkSolidFineParticlesPowders,
8345    /// Intermediate bulk container
8346    ///
8347    /// rec21
8348    IntermediateBulkContainer,
8349    /// Wickerbottle
8350    ///
8351    /// rec21
8352    Wickerbottle,
8353    /// Intermediate bulk container, steel
8354    ///
8355    /// rec21
8356    IntermediateBulkContainerSteel,
8357    /// Intermediate bulk container, aluminium
8358    ///
8359    /// rec21
8360    IntermediateBulkContainerAluminium,
8361    /// Intermediate bulk container, metal
8362    ///
8363    /// rec21
8364    IntermediateBulkContainerMetal,
8365    /// Intermediate bulk container, steel, pressurised > 10 kpa
8366    ///
8367    /// rec21
8368    IntermediateBulkContainerSteelPressurised10Kpa,
8369    /// Intermediate bulk container, aluminium, pressurised > 10 kpa
8370    ///
8371    /// rec21
8372    IntermediateBulkContainerAluminiumPressurised10Kpa,
8373    /// Intermediate bulk container, metal, pressure 10 kpa
8374    ///
8375    /// rec21
8376    IntermediateBulkContainerMetalPressure10Kpa,
8377    /// Intermediate bulk container, steel, liquid
8378    ///
8379    /// rec21
8380    IntermediateBulkContainerSteelLiquid,
8381    /// Intermediate bulk container, aluminium, liquid
8382    ///
8383    /// rec21
8384    IntermediateBulkContainerAluminiumLiquid,
8385    /// Intermediate bulk container, metal, liquid
8386    ///
8387    /// rec21
8388    IntermediateBulkContainerMetalLiquid,
8389    /// Intermediate bulk container, woven plastic, without coat/liner
8390    ///
8391    /// rec21
8392    IntermediateBulkContainerWovenPlasticWithoutCoatLiner,
8393    /// Intermediate bulk container, woven plastic, coated
8394    ///
8395    /// rec21
8396    IntermediateBulkContainerWovenPlasticCoated,
8397    /// Intermediate bulk container, woven plastic, with liner
8398    ///
8399    /// rec21
8400    IntermediateBulkContainerWovenPlasticWithLiner,
8401    /// Intermediate bulk container, woven plastic, coated and liner
8402    ///
8403    /// rec21
8404    IntermediateBulkContainerWovenPlasticCoatedAndLiner,
8405    /// Intermediate bulk container, plastic film
8406    ///
8407    /// rec21
8408    IntermediateBulkContainerPlasticFilm,
8409    /// Intermediate bulk container, textile with out coat/liner
8410    ///
8411    /// rec21
8412    IntermediateBulkContainerTextileWithOutCoatLiner,
8413    /// Intermediate bulk container, natural wood, with inner liner
8414    ///
8415    /// rec21
8416    IntermediateBulkContainerNaturalWoodWithInnerLiner,
8417    /// Intermediate bulk container, textile, coated
8418    ///
8419    /// rec21
8420    IntermediateBulkContainerTextileCoated,
8421    /// Intermediate bulk container, textile, with liner
8422    ///
8423    /// rec21
8424    IntermediateBulkContainerTextileWithLiner,
8425    /// Intermediate bulk container, textile, coated and liner
8426    ///
8427    /// rec21
8428    IntermediateBulkContainerTextileCoatedAndLiner,
8429    /// Intermediate bulk container, plywood, with inner liner
8430    ///
8431    /// rec21
8432    IntermediateBulkContainerPlywoodWithInnerLiner,
8433    /// Intermediate bulk container, reconstituted wood, with inner liner
8434    ///
8435    /// rec21
8436    IntermediateBulkContainerReconstitutedWoodWithInnerLiner,
8437    /// Bag, woven plastic, without inner coat/liner
8438    ///
8439    /// rec21
8440    BagWovenPlasticWithoutInnerCoatLiner,
8441    /// Bag, woven plastic, sift proof
8442    ///
8443    /// rec21
8444    BagWovenPlasticSiftProof,
8445    /// Bag, woven plastic, water resistant
8446    ///
8447    /// rec21
8448    BagWovenPlasticWaterResistant,
8449    /// Bag, plastics film
8450    ///
8451    /// rec21
8452    BagPlasticsFilm,
8453    /// Bag, textile, without inner coat/liner
8454    ///
8455    /// rec21
8456    BagTextileWithoutInnerCoatLiner,
8457    /// Bag, textile, sift proof
8458    ///
8459    /// rec21
8460    BagTextileSiftProof,
8461    /// Bag, textile, water resistant
8462    ///
8463    /// rec21
8464    BagTextileWaterResistant,
8465    /// Bag, paper, multi-wall
8466    ///
8467    /// rec21
8468    BagPaperMultiWall,
8469    /// Bag, paper, multi-wall, water resistant
8470    ///
8471    /// rec21
8472    BagPaperMultiWallWaterResistant,
8473    /// Composite packaging, plastic receptacle in steel drum
8474    ///
8475    /// rec21
8476    CompositePackagingPlasticReceptacleInSteelDrum,
8477    /// Composite packaging, plastic receptacle in steel crate box
8478    ///
8479    /// rec21
8480    CompositePackagingPlasticReceptacleInSteelCrateBox,
8481    /// Composite packaging, plastic receptacle in aluminium drum
8482    ///
8483    /// rec21
8484    CompositePackagingPlasticReceptacleInAluminiumDrum,
8485    /// Composite packaging, plastic receptacle in aluminium crate
8486    ///
8487    /// rec21
8488    CompositePackagingPlasticReceptacleInAluminiumCrate,
8489    /// Composite packaging, plastic receptacle in wooden box
8490    ///
8491    /// rec21
8492    CompositePackagingPlasticReceptacleInWoodenBox,
8493    /// Composite packaging, plastic receptacle in plywood drum
8494    ///
8495    /// rec21
8496    CompositePackagingPlasticReceptacleInPlywoodDrum,
8497    /// Composite packaging, plastic receptacle in plywood box
8498    ///
8499    /// rec21
8500    CompositePackagingPlasticReceptacleInPlywoodBox,
8501    /// Composite packaging, plastic receptacle in fibre drum
8502    ///
8503    /// rec21
8504    CompositePackagingPlasticReceptacleInFibreDrum,
8505    /// Composite packaging, plastic receptacle in fibreboard box
8506    ///
8507    /// rec21
8508    CompositePackagingPlasticReceptacleInFibreboardBox,
8509    /// Composite packaging, plastic receptacle in plastic drum
8510    ///
8511    /// rec21
8512    CompositePackagingPlasticReceptacleInPlasticDrum,
8513    /// Composite packaging, plastic receptacle in solid plastic box
8514    ///
8515    /// rec21
8516    CompositePackagingPlasticReceptacleInSolidPlasticBox,
8517    /// Composite packaging, glass receptacle in steel drum
8518    ///
8519    /// rec21
8520    CompositePackagingGlassReceptacleInSteelDrum,
8521    /// Composite packaging, glass receptacle in steel crate box
8522    ///
8523    /// rec21
8524    CompositePackagingGlassReceptacleInSteelCrateBox,
8525    /// Composite packaging, glass receptacle in aluminium drum
8526    ///
8527    /// rec21
8528    CompositePackagingGlassReceptacleInAluminiumDrum,
8529    /// Composite packaging, glass receptacle in aluminium crate
8530    ///
8531    /// rec21
8532    CompositePackagingGlassReceptacleInAluminiumCrate,
8533    /// Composite packaging, glass receptacle in wooden box
8534    ///
8535    /// rec21
8536    CompositePackagingGlassReceptacleInWoodenBox,
8537    /// Composite packaging, glass receptacle in plywood drum
8538    ///
8539    /// rec21
8540    CompositePackagingGlassReceptacleInPlywoodDrum,
8541    /// Composite packaging, glass receptacle in wickerwork hamper
8542    ///
8543    /// rec21
8544    CompositePackagingGlassReceptacleInWickerworkHamper,
8545    /// Composite packaging, glass receptacle in fibre drum
8546    ///
8547    /// rec21
8548    CompositePackagingGlassReceptacleInFibreDrum,
8549    /// Composite packaging, glass receptacle in fibreboard box
8550    ///
8551    /// rec21
8552    CompositePackagingGlassReceptacleInFibreboardBox,
8553    /// Composite packaging, glass receptacle in expandable plastic pack
8554    ///
8555    /// rec21
8556    CompositePackagingGlassReceptacleInExpandablePlasticPack,
8557    /// Composite packaging, glass receptacle in solid plastic pack
8558    ///
8559    /// rec21
8560    CompositePackagingGlassReceptacleInSolidPlasticPack,
8561    /// Intermediate bulk container, paper, multi-wall
8562    ///
8563    /// rec21
8564    IntermediateBulkContainerPaperMultiWall,
8565    /// Bag, large
8566    ///
8567    /// rec21
8568    BagLarge,
8569    /// Intermediate bulk container, paper, multi-wall, water resistant
8570    ///
8571    /// rec21
8572    IntermediateBulkContainerPaperMultiWallWaterResistant,
8573    /// Intermediate bulk container, rigid plastic, with structural equipment, solids
8574    ///
8575    /// rec21
8576    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids,
8577    /// Intermediate bulk container, rigid plastic, freestanding, solids
8578    ///
8579    /// rec21
8580    IntermediateBulkContainerRigidPlasticFreestandingSolids,
8581    /// Intermediate bulk container, rigid plastic, with structural equipment, pressurised
8582    ///
8583    /// rec21
8584    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised,
8585    /// Intermediate bulk container, rigid plastic, freestanding, pressurised
8586    ///
8587    /// rec21
8588    IntermediateBulkContainerRigidPlasticFreestandingPressurised,
8589    /// Intermediate bulk container, rigid plastic, with structural equipment, liquids
8590    ///
8591    /// rec21
8592    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids,
8593    /// Intermediate bulk container, rigid plastic, freestanding, liquids
8594    ///
8595    /// rec21
8596    IntermediateBulkContainerRigidPlasticFreestandingLiquids,
8597    /// Intermediate bulk container, composite, rigid plastic, solids
8598    ///
8599    /// rec21
8600    IntermediateBulkContainerCompositeRigidPlasticSolids,
8601    /// Intermediate bulk container, composite, flexible plastic, solids
8602    ///
8603    /// rec21
8604    IntermediateBulkContainerCompositeFlexiblePlasticSolids,
8605    /// Intermediate bulk container, composite, rigid plastic, pressurised
8606    ///
8607    /// rec21
8608    IntermediateBulkContainerCompositeRigidPlasticPressurised,
8609    /// Intermediate bulk container, composite, flexible plastic, pressurised
8610    ///
8611    /// rec21
8612    IntermediateBulkContainerCompositeFlexiblePlasticPressurised,
8613    /// Intermediate bulk container, composite, rigid plastic, liquids
8614    ///
8615    /// rec21
8616    IntermediateBulkContainerCompositeRigidPlasticLiquids,
8617    /// Intermediate bulk container, composite, flexible plastic, liquids
8618    ///
8619    /// rec21
8620    IntermediateBulkContainerCompositeFlexiblePlasticLiquids,
8621    /// Intermediate bulk container, composite
8622    ///
8623    /// rec21
8624    IntermediateBulkContainerComposite,
8625    /// Intermediate bulk container, fibreboard
8626    ///
8627    /// rec21
8628    IntermediateBulkContainerFibreboard,
8629    /// Intermediate bulk container, flexible
8630    ///
8631    /// rec21
8632    IntermediateBulkContainerFlexible,
8633    /// Intermediate bulk container, metal, other than steel
8634    ///
8635    /// rec21
8636    IntermediateBulkContainerMetalOtherThanSteel,
8637    /// Intermediate bulk container, natural wood
8638    ///
8639    /// rec21
8640    IntermediateBulkContainerNaturalWood,
8641    /// Intermediate bulk container, plywood
8642    ///
8643    /// rec21
8644    IntermediateBulkContainerPlywood,
8645    /// Intermediate bulk container, reconstituted wood
8646    ///
8647    /// rec21
8648    IntermediateBulkContainerReconstitutedWood,
8649    /// Mutually defined
8650    ///
8651    /// rec21
8652    MutuallyDefined_Dup,
8653}
8654
8655impl crate::Code for Unit {
8656    fn code(&self) -> &str {
8657        match self {
8658            Unit::Group => "10",
8659            Unit::Outfit => "11",
8660            Unit::Ration => "13",
8661            Unit::Shot => "14",
8662            Unit::StickMilitary => "15",
8663            Unit::TwentyFootContainer => "20",
8664            Unit::FortyFootContainer => "21",
8665            Unit::DecilitrePerGram => "22",
8666            Unit::GramPerCubicCentimetre => "23",
8667            Unit::TheoreticalPound => "24",
8668            Unit::GramPerSquareCentimetre => "25",
8669            Unit::TheoreticalTon => "27",
8670            Unit::KilogramPerSquareMetre => "28",
8671            Unit::KilopascalSquareMetrePerGram => "33",
8672            Unit::KilopascalPerMillimetre => "34",
8673            Unit::MillilitrePerSquareCentimetreSecond => "35",
8674            Unit::OuncePerSquareFoot => "37",
8675            Unit::OuncePerSquareFootPer001inch => "38",
8676            Unit::MillilitrePerSecond => "40",
8677            Unit::MillilitrePerMinute => "41",
8678            Unit::Sitas => "56",
8679            Unit::Mesh => "57",
8680            Unit::NetKilogram => "58",
8681            Unit::PartPerMillion => "59",
8682            Unit::PercentWeight => "60",
8683            Unit::PartPerBillionUs => "61",
8684            Unit::Millipascal => "74",
8685            Unit::MilliInch => "77",
8686            Unit::PoundPerSquareInchAbsolute => "80",
8687            Unit::Henry => "81",
8688            Unit::FootPoundForce => "85",
8689            Unit::PoundPerCubicFoot => "87",
8690            Unit::Poise => "89",
8691            Unit::Stokes => "91",
8692            Unit::FixedRate => "1I",
8693            Unit::RadianPerSecond => "2A",
8694            Unit::RadianPerSecondSquared => "2B",
8695            Unit::Roentgen => "2C",
8696            Unit::VoltAc => "2G",
8697            Unit::VoltDc => "2H",
8698            Unit::BritishThermalUnitInternationalTablePerHour => "2I",
8699            Unit::CubicCentimetrePerSecond => "2J",
8700            Unit::CubicFootPerHour => "2K",
8701            Unit::CubicFootPerMinute => "2L",
8702            Unit::CentimetrePerSecond => "2M",
8703            Unit::Decibel => "2N",
8704            Unit::Kilobyte => "2P",
8705            Unit::Kilobecquerel => "2Q",
8706            Unit::Kilocurie => "2R",
8707            Unit::Megagram => "2U",
8708            Unit::MetrePerMinute => "2X",
8709            Unit::Milliroentgen => "2Y",
8710            Unit::Millivolt => "2Z",
8711            Unit::Megajoule => "3B",
8712            Unit::Manmonth => "3C",
8713            Unit::Centistokes => "4C",
8714            Unit::Microlitre => "4G",
8715            Unit::MicrometreMicron => "4H",
8716            Unit::Milliampere => "4K",
8717            Unit::Megabyte => "4L",
8718            Unit::MilligramPerHour => "4M",
8719            Unit::Megabecquerel => "4N",
8720            Unit::Microfarad => "4O",
8721            Unit::NewtonPerMetre => "4P",
8722            Unit::OunceInch => "4Q",
8723            Unit::OunceFoot => "4R",
8724            Unit::Picofarad => "4T",
8725            Unit::PoundPerHour => "4U",
8726            Unit::TonUsPerHour => "4W",
8727            Unit::KilolitrePerHour => "4X",
8728            Unit::BarrelUsPerMinute => "5A",
8729            Unit::Batch => "5B",
8730            Unit::MmscfDay => "5E",
8731            Unit::HydraulicHorsePower => "5J",
8732            Unit::AmpereSquareMetrePerJouleSecond => "A10",
8733            Unit::Angstrom => "A11",
8734            Unit::AstronomicalUnit => "A12",
8735            Unit::Attojoule => "A13",
8736            Unit::Barn => "A14",
8737            Unit::BarnPerElectronvolt => "A15",
8738            Unit::BarnPerSteradianElectronvolt => "A16",
8739            Unit::BarnPerSteradian => "A17",
8740            Unit::BecquerelPerKilogram => "A18",
8741            Unit::BecquerelPerCubicMetre => "A19",
8742            Unit::AmperePerCentimetre => "A2",
8743            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "A20",
8744            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "A21",
8745            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "A22",
8746            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "A23",
8747            Unit::CandelaPerSquareMetre => "A24",
8748            Unit::CoulombMetre => "A26",
8749            Unit::CoulombMetreSquaredPerVolt => "A27",
8750            Unit::CoulombPerCubicCentimetre => "A28",
8751            Unit::CoulombPerCubicMetre => "A29",
8752            Unit::AmperePerMillimetre => "A3",
8753            Unit::CoulombPerCubicMillimetre => "A30",
8754            Unit::CoulombPerKilogramSecond => "A31",
8755            Unit::CoulombPerMole => "A32",
8756            Unit::CoulombPerSquareCentimetre => "A33",
8757            Unit::CoulombPerSquareMetre => "A34",
8758            Unit::CoulombPerSquareMillimetre => "A35",
8759            Unit::CubicCentimetrePerMole => "A36",
8760            Unit::CubicDecimetrePerMole => "A37",
8761            Unit::CubicMetrePerCoulomb => "A38",
8762            Unit::CubicMetrePerKilogram => "A39",
8763            Unit::AmperePerSquareCentimetre => "A4",
8764            Unit::CubicMetrePerMole => "A40",
8765            Unit::AmperePerSquareMetre => "A41",
8766            Unit::CuriePerKilogram => "A42",
8767            Unit::DeadweightTonnage => "A43",
8768            Unit::Decalitre => "A44",
8769            Unit::Decametre => "A45",
8770            Unit::Decitex => "A47",
8771            Unit::DegreeRankine => "A48",
8772            Unit::Denier => "A49",
8773            Unit::AmpereSquareMetre => "A5",
8774            Unit::Electronvolt => "A53",
8775            Unit::ElectronvoltPerMetre => "A54",
8776            Unit::ElectronvoltSquareMetre => "A55",
8777            Unit::ElectronvoltSquareMetrePerKilogram => "A56",
8778            Unit::_8PartCloudCover => "A59",
8779            Unit::AmperePerSquareMetreKelvinSquared => "A6",
8780            Unit::Exajoule => "A68",
8781            Unit::FaradPerMetre => "A69",
8782            Unit::AmperePerSquareMillimetre => "A7",
8783            Unit::Femtojoule => "A70",
8784            Unit::Femtometre => "A71",
8785            Unit::FootPerSecondSquared => "A73",
8786            Unit::FootPoundForcePerSecond => "A74",
8787            Unit::FreightTon => "A75",
8788            Unit::Gal => "A76",
8789            Unit::AmpereSecond => "A8",
8790            Unit::GigacoulombPerCubicMetre => "A84",
8791            Unit::Gigaelectronvolt => "A85",
8792            Unit::Gigahertz => "A86",
8793            Unit::Gigaohm => "A87",
8794            Unit::GigaohmMetre => "A88",
8795            Unit::Gigapascal => "A89",
8796            Unit::Rate => "A9",
8797            Unit::Gigawatt => "A90",
8798            Unit::Gon => "A91",
8799            Unit::GramPerCubicMetre => "A93",
8800            Unit::GramPerMole => "A94",
8801            Unit::Gray => "A95",
8802            Unit::GrayPerSecond => "A96",
8803            Unit::Hectopascal => "A97",
8804            Unit::HenryPerMetre => "A98",
8805            Unit::Bit => "A99",
8806            Unit::Ball => "AA",
8807            Unit::BulkPack => "AB",
8808            Unit::Acre => "ACR",
8809            Unit::Activity => "ACT",
8810            Unit::Byte => "AD",
8811            Unit::AmperePerMetre => "AE",
8812            Unit::AdditionalMinute => "AH",
8813            Unit::AverageMinutePerCall => "AI",
8814            Unit::Fathom => "AK",
8815            Unit::AccessLine => "AL",
8816            Unit::AmpereHour => "AMH",
8817            Unit::Ampere => "AMP",
8818            Unit::Year => "ANN",
8819            Unit::TroyOunceOrApothecaryOunce => "APZ",
8820            Unit::AntiHemophilicFactorAhfUnit => "AQ",
8821            Unit::Assortment => "AS",
8822            Unit::AlcoholicStrengthByMass => "ASM",
8823            Unit::AlcoholicStrengthByVolume => "ASU",
8824            Unit::StandardAtmosphere => "ATM",
8825            Unit::AmericanWireGauge => "AWG",
8826            Unit::Assembly => "AY",
8827            Unit::BritishThermalUnitInternationalTablePerPound => "AZ",
8828            Unit::BarrelUsPerDay => "B1",
8829            Unit::BitPerSecond => "B10",
8830            Unit::JoulePerKilogramKelvin => "B11",
8831            Unit::JoulePerMetre => "B12",
8832            Unit::JoulePerSquareMetre => "B13",
8833            Unit::JoulePerMetreToFourthPower => "B14",
8834            Unit::JoulePerMole => "B15",
8835            Unit::JoulePerMoleKelvin => "B16",
8836            Unit::Credit => "B17",
8837            Unit::JouleSecond => "B18",
8838            Unit::Digit => "B19",
8839            Unit::JouleSquareMetrePerKilogram => "B20",
8840            Unit::KelvinPerWatt => "B21",
8841            Unit::Kiloampere => "B22",
8842            Unit::KiloamperePerSquareMetre => "B23",
8843            Unit::KiloamperePerMetre => "B24",
8844            Unit::KilobecquerelPerKilogram => "B25",
8845            Unit::Kilocoulomb => "B26",
8846            Unit::KilocoulombPerCubicMetre => "B27",
8847            Unit::KilocoulombPerSquareMetre => "B28",
8848            Unit::Kiloelectronvolt => "B29",
8849            Unit::BattingPound => "B3",
8850            Unit::Gibibit => "B30",
8851            Unit::KilogramMetrePerSecond => "B31",
8852            Unit::KilogramMetreSquared => "B32",
8853            Unit::KilogramMetreSquaredPerSecond => "B33",
8854            Unit::KilogramPerCubicDecimetre => "B34",
8855            Unit::KilogramPerLitre => "B35",
8856            Unit::BarrelImperial => "B4",
8857            Unit::KilojoulePerKelvin => "B41",
8858            Unit::KilojoulePerKilogram => "B42",
8859            Unit::KilojoulePerKilogramKelvin => "B43",
8860            Unit::KilojoulePerMole => "B44",
8861            Unit::Kilomole => "B45",
8862            Unit::KilomolePerCubicMetre => "B46",
8863            Unit::Kilonewton => "B47",
8864            Unit::KilonewtonMetre => "B48",
8865            Unit::Kiloohm => "B49",
8866            Unit::KiloohmMetre => "B50",
8867            Unit::Kilosecond => "B52",
8868            Unit::Kilosiemens => "B53",
8869            Unit::KilosiemensPerMetre => "B54",
8870            Unit::KilovoltPerMetre => "B55",
8871            Unit::KiloweberPerMetre => "B56",
8872            Unit::LightYear => "B57",
8873            Unit::LitrePerMole => "B58",
8874            Unit::LumenHour => "B59",
8875            Unit::LumenPerSquareMetre => "B60",
8876            Unit::LumenPerWatt => "B61",
8877            Unit::LumenSecond => "B62",
8878            Unit::LuxHour => "B63",
8879            Unit::LuxSecond => "B64",
8880            Unit::MegaamperePerSquareMetre => "B66",
8881            Unit::MegabecquerelPerKilogram => "B67",
8882            Unit::Gigabit => "B68",
8883            Unit::MegacoulombPerCubicMetre => "B69",
8884            Unit::Cycle => "B7",
8885            Unit::MegacoulombPerSquareMetre => "B70",
8886            Unit::Megaelectronvolt => "B71",
8887            Unit::MegagramPerCubicMetre => "B72",
8888            Unit::Meganewton => "B73",
8889            Unit::MeganewtonMetre => "B74",
8890            Unit::Megaohm => "B75",
8891            Unit::MegaohmMetre => "B76",
8892            Unit::MegasiemensPerMetre => "B77",
8893            Unit::Megavolt => "B78",
8894            Unit::MegavoltPerMetre => "B79",
8895            Unit::JoulePerCubicMetre => "B8",
8896            Unit::GigabitPerSecond => "B80",
8897            Unit::ReciprocalMetreSquaredReciprocalSecond => "B81",
8898            Unit::InchPerLinearFoot => "B82",
8899            Unit::MetreToFourthPower => "B83",
8900            Unit::Microampere => "B84",
8901            Unit::Microbar => "B85",
8902            Unit::Microcoulomb => "B86",
8903            Unit::MicrocoulombPerCubicMetre => "B87",
8904            Unit::MicrocoulombPerSquareMetre => "B88",
8905            Unit::MicrofaradPerMetre => "B89",
8906            Unit::Microhenry => "B90",
8907            Unit::MicrohenryPerMetre => "B91",
8908            Unit::Micronewton => "B92",
8909            Unit::MicronewtonMetre => "B93",
8910            Unit::Microohm => "B94",
8911            Unit::MicroohmMetre => "B95",
8912            Unit::Micropascal => "B96",
8913            Unit::Microradian => "B97",
8914            Unit::Microsecond => "B98",
8915            Unit::Microsiemens => "B99",
8916            Unit::BarUnitPressure => "BAR",
8917            Unit::BaseBox => "BB",
8918            Unit::BoardFoot => "BFT",
8919            Unit::BrakeHorsePower => "BHP",
8920            Unit::BillionEur => "BIL",
8921            Unit::DryBarrelUs => "BLD",
8922            Unit::BarrelUs => "BLL",
8923            Unit::HundredBoardFoot => "BP",
8924            Unit::BeatsPerMinute => "BPM",
8925            Unit::Becquerel => "BQL",
8926            Unit::BritishThermalUnitInternationalTable => "BTU",
8927            Unit::BushelUs => "BUA",
8928            Unit::BushelUk => "BUI",
8929            Unit::Call => "C0",
8930            Unit::Millifarad => "C10",
8931            Unit::Milligal => "C11",
8932            Unit::MilligramPerMetre => "C12",
8933            Unit::Milligray => "C13",
8934            Unit::Millihenry => "C14",
8935            Unit::Millijoule => "C15",
8936            Unit::MillimetrePerSecond => "C16",
8937            Unit::MillimetreSquaredPerSecond => "C17",
8938            Unit::Millimole => "C18",
8939            Unit::MolePerKilogram => "C19",
8940            Unit::Millinewton => "C20",
8941            Unit::Kibibit => "C21",
8942            Unit::MillinewtonPerMetre => "C22",
8943            Unit::MilliohmMetre => "C23",
8944            Unit::MillipascalSecond => "C24",
8945            Unit::Milliradian => "C25",
8946            Unit::Millisecond => "C26",
8947            Unit::Millisiemens => "C27",
8948            Unit::Millisievert => "C28",
8949            Unit::Millitesla => "C29",
8950            Unit::MicrovoltPerMetre => "C3",
8951            Unit::MillivoltPerMetre => "C30",
8952            Unit::Milliwatt => "C31",
8953            Unit::MilliwattPerSquareMetre => "C32",
8954            Unit::Milliweber => "C33",
8955            Unit::Mole => "C34",
8956            Unit::MolePerCubicDecimetre => "C35",
8957            Unit::MolePerCubicMetre => "C36",
8958            Unit::Kilobit => "C37",
8959            Unit::MolePerLitre => "C38",
8960            Unit::Nanoampere => "C39",
8961            Unit::Nanocoulomb => "C40",
8962            Unit::Nanofarad => "C41",
8963            Unit::NanofaradPerMetre => "C42",
8964            Unit::Nanohenry => "C43",
8965            Unit::NanohenryPerMetre => "C44",
8966            Unit::Nanometre => "C45",
8967            Unit::NanoohmMetre => "C46",
8968            Unit::Nanosecond => "C47",
8969            Unit::Nanotesla => "C48",
8970            Unit::Nanowatt => "C49",
8971            Unit::Neper => "C50",
8972            Unit::NeperPerSecond => "C51",
8973            Unit::Picometre => "C52",
8974            Unit::NewtonMetreSecond => "C53",
8975            Unit::NewtonMetreSquaredPerKilogramSquared => "C54",
8976            Unit::NewtonPerSquareMetre => "C55",
8977            Unit::NewtonPerSquareMillimetre => "C56",
8978            Unit::NewtonSecond => "C57",
8979            Unit::NewtonSecondPerMetre => "C58",
8980            Unit::Octave => "C59",
8981            Unit::OhmCentimetre => "C60",
8982            Unit::OhmMetre => "C61",
8983            Unit::One => "C62",
8984            Unit::Parsec => "C63",
8985            Unit::PascalPerKelvin => "C64",
8986            Unit::PascalSecond => "C65",
8987            Unit::PascalSecondPerCubicMetre => "C66",
8988            Unit::PascalSecondPerMetre => "C67",
8989            Unit::Petajoule => "C68",
8990            Unit::Phon => "C69",
8991            Unit::Centipoise => "C7",
8992            Unit::Picoampere => "C70",
8993            Unit::Picocoulomb => "C71",
8994            Unit::PicofaradPerMetre => "C72",
8995            Unit::Picohenry => "C73",
8996            Unit::KilobitPerSecond => "C74",
8997            Unit::Picowatt => "C75",
8998            Unit::PicowattPerSquareMetre => "C76",
8999            Unit::PoundForce => "C78",
9000            Unit::KilovoltAmpereHour => "C79",
9001            Unit::MillicoulombPerKilogram => "C8",
9002            Unit::Rad => "C80",
9003            Unit::Radian => "C81",
9004            Unit::RadianSquareMetrePerMole => "C82",
9005            Unit::RadianSquareMetrePerKilogram => "C83",
9006            Unit::RadianPerMetre => "C84",
9007            Unit::ReciprocalAngstrom => "C85",
9008            Unit::ReciprocalCubicMetre => "C86",
9009            Unit::ReciprocalCubicMetrePerSecond => "C87",
9010            Unit::ReciprocalElectronVoltPerCubicMetre => "C88",
9011            Unit::ReciprocalHenry => "C89",
9012            Unit::CoilGroup => "C9",
9013            Unit::ReciprocalJoulePerCubicMetre => "C90",
9014            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "C91",
9015            Unit::ReciprocalMetre => "C92",
9016            Unit::ReciprocalSquareMetre => "C93",
9017            Unit::ReciprocalMinute => "C94",
9018            Unit::ReciprocalMole => "C95",
9019            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "C96",
9020            Unit::ReciprocalSecond => "C97",
9021            Unit::ReciprocalSecondPerMetreSquared => "C99",
9022            Unit::CarryingCapacityInMetricTon => "CCT",
9023            Unit::Candela => "CDL",
9024            Unit::DegreeCelsius => "CEL",
9025            Unit::Hundred => "CEN",
9026            Unit::Card => "CG",
9027            Unit::Centigram => "CGM",
9028            Unit::CoulombPerKilogram => "CKG",
9029            Unit::HundredLeave => "CLF",
9030            Unit::Centilitre => "CLT",
9031            Unit::SquareCentimetre => "CMK",
9032            Unit::CubicCentimetre => "CMQ",
9033            Unit::Centimetre => "CMT",
9034            Unit::HundredPack => "CNP",
9035            Unit::CentalUk => "CNT",
9036            Unit::Coulomb => "COU",
9037            Unit::ContentGram => "CTG",
9038            Unit::MetricCarat => "CTM",
9039            Unit::ContentTonMetric => "CTN",
9040            Unit::Curie => "CUR",
9041            Unit::HundredPoundCwtHundredWeightUs => "CWA",
9042            Unit::HundredWeightUk => "CWI",
9043            Unit::KilowattHourPerHour => "D03",
9044            Unit::LotUnitWeight => "D04",
9045            Unit::ReciprocalSecondPerSteradian => "D1",
9046            Unit::SiemensPerMetre => "D10",
9047            Unit::Mebibit => "D11",
9048            Unit::SiemensSquareMetrePerMole => "D12",
9049            Unit::Sievert => "D13",
9050            Unit::Sone => "D15",
9051            Unit::SquareCentimetrePerErg => "D16",
9052            Unit::SquareCentimetrePerSteradianErg => "D17",
9053            Unit::MetreKelvin => "D18",
9054            Unit::SquareMetreKelvinPerWatt => "D19",
9055            Unit::ReciprocalSecondPerSteradianMetreSquared => "D2",
9056            Unit::SquareMetrePerJoule => "D20",
9057            Unit::SquareMetrePerKilogram => "D21",
9058            Unit::SquareMetrePerMole => "D22",
9059            Unit::PenGramProtein => "D23",
9060            Unit::SquareMetrePerSteradian => "D24",
9061            Unit::SquareMetrePerSteradianJoule => "D25",
9062            Unit::SquareMetrePerVoltSecond => "D26",
9063            Unit::Steradian => "D27",
9064            Unit::Terahertz => "D29",
9065            Unit::Terajoule => "D30",
9066            Unit::Terawatt => "D31",
9067            Unit::TerawattHour => "D32",
9068            Unit::Tesla => "D33",
9069            Unit::Tex => "D34",
9070            Unit::Megabit => "D36",
9071            Unit::TonnePerCubicMetre => "D41",
9072            Unit::TropicalYear => "D42",
9073            Unit::UnifiedAtomicMassUnit => "D43",
9074            Unit::Var => "D44",
9075            Unit::VoltSquaredPerKelvinSquared => "D45",
9076            Unit::VoltAmpere => "D46",
9077            Unit::VoltPerCentimetre => "D47",
9078            Unit::VoltPerKelvin => "D48",
9079            Unit::MillivoltPerKelvin => "D49",
9080            Unit::KilogramPerSquareCentimetre => "D5",
9081            Unit::VoltPerMetre => "D50",
9082            Unit::VoltPerMillimetre => "D51",
9083            Unit::WattPerKelvin => "D52",
9084            Unit::WattPerMetreKelvin => "D53",
9085            Unit::WattPerSquareMetre => "D54",
9086            Unit::WattPerSquareMetreKelvin => "D55",
9087            Unit::WattPerSquareMetreKelvinToFourthPower => "D56",
9088            Unit::WattPerSteradian => "D57",
9089            Unit::WattPerSteradianSquareMetre => "D58",
9090            Unit::WeberPerMetre => "D59",
9091            Unit::RoentgenPerSecond => "D6",
9092            Unit::WeberPerMillimetre => "D60",
9093            Unit::MinuteUnitAngle => "D61",
9094            Unit::SecondUnitAngle => "D62",
9095            Unit::Book => "D63",
9096            Unit::Round => "D65",
9097            Unit::NumberWords => "D68",
9098            Unit::InchToFourthPower => "D69",
9099            Unit::JouleSquareMetre => "D73",
9100            Unit::KilogramPerMole => "D74",
9101            Unit::Megacoulomb => "D77",
9102            Unit::MegajoulePerSecond => "D78",
9103            Unit::Microwatt => "D80",
9104            Unit::Microtesla => "D81",
9105            Unit::Microvolt => "D82",
9106            Unit::MillinewtonMetre => "D83",
9107            Unit::MicrowattPerSquareMetre => "D85",
9108            Unit::Millicoulomb => "D86",
9109            Unit::MillimolePerKilogram => "D87",
9110            Unit::MillicoulombPerCubicMetre => "D88",
9111            Unit::MillicoulombPerSquareMetre => "D89",
9112            Unit::Rem => "D91",
9113            Unit::SecondPerCubicMetre => "D93",
9114            Unit::SecondPerCubicMetreRadian => "D94",
9115            Unit::JoulePerGram => "D95",
9116            Unit::Decare => "DAA",
9117            Unit::TenDay => "DAD",
9118            Unit::Day => "DAY",
9119            Unit::DryPound => "DB",
9120            Unit::DecibelMilliwatts => "DBM",
9121            Unit::DecibelWatt => "DBW",
9122            Unit::DegreeUnitAngle => "DD",
9123            Unit::Decade => "DEC",
9124            Unit::Decigram => "DG",
9125            Unit::Decagram => "DJ",
9126            Unit::Decilitre => "DLT",
9127            Unit::CubicDecametre => "DMA",
9128            Unit::SquareDecimetre => "DMK",
9129            Unit::StandardKilolitre => "DMO",
9130            Unit::CubicDecimetre => "DMQ",
9131            Unit::Decimetre => "DMT",
9132            Unit::DecinewtonMetre => "DN",
9133            Unit::DozenPiece => "DPC",
9134            Unit::DozenPair => "DPR",
9135            Unit::DisplacementTonnage => "DPT",
9136            Unit::DramUs => "DRA",
9137            Unit::DramUk => "DRI",
9138            Unit::DozenRoll => "DRL",
9139            Unit::DryTon => "DT",
9140            Unit::Decitonne => "DTN",
9141            Unit::Pennyweight => "DWT",
9142            Unit::Dozen => "DZN",
9143            Unit::DozenPack => "DZP",
9144            Unit::NewtonPerSquareCentimetre => "E01",
9145            Unit::MegawattHourPerHour => "E07",
9146            Unit::MegawattPerHertz => "E08",
9147            Unit::MilliampereHour => "E09",
9148            Unit::DegreeDay => "E10",
9149            Unit::Mille => "E12",
9150            Unit::KilocalorieInternationalTable => "E14",
9151            Unit::KilocalorieThermochemicalPerHour => "E15",
9152            Unit::MillionBtuItPerHour => "E16",
9153            Unit::CubicFootPerSecond => "E17",
9154            Unit::TonnePerHour => "E18",
9155            Unit::Ping => "E19",
9156            Unit::MegabitPerSecond => "E20",
9157            Unit::Shares => "E21",
9158            Unit::Teu => "E22",
9159            Unit::Tyre => "E23",
9160            Unit::ActiveUnit => "E25",
9161            Unit::Dose => "E27",
9162            Unit::AirDryTon => "E28",
9163            Unit::Strand => "E30",
9164            Unit::SquareMetrePerLitre => "E31",
9165            Unit::LitrePerHour => "E32",
9166            Unit::FootPerThousand => "E33",
9167            Unit::Gigabyte => "E34",
9168            Unit::Terabyte => "E35",
9169            Unit::Petabyte => "E36",
9170            Unit::Pixel => "E37",
9171            Unit::Megapixel => "E38",
9172            Unit::DotsPerInch => "E39",
9173            Unit::GrossKilogram => "E4",
9174            Unit::PartPerHundredThousand => "E40",
9175            Unit::KilogramForcePerSquareMillimetre => "E41",
9176            Unit::KilogramForcePerSquareCentimetre => "E42",
9177            Unit::JoulePerSquareCentimetre => "E43",
9178            Unit::KilogramForceMetrePerSquareCentimetre => "E44",
9179            Unit::Milliohm => "E45",
9180            Unit::KilowattHourPerCubicMetre => "E46",
9181            Unit::KilowattHourPerKelvin => "E47",
9182            Unit::ServiceUnit => "E48",
9183            Unit::WorkingDay => "E49",
9184            Unit::AccountingUnit => "E50",
9185            Unit::Job => "E51",
9186            Unit::RunFoot => "E52",
9187            Unit::Test => "E53",
9188            Unit::Trip => "E54",
9189            Unit::Use => "E55",
9190            Unit::Well => "E56",
9191            Unit::Zone => "E57",
9192            Unit::ExabitPerSecond => "E58",
9193            Unit::Exbibyte => "E59",
9194            Unit::Pebibyte => "E60",
9195            Unit::Tebibyte => "E61",
9196            Unit::Gibibyte => "E62",
9197            Unit::Mebibyte => "E63",
9198            Unit::Kibibyte => "E64",
9199            Unit::ExbibitPerMetre => "E65",
9200            Unit::ExbibitPerSquareMetre => "E66",
9201            Unit::ExbibitPerCubicMetre => "E67",
9202            Unit::GigabytePerSecond => "E68",
9203            Unit::GibibitPerMetre => "E69",
9204            Unit::GibibitPerSquareMetre => "E70",
9205            Unit::GibibitPerCubicMetre => "E71",
9206            Unit::KibibitPerMetre => "E72",
9207            Unit::KibibitPerSquareMetre => "E73",
9208            Unit::KibibitPerCubicMetre => "E74",
9209            Unit::MebibitPerMetre => "E75",
9210            Unit::MebibitPerSquareMetre => "E76",
9211            Unit::MebibitPerCubicMetre => "E77",
9212            Unit::Petabit => "E78",
9213            Unit::PetabitPerSecond => "E79",
9214            Unit::PebibitPerMetre => "E80",
9215            Unit::PebibitPerSquareMetre => "E81",
9216            Unit::PebibitPerCubicMetre => "E82",
9217            Unit::Terabit => "E83",
9218            Unit::TerabitPerSecond => "E84",
9219            Unit::TebibitPerMetre => "E85",
9220            Unit::TebibitPerCubicMetre => "E86",
9221            Unit::TebibitPerSquareMetre => "E87",
9222            Unit::BitPerMetre => "E88",
9223            Unit::BitPerSquareMetre => "E89",
9224            Unit::ReciprocalCentimetre => "E90",
9225            Unit::ReciprocalDay => "E91",
9226            Unit::CubicDecimetrePerHour => "E92",
9227            Unit::KilogramPerHour => "E93",
9228            Unit::KilomolePerSecond => "E94",
9229            Unit::MolePerSecond => "E95",
9230            Unit::DegreePerSecond => "E96",
9231            Unit::MillimetrePerDegreeCelciusMetre => "E97",
9232            Unit::DegreeCelsiusPerKelvin => "E98",
9233            Unit::HectopascalPerBar => "E99",
9234            Unit::Each => "EA",
9235            Unit::ElectronicMailBox => "EB",
9236            Unit::EquivalentGallon => "EQ",
9237            Unit::BitPerCubicMetre => "F01",
9238            Unit::KelvinPerKelvin => "F02",
9239            Unit::KilopascalPerBar => "F03",
9240            Unit::MillibarPerBar => "F04",
9241            Unit::MegapascalPerBar => "F05",
9242            Unit::PoisePerBar => "F06",
9243            Unit::PascalPerBar => "F07",
9244            Unit::MilliamperePerInch => "F08",
9245            Unit::KelvinPerHour => "F10",
9246            Unit::KelvinPerMinute => "F11",
9247            Unit::KelvinPerSecond => "F12",
9248            Unit::Slug => "F13",
9249            Unit::GramPerKelvin => "F14",
9250            Unit::KilogramPerKelvin => "F15",
9251            Unit::MilligramPerKelvin => "F16",
9252            Unit::PoundForcePerFoot => "F17",
9253            Unit::KilogramSquareCentimetre => "F18",
9254            Unit::KilogramSquareMillimetre => "F19",
9255            Unit::PoundInchSquared => "F20",
9256            Unit::PoundForceInch => "F21",
9257            Unit::PoundForceFootPerAmpere => "F22",
9258            Unit::GramPerCubicDecimetre => "F23",
9259            Unit::KilogramPerKilomol => "F24",
9260            Unit::GramPerHertz => "F25",
9261            Unit::GramPerDay => "F26",
9262            Unit::GramPerHour => "F27",
9263            Unit::GramPerMinute => "F28",
9264            Unit::GramPerSecond => "F29",
9265            Unit::KilogramPerDay => "F30",
9266            Unit::KilogramPerMinute => "F31",
9267            Unit::MilligramPerDay => "F32",
9268            Unit::MilligramPerMinute => "F33",
9269            Unit::MilligramPerSecond => "F34",
9270            Unit::GramPerDayKelvin => "F35",
9271            Unit::GramPerHourKelvin => "F36",
9272            Unit::GramPerMinuteKelvin => "F37",
9273            Unit::GramPerSecondKelvin => "F38",
9274            Unit::KilogramPerDayKelvin => "F39",
9275            Unit::KilogramPerHourKelvin => "F40",
9276            Unit::KilogramPerMinuteKelvin => "F41",
9277            Unit::KilogramPerSecondKelvin => "F42",
9278            Unit::MilligramPerDayKelvin => "F43",
9279            Unit::MilligramPerHourKelvin => "F44",
9280            Unit::MilligramPerMinuteKelvin => "F45",
9281            Unit::MilligramPerSecondKelvin => "F46",
9282            Unit::NewtonPerMillimetre => "F47",
9283            Unit::PoundForcePerInch => "F48",
9284            Unit::RodUnitDistance => "F49",
9285            Unit::MicrometrePerKelvin => "F50",
9286            Unit::CentimetrePerKelvin => "F51",
9287            Unit::MetrePerKelvin => "F52",
9288            Unit::MillimetrePerKelvin => "F53",
9289            Unit::MilliohmPerMetre => "F54",
9290            Unit::OhmPerMileStatuteMile => "F55",
9291            Unit::OhmPerKilometre => "F56",
9292            Unit::MilliamperePerPoundForcePerSquareInch => "F57",
9293            Unit::ReciprocalBar => "F58",
9294            Unit::MilliamperePerBar => "F59",
9295            Unit::DegreeCelsiusPerBar => "F60",
9296            Unit::KelvinPerBar => "F61",
9297            Unit::GramPerDayBar => "F62",
9298            Unit::GramPerHourBar => "F63",
9299            Unit::GramPerMinuteBar => "F64",
9300            Unit::GramPerSecondBar => "F65",
9301            Unit::KilogramPerDayBar => "F66",
9302            Unit::KilogramPerHourBar => "F67",
9303            Unit::KilogramPerMinuteBar => "F68",
9304            Unit::KilogramPerSecondBar => "F69",
9305            Unit::MilligramPerDayBar => "F70",
9306            Unit::MilligramPerHourBar => "F71",
9307            Unit::MilligramPerMinuteBar => "F72",
9308            Unit::MilligramPerSecondBar => "F73",
9309            Unit::GramPerBar => "F74",
9310            Unit::MilligramPerBar => "F75",
9311            Unit::MilliamperePerMillimetre => "F76",
9312            Unit::PascalSecondPerKelvin => "F77",
9313            Unit::InchWater => "F78",
9314            Unit::InchMercury => "F79",
9315            Unit::WaterHorsePower => "F80",
9316            Unit::BarPerKelvin => "F81",
9317            Unit::HectopascalPerKelvin => "F82",
9318            Unit::KilopascalPerKelvin => "F83",
9319            Unit::MillibarPerKelvin => "F84",
9320            Unit::MegapascalPerKelvin => "F85",
9321            Unit::PoisePerKelvin => "F86",
9322            Unit::VoltPerLitreMinute => "F87",
9323            Unit::NewtonCentimetre => "F88",
9324            Unit::NewtonMetrePerDegree => "F89",
9325            Unit::NewtonMetrePerAmpere => "F90",
9326            Unit::BarLitrePerSecond => "F91",
9327            Unit::BarCubicMetrePerSecond => "F92",
9328            Unit::HectopascalLitrePerSecond => "F93",
9329            Unit::HectopascalCubicMetrePerSecond => "F94",
9330            Unit::MillibarLitrePerSecond => "F95",
9331            Unit::MillibarCubicMetrePerSecond => "F96",
9332            Unit::MegapascalLitrePerSecond => "F97",
9333            Unit::MegapascalCubicMetrePerSecond => "F98",
9334            Unit::PascalLitrePerSecond => "F99",
9335            Unit::DegreeFahrenheit => "FAH",
9336            Unit::Farad => "FAR",
9337            Unit::FibreMetre => "FBM",
9338            Unit::ThousandCubicFoot => "FC",
9339            Unit::HundredCubicMetre => "FF",
9340            Unit::Micromole => "FH",
9341            Unit::FailuresInTime => "FIT",
9342            Unit::FlakeTon => "FL",
9343            Unit::FormazinNephelometricUnit => "FNU",
9344            Unit::Foot => "FOT",
9345            Unit::PoundPerSquareFoot => "FP",
9346            Unit::FootPerMinute => "FR",
9347            Unit::FootPerSecond => "FS",
9348            Unit::SquareFoot => "FTK",
9349            Unit::CubicFoot => "FTQ",
9350            Unit::PascalCubicMetrePerSecond => "G01",
9351            Unit::CentimetrePerBar => "G04",
9352            Unit::MetrePerBar => "G05",
9353            Unit::MillimetrePerBar => "G06",
9354            Unit::SquareInchPerSecond => "G08",
9355            Unit::SquareMetrePerSecondKelvin => "G09",
9356            Unit::StokesPerKelvin => "G10",
9357            Unit::GramPerCubicCentimetreBar => "G11",
9358            Unit::GramPerCubicDecimetreBar => "G12",
9359            Unit::GramPerLitreBar => "G13",
9360            Unit::GramPerCubicMetreBar => "G14",
9361            Unit::GramPerMillilitreBar => "G15",
9362            Unit::KilogramPerCubicCentimetreBar => "G16",
9363            Unit::KilogramPerLitreBar => "G17",
9364            Unit::KilogramPerCubicMetreBar => "G18",
9365            Unit::NewtonMetrePerKilogram => "G19",
9366            Unit::UsGallonPerMinute => "G2",
9367            Unit::PoundForceFootPerPound => "G20",
9368            Unit::CupUnitVolume => "G21",
9369            Unit::Peck => "G23",
9370            Unit::TablespoonUs => "G24",
9371            Unit::TeaspoonUs => "G25",
9372            Unit::Stere => "G26",
9373            Unit::CubicCentimetrePerKelvin => "G27",
9374            Unit::LitrePerKelvin => "G28",
9375            Unit::CubicMetrePerKelvin => "G29",
9376            Unit::ImperialGallonPerMinute => "G3",
9377            Unit::MillilitrePerKelvin => "G30",
9378            Unit::KilogramPerCubicCentimetre => "G31",
9379            Unit::OunceAvoirdupoisPerCubicYard => "G32",
9380            Unit::GramPerCubicCentimetreKelvin => "G33",
9381            Unit::GramPerCubicDecimetreKelvin => "G34",
9382            Unit::GramPerLitreKelvin => "G35",
9383            Unit::GramPerCubicMetreKelvin => "G36",
9384            Unit::GramPerMillilitreKelvin => "G37",
9385            Unit::KilogramPerCubicCentimetreKelvin => "G38",
9386            Unit::KilogramPerLitreKelvin => "G39",
9387            Unit::KilogramPerCubicMetreKelvin => "G40",
9388            Unit::SquareMetrePerSecondBar => "G41",
9389            Unit::MicrosiemensPerCentimetre => "G42",
9390            Unit::MicrosiemensPerMetre => "G43",
9391            Unit::NanosiemensPerCentimetre => "G44",
9392            Unit::NanosiemensPerMetre => "G45",
9393            Unit::StokesPerBar => "G46",
9394            Unit::CubicCentimetrePerDay => "G47",
9395            Unit::CubicCentimetrePerHour => "G48",
9396            Unit::CubicCentimetrePerMinute => "G49",
9397            Unit::GallonUsPerHour => "G50",
9398            Unit::LitrePerSecond => "G51",
9399            Unit::CubicMetrePerDay => "G52",
9400            Unit::CubicMetrePerMinute => "G53",
9401            Unit::MillilitrePerDay => "G54",
9402            Unit::MillilitrePerHour => "G55",
9403            Unit::CubicInchPerHour => "G56",
9404            Unit::CubicInchPerMinute => "G57",
9405            Unit::CubicInchPerSecond => "G58",
9406            Unit::MilliamperePerLitreMinute => "G59",
9407            Unit::VoltPerBar => "G60",
9408            Unit::CubicCentimetrePerDayKelvin => "G61",
9409            Unit::CubicCentimetrePerHourKelvin => "G62",
9410            Unit::CubicCentimetrePerMinuteKelvin => "G63",
9411            Unit::CubicCentimetrePerSecondKelvin => "G64",
9412            Unit::LitrePerDayKelvin => "G65",
9413            Unit::LitrePerHourKelvin => "G66",
9414            Unit::LitrePerMinuteKelvin => "G67",
9415            Unit::LitrePerSecondKelvin => "G68",
9416            Unit::CubicMetrePerDayKelvin => "G69",
9417            Unit::CubicMetrePerHourKelvin => "G70",
9418            Unit::CubicMetrePerMinuteKelvin => "G71",
9419            Unit::CubicMetrePerSecondKelvin => "G72",
9420            Unit::MillilitrePerDayKelvin => "G73",
9421            Unit::MillilitrePerHourKelvin => "G74",
9422            Unit::MillilitrePerMinuteKelvin => "G75",
9423            Unit::MillilitrePerSecondKelvin => "G76",
9424            Unit::MillimetreToFourthPower => "G77",
9425            Unit::CubicCentimetrePerDayBar => "G78",
9426            Unit::CubicCentimetrePerHourBar => "G79",
9427            Unit::CubicCentimetrePerMinuteBar => "G80",
9428            Unit::CubicCentimetrePerSecondBar => "G81",
9429            Unit::LitrePerDayBar => "G82",
9430            Unit::LitrePerHourBar => "G83",
9431            Unit::LitrePerMinuteBar => "G84",
9432            Unit::LitrePerSecondBar => "G85",
9433            Unit::CubicMetrePerDayBar => "G86",
9434            Unit::CubicMetrePerHourBar => "G87",
9435            Unit::CubicMetrePerMinuteBar => "G88",
9436            Unit::CubicMetrePerSecondBar => "G89",
9437            Unit::MillilitrePerDayBar => "G90",
9438            Unit::MillilitrePerHourBar => "G91",
9439            Unit::MillilitrePerMinuteBar => "G92",
9440            Unit::MillilitrePerSecondBar => "G93",
9441            Unit::CubicCentimetrePerBar => "G94",
9442            Unit::LitrePerBar => "G95",
9443            Unit::CubicMetrePerBar => "G96",
9444            Unit::MillilitrePerBar => "G97",
9445            Unit::MicrohenryPerKiloohm => "G98",
9446            Unit::MicrohenryPerOhm => "G99",
9447            Unit::GallonUsPerDay => "GB",
9448            Unit::Gigabecquerel => "GBQ",
9449            Unit::GramDryWeight => "GDW",
9450            Unit::PoundPerGallonUs => "GE",
9451            Unit::GramPerMetreGramPer100Centimetres => "GF",
9452            Unit::GramFissileIsotope => "GFI",
9453            Unit::GreatGross => "GGR",
9454            Unit::GillUs => "GIA",
9455            Unit::GramIncludingContainer => "GIC",
9456            Unit::GillUk => "GII",
9457            Unit::GramIncludingInnerPackaging => "GIP",
9458            Unit::GramPerMillilitre => "GJ",
9459            Unit::GramPerLitre => "GL",
9460            Unit::DryGallonUs => "GLD",
9461            Unit::GallonUk => "GLI",
9462            Unit::GallonUs => "GLL",
9463            Unit::GramPerSquareMetre => "GM",
9464            Unit::MilligramPerSquareMetre => "GO",
9465            Unit::MilligramPerCubicMetre => "GP",
9466            Unit::MicrogramPerCubicMetre => "GQ",
9467            Unit::Gram => "GRM",
9468            Unit::Grain => "GRN",
9469            Unit::Gross => "GRO",
9470            Unit::Gigajoule => "GV",
9471            Unit::GigawattHour => "GWH",
9472            Unit::HenryPerKiloohm => "H03",
9473            Unit::HenryPerOhm => "H04",
9474            Unit::MillihenryPerKiloohm => "H05",
9475            Unit::MillihenryPerOhm => "H06",
9476            Unit::PascalSecondPerBar => "H07",
9477            Unit::Microbecquerel => "H08",
9478            Unit::ReciprocalYear => "H09",
9479            Unit::ReciprocalHour => "H10",
9480            Unit::ReciprocalMonth => "H11",
9481            Unit::DegreeCelsiusPerHour => "H12",
9482            Unit::DegreeCelsiusPerMinute => "H13",
9483            Unit::DegreeCelsiusPerSecond => "H14",
9484            Unit::SquareCentimetrePerGram => "H15",
9485            Unit::SquareDecametre => "H16",
9486            Unit::SquareHectometre => "H18",
9487            Unit::CubicHectometre => "H19",
9488            Unit::CubicKilometre => "H20",
9489            Unit::Blank => "H21",
9490            Unit::VoltSquareInchPerPoundForce => "H22",
9491            Unit::VoltPerInch => "H23",
9492            Unit::VoltPerMicrosecond => "H24",
9493            Unit::PercentPerKelvin => "H25",
9494            Unit::OhmPerMetre => "H26",
9495            Unit::DegreePerMetre => "H27",
9496            Unit::MicrofaradPerKilometre => "H28",
9497            Unit::MicrogramPerLitre => "H29",
9498            Unit::SquareMicrometreSquareMicron => "H30",
9499            Unit::AmperePerKilogram => "H31",
9500            Unit::AmpereSquaredSecond => "H32",
9501            Unit::FaradPerKilometre => "H33",
9502            Unit::HertzMetre => "H34",
9503            Unit::KelvinMetrePerWatt => "H35",
9504            Unit::MegaohmPerKilometre => "H36",
9505            Unit::MegaohmPerMetre => "H37",
9506            Unit::Megaampere => "H38",
9507            Unit::MegahertzKilometre => "H39",
9508            Unit::NewtonPerAmpere => "H40",
9509            Unit::NewtonMetreWattToPowerMinus05 => "H41",
9510            Unit::PascalPerMetre => "H42",
9511            Unit::SiemensPerCentimetre => "H43",
9512            Unit::Teraohm => "H44",
9513            Unit::VoltSecondPerMetre => "H45",
9514            Unit::VoltPerSecond => "H46",
9515            Unit::WattPerCubicMetre => "H47",
9516            Unit::Attofarad => "H48",
9517            Unit::CentimetrePerHour => "H49",
9518            Unit::ReciprocalCubicCentimetre => "H50",
9519            Unit::DecibelPerKilometre => "H51",
9520            Unit::DecibelPerMetre => "H52",
9521            Unit::KilogramPerBar => "H53",
9522            Unit::KilogramPerCubicDecimetreKelvin => "H54",
9523            Unit::KilogramPerCubicDecimetreBar => "H55",
9524            Unit::KilogramPerSquareMetreSecond => "H56",
9525            Unit::InchPerTwoPiRadiant => "H57",
9526            Unit::MetrePerVoltSecond => "H58",
9527            Unit::SquareMetrePerNewton => "H59",
9528            Unit::CubicMetrePerCubicMetre => "H60",
9529            Unit::MillisiemensPerCentimetre => "H61",
9530            Unit::MillivoltPerMinute => "H62",
9531            Unit::MilligramPerSquareCentimetre => "H63",
9532            Unit::MilligramPerGram => "H64",
9533            Unit::MillilitrePerCubicMetre => "H65",
9534            Unit::MillimetrePerYear => "H66",
9535            Unit::MillimetrePerHour => "H67",
9536            Unit::MillimolePerGram => "H68",
9537            Unit::PicopascalPerKilometre => "H69",
9538            Unit::Picosecond => "H70",
9539            Unit::PercentPerMonth => "H71",
9540            Unit::PercentPerHectobar => "H72",
9541            Unit::PercentPerDecakelvin => "H73",
9542            Unit::WattPerMetre => "H74",
9543            Unit::Decapascal => "H75",
9544            Unit::GramPerMillimetre => "H76",
9545            Unit::ModuleWidth => "H77",
9546            Unit::FrenchGauge => "H79",
9547            Unit::RackUnit => "H80",
9548            Unit::MillimetrePerMinute => "H81",
9549            Unit::BigPoint => "H82",
9550            Unit::LitrePerKilogram => "H83",
9551            Unit::GramMillimetre => "H84",
9552            Unit::ReciprocalWeek => "H85",
9553            Unit::Piece => "H87",
9554            Unit::MegaohmKilometre => "H88",
9555            Unit::PercentPerOhm => "H89",
9556            Unit::PercentPerDegree => "H90",
9557            Unit::PercentPerTenThousand => "H91",
9558            Unit::PercentPerOneHundredThousand => "H92",
9559            Unit::PercentPerHundred => "H93",
9560            Unit::PercentPerThousand => "H94",
9561            Unit::PercentPerVolt => "H95",
9562            Unit::PercentPerBar => "H96",
9563            Unit::PercentPerInch => "H98",
9564            Unit::PercentPerMetre => "H99",
9565            Unit::Hank => "HA",
9566            Unit::PieceDay => "HAD",
9567            Unit::Hectobar => "HBA",
9568            Unit::HundredBoxes => "HBX",
9569            Unit::HundredCount => "HC",
9570            Unit::HundredKilogramDryWeight => "HDW",
9571            Unit::Head => "HEA",
9572            Unit::Hectogram => "HGM",
9573            Unit::HundredCubicFoot => "HH",
9574            Unit::HundredInternationalUnit => "HIU",
9575            Unit::HundredKilogramNetMass => "HKM",
9576            Unit::Hectolitre => "HLT",
9577            Unit::MilePerHourStatuteMile => "HM",
9578            Unit::PieceMonth => "HMO",
9579            Unit::MillionCubicMetre => "HMQ",
9580            Unit::Hectometre => "HMT",
9581            Unit::HectolitrePureAlcohol => "HPA",
9582            Unit::Hertz => "HTZ",
9583            Unit::Hour => "HUR",
9584            Unit::PieceWeek => "HWE",
9585            Unit::InchPoundPoundInch => "IA",
9586            Unit::Person => "IE",
9587            Unit::Inch => "INH",
9588            Unit::SquareInch => "INK",
9589            Unit::CubicInch => "INQ",
9590            Unit::InternationalSugarDegree => "ISD",
9591            Unit::InchPerSecond => "IU",
9592            Unit::InternationalUnitPerGram => "IUG",
9593            Unit::InchPerSecondSquared => "IV",
9594            Unit::PercentPerMillimetre => "J10",
9595            Unit::PerMillePerPsi => "J12",
9596            Unit::DegreeApi => "J13",
9597            Unit::DegreeBaumeOriginScale => "J14",
9598            Unit::DegreeBaumeUsHeavy => "J15",
9599            Unit::DegreeBaumeUsLight => "J16",
9600            Unit::DegreeBalling => "J17",
9601            Unit::DegreeBrix => "J18",
9602            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "J19",
9603            Unit::JoulePerKilogram => "J2",
9604            Unit::DegreeFahrenheitPerKelvin => "J20",
9605            Unit::DegreeFahrenheitPerBar => "J21",
9606            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "J22",
9607            Unit::DegreeFahrenheitPerHour => "J23",
9608            Unit::DegreeFahrenheitPerMinute => "J24",
9609            Unit::DegreeFahrenheitPerSecond => "J25",
9610            Unit::ReciprocalDegreeFahrenheit => "J26",
9611            Unit::DegreeOechsle => "J27",
9612            Unit::DegreeRankinePerHour => "J28",
9613            Unit::DegreeRankinePerMinute => "J29",
9614            Unit::DegreeRankinePerSecond => "J30",
9615            Unit::DegreeTwaddell => "J31",
9616            Unit::Micropoise => "J32",
9617            Unit::MicrogramPerKilogram => "J33",
9618            Unit::MicrogramPerCubicMetreKelvin => "J34",
9619            Unit::MicrogramPerCubicMetreBar => "J35",
9620            Unit::MicrolitrePerLitre => "J36",
9621            Unit::Baud => "J38",
9622            Unit::BritishThermalUnitMean => "J39",
9623            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => {
9624                "J40"
9625            }
9626            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => {
9627                "J41"
9628            }
9629            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => {
9630                "J42"
9631            }
9632            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "J43",
9633            Unit::BritishThermalUnitInternationalTablePerMinute => "J44",
9634            Unit::BritishThermalUnitInternationalTablePerSecond => "J45",
9635            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "J46",
9636            Unit::BritishThermalUnitThermochemicalPerHour => "J47",
9637            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "J48",
9638            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "J49",
9639            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "J50",
9640            Unit::BritishThermalUnitThermochemicalPerMinute => "J51",
9641            Unit::BritishThermalUnitThermochemicalPerSecond => "J52",
9642            Unit::CoulombSquareMetrePerKilogram => "J53",
9643            Unit::Megabaud => "J54",
9644            Unit::WattSecond => "J55",
9645            Unit::BarPerBar => "J56",
9646            Unit::BarrelUkPetroleum => "J57",
9647            Unit::BarrelUkPetroleumPerMinute => "J58",
9648            Unit::BarrelUkPetroleumPerDay => "J59",
9649            Unit::BarrelUkPetroleumPerHour => "J60",
9650            Unit::BarrelUkPetroleumPerSecond => "J61",
9651            Unit::BarrelUsPetroleumPerHour => "J62",
9652            Unit::BarrelUsPetroleumPerSecond => "J63",
9653            Unit::BushelUkPerDay => "J64",
9654            Unit::BushelUkPerHour => "J65",
9655            Unit::BushelUkPerMinute => "J66",
9656            Unit::BushelUkPerSecond => "J67",
9657            Unit::BushelUsDryPerDay => "J68",
9658            Unit::BushelUsDryPerHour => "J69",
9659            Unit::BushelUsDryPerMinute => "J70",
9660            Unit::BushelUsDryPerSecond => "J71",
9661            Unit::CentinewtonMetre => "J72",
9662            Unit::CentipoisePerKelvin => "J73",
9663            Unit::CentipoisePerBar => "J74",
9664            Unit::CalorieMean => "J75",
9665            Unit::CalorieInternationalTablePerGramDegreeCelsius => "J76",
9666            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "J78",
9667            Unit::CalorieThermochemicalPerGramDegreeCelsius => "J79",
9668            Unit::CalorieThermochemicalPerMinute => "J81",
9669            Unit::CalorieThermochemicalPerSecond => "J82",
9670            Unit::Clo => "J83",
9671            Unit::CentimetrePerSecondKelvin => "J84",
9672            Unit::CentimetrePerSecondBar => "J85",
9673            Unit::CubicCentimetrePerCubicMetre => "J87",
9674            Unit::CubicDecimetrePerDay => "J90",
9675            Unit::CubicDecimetrePerCubicMetre => "J91",
9676            Unit::CubicDecimetrePerMinute => "J92",
9677            Unit::CubicDecimetrePerSecond => "J93",
9678            Unit::OunceUkFluidPerDay => "J95",
9679            Unit::OunceUkFluidPerHour => "J96",
9680            Unit::OunceUkFluidPerMinute => "J97",
9681            Unit::OunceUkFluidPerSecond => "J98",
9682            Unit::OunceUsFluidPerDay => "J99",
9683            Unit::JoulePerKelvin => "JE",
9684            Unit::MegajoulePerKilogram => "JK",
9685            Unit::MegajoulePerCubicMetre => "JM",
9686            Unit::PipelineJoint => "JNT",
9687            Unit::Joule => "JOU",
9688            Unit::HundredMetre => "JPS",
9689            Unit::NumberJewels => "JWL",
9690            Unit::KilowattDemand => "K1",
9691            Unit::OunceUsFluidPerHour => "K10",
9692            Unit::OunceUsFluidPerMinute => "K11",
9693            Unit::OunceUsFluidPerSecond => "K12",
9694            Unit::FootPerDegreeFahrenheit => "K13",
9695            Unit::FootPerHour => "K14",
9696            Unit::FootPoundForcePerHour => "K15",
9697            Unit::FootPoundForcePerMinute => "K16",
9698            Unit::FootPerPsi => "K17",
9699            Unit::FootPerSecondDegreeFahrenheit => "K18",
9700            Unit::FootPerSecondPsi => "K19",
9701            Unit::KilovoltAmpereReactiveDemand => "K2",
9702            Unit::ReciprocalCubicFoot => "K20",
9703            Unit::CubicFootPerDegreeFahrenheit => "K21",
9704            Unit::CubicFootPerDay => "K22",
9705            Unit::CubicFootPerPsi => "K23",
9706            Unit::GallonUkPerDay => "K26",
9707            Unit::GallonUkPerHour => "K27",
9708            Unit::GallonUkPerSecond => "K28",
9709            Unit::KilovoltAmpereReactiveHour => "K3",
9710            Unit::GallonUsLiquidPerSecond => "K30",
9711            Unit::GramForcePerSquareCentimetre => "K31",
9712            Unit::GillUkPerDay => "K32",
9713            Unit::GillUkPerHour => "K33",
9714            Unit::GillUkPerMinute => "K34",
9715            Unit::GillUkPerSecond => "K35",
9716            Unit::GillUsPerDay => "K36",
9717            Unit::GillUsPerHour => "K37",
9718            Unit::GillUsPerMinute => "K38",
9719            Unit::GillUsPerSecond => "K39",
9720            Unit::StandardAccelerationFreeFall => "K40",
9721            Unit::GrainPerGallonUs => "K41",
9722            Unit::HorsepowerBoiler => "K42",
9723            Unit::HorsepowerElectric => "K43",
9724            Unit::InchPerDegreeFahrenheit => "K45",
9725            Unit::InchPerPsi => "K46",
9726            Unit::InchPerSecondDegreeFahrenheit => "K47",
9727            Unit::InchPerSecondPsi => "K48",
9728            Unit::ReciprocalCubicInch => "K49",
9729            Unit::Kilobaud => "K50",
9730            Unit::KilocalorieMean => "K51",
9731            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "K52",
9732            Unit::KilocalorieThermochemical => "K53",
9733            Unit::KilocalorieThermochemicalPerMinute => "K54",
9734            Unit::KilocalorieThermochemicalPerSecond => "K55",
9735            Unit::KilomolePerHour => "K58",
9736            Unit::KilomolePerCubicMetreKelvin => "K59",
9737            Unit::Kilolitre => "K6",
9738            Unit::KilomolePerCubicMetreBar => "K60",
9739            Unit::KilomolePerMinute => "K61",
9740            Unit::LitrePerLitre => "K62",
9741            Unit::ReciprocalLitre => "K63",
9742            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "K64",
9743            Unit::PoundAvoirdupoisSquareFoot => "K65",
9744            Unit::PoundAvoirdupoisPerDay => "K66",
9745            Unit::PoundPerFootHour => "K67",
9746            Unit::PoundPerFootSecond => "K68",
9747            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "K69",
9748            Unit::PoundAvoirdupoisPerCubicFootPsi => "K70",
9749            Unit::PoundAvoirdupoisPerGallonUk => "K71",
9750            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "K73",
9751            Unit::PoundAvoirdupoisPerHourPsi => "K74",
9752            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "K75",
9753            Unit::PoundAvoirdupoisPerCubicInchPsi => "K76",
9754            Unit::PoundAvoirdupoisPerPsi => "K77",
9755            Unit::PoundAvoirdupoisPerMinute => "K78",
9756            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "K79",
9757            Unit::PoundAvoirdupoisPerMinutePsi => "K80",
9758            Unit::PoundAvoirdupoisPerSecond => "K81",
9759            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "K82",
9760            Unit::PoundAvoirdupoisPerSecondPsi => "K83",
9761            Unit::PoundPerCubicYard => "K84",
9762            Unit::PoundForcePerSquareFoot => "K85",
9763            Unit::PoundForcePerSquareInchDegreeFahrenheit => "K86",
9764            Unit::PsiCubicInchPerSecond => "K87",
9765            Unit::PsiLitrePerSecond => "K88",
9766            Unit::PsiCubicMetrePerSecond => "K89",
9767            Unit::PsiCubicYardPerSecond => "K90",
9768            Unit::PoundForceSecondPerSquareFoot => "K91",
9769            Unit::PoundForceSecondPerSquareInch => "K92",
9770            Unit::ReciprocalPsi => "K93",
9771            Unit::QuartUkLiquidPerDay => "K94",
9772            Unit::QuartUkLiquidPerHour => "K95",
9773            Unit::QuartUkLiquidPerMinute => "K96",
9774            Unit::QuartUkLiquidPerSecond => "K97",
9775            Unit::QuartUsLiquidPerDay => "K98",
9776            Unit::QuartUsLiquidPerHour => "K99",
9777            Unit::Cake => "KA",
9778            Unit::Katal => "KAT",
9779            Unit::Kilocharacter => "KB",
9780            Unit::Kilobar => "KBA",
9781            Unit::KilogramCholineChloride => "KCC",
9782            Unit::KilogramDrainedNetWeight => "KDW",
9783            Unit::Kelvin => "KEL",
9784            Unit::Kilogram => "KGM",
9785            Unit::KilogramPerSecond => "KGS",
9786            Unit::KilogramHydrogenPeroxide => "KHY",
9787            Unit::Kilohertz => "KHZ",
9788            Unit::KilogramPerMillimetreWidth => "KI",
9789            Unit::KilogramIncludingContainer => "KIC",
9790            Unit::KilogramIncludingInnerPackaging => "KIP",
9791            Unit::Kilosegment => "KJ",
9792            Unit::Kilojoule => "KJO",
9793            Unit::KilogramPerMetre => "KL",
9794            Unit::LacticDryMaterialPercentage => "KLK",
9795            Unit::Kilolux => "KLX",
9796            Unit::KilogramMethylamine => "KMA",
9797            Unit::KilometrePerHour => "KMH",
9798            Unit::SquareKilometre => "KMK",
9799            Unit::KilogramPerCubicMetre => "KMQ",
9800            Unit::Kilometre => "KMT",
9801            Unit::KilogramNitrogen => "KNI",
9802            Unit::KilonewtonPerSquareMetre => "KNM",
9803            Unit::KilogramNamedSubstance => "KNS",
9804            Unit::Knot => "KNT",
9805            Unit::MilliequivalenceCausticPotashPerGramProduct => "KO",
9806            Unit::Kilopascal => "KPA",
9807            Unit::KilogramPotassiumHydroxideCausticPotash => "KPH",
9808            Unit::KilogramPotassiumOxide => "KPO",
9809            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "KPP",
9810            Unit::Kiloroentgen => "KR",
9811            Unit::KilogramSubstance90Dry => "KSD",
9812            Unit::KilogramSodiumHydroxideCausticSoda => "KSH",
9813            Unit::Kit => "KT",
9814            Unit::Kilotonne => "KTN",
9815            Unit::KilogramUranium => "KUR",
9816            Unit::KilovoltAmpere => "KVA",
9817            Unit::Kilovar => "KVR",
9818            Unit::Kilovolt => "KVT",
9819            Unit::KilogramPerMillimetre => "KW",
9820            Unit::KilowattHour => "KWH",
9821            Unit::KilowattHourPerNormalizedCubicMetre => "KWN",
9822            Unit::KilogramTungstenTrioxide => "KWO",
9823            Unit::KilowattHourPerStandardCubicMetre => "KWS",
9824            Unit::Kilowatt => "KWT",
9825            Unit::KilowattYear => "KWY",
9826            Unit::MillilitrePerKilogram => "KX",
9827            Unit::QuartUsLiquidPerMinute => "L10",
9828            Unit::QuartUsLiquidPerSecond => "L11",
9829            Unit::MetrePerSecondKelvin => "L12",
9830            Unit::MetrePerSecondBar => "L13",
9831            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "L14",
9832            Unit::MillipascalSecondPerKelvin => "L15",
9833            Unit::MillipascalSecondPerBar => "L16",
9834            Unit::MilligramPerCubicMetreKelvin => "L17",
9835            Unit::MilligramPerCubicMetreBar => "L18",
9836            Unit::MillilitrePerLitre => "L19",
9837            Unit::LitrePerMinute => "L2",
9838            Unit::ReciprocalCubicMillimetre => "L20",
9839            Unit::CubicMillimetrePerCubicMetre => "L21",
9840            Unit::MolePerHour => "L23",
9841            Unit::MolePerKilogramKelvin => "L24",
9842            Unit::MolePerKilogramBar => "L25",
9843            Unit::MolePerLitreKelvin => "L26",
9844            Unit::MolePerLitreBar => "L27",
9845            Unit::MolePerCubicMetreKelvin => "L28",
9846            Unit::MolePerCubicMetreBar => "L29",
9847            Unit::MolePerMinute => "L30",
9848            Unit::MilliroentgenAequivalentMen => "L31",
9849            Unit::NanogramPerKilogram => "L32",
9850            Unit::OunceAvoirdupoisPerDay => "L33",
9851            Unit::OunceAvoirdupoisPerHour => "L34",
9852            Unit::OunceAvoirdupoisPerMinute => "L35",
9853            Unit::OunceAvoirdupoisPerSecond => "L36",
9854            Unit::OunceAvoirdupoisPerGallonUk => "L37",
9855            Unit::OunceAvoirdupoisPerGallonUs => "L38",
9856            Unit::OunceAvoirdupoisPerCubicInch => "L39",
9857            Unit::OunceAvoirdupoisForce => "L40",
9858            Unit::OunceAvoirdupoisForceInch => "L41",
9859            Unit::PicosiemensPerMetre => "L42",
9860            Unit::PeckUk => "L43",
9861            Unit::PeckUkPerDay => "L44",
9862            Unit::PeckUkPerHour => "L45",
9863            Unit::PeckUkPerMinute => "L46",
9864            Unit::PeckUkPerSecond => "L47",
9865            Unit::PeckUsDryPerDay => "L48",
9866            Unit::PeckUsDryPerHour => "L49",
9867            Unit::PeckUsDryPerMinute => "L50",
9868            Unit::PeckUsDryPerSecond => "L51",
9869            Unit::PsiPerPsi => "L52",
9870            Unit::PintUkPerDay => "L53",
9871            Unit::PintUkPerHour => "L54",
9872            Unit::PintUkPerMinute => "L55",
9873            Unit::PintUkPerSecond => "L56",
9874            Unit::PintUsLiquidPerDay => "L57",
9875            Unit::PintUsLiquidPerHour => "L58",
9876            Unit::PintUsLiquidPerMinute => "L59",
9877            Unit::PintUsLiquidPerSecond => "L60",
9878            Unit::SlugPerDay => "L63",
9879            Unit::SlugPerFootSecond => "L64",
9880            Unit::SlugPerCubicFoot => "L65",
9881            Unit::SlugPerHour => "L66",
9882            Unit::SlugPerMinute => "L67",
9883            Unit::SlugPerSecond => "L68",
9884            Unit::TonnePerKelvin => "L69",
9885            Unit::TonnePerBar => "L70",
9886            Unit::TonnePerDay => "L71",
9887            Unit::TonnePerDayKelvin => "L72",
9888            Unit::TonnePerDayBar => "L73",
9889            Unit::TonnePerHourKelvin => "L74",
9890            Unit::TonnePerHourBar => "L75",
9891            Unit::TonnePerCubicMetreKelvin => "L76",
9892            Unit::TonnePerCubicMetreBar => "L77",
9893            Unit::TonnePerMinute => "L78",
9894            Unit::TonnePerMinuteKelvin => "L79",
9895            Unit::TonnePerMinuteBar => "L80",
9896            Unit::TonnePerSecond => "L81",
9897            Unit::TonnePerSecondKelvin => "L82",
9898            Unit::TonnePerSecondBar => "L83",
9899            Unit::TonUkShipping => "L84",
9900            Unit::TonLongPerDay => "L85",
9901            Unit::TonUsShipping => "L86",
9902            Unit::TonShortPerDegreeFahrenheit => "L87",
9903            Unit::TonShortPerDay => "L88",
9904            Unit::TonShortPerHourDegreeFahrenheit => "L89",
9905            Unit::TonShortPerHourPsi => "L90",
9906            Unit::TonShortPerPsi => "L91",
9907            Unit::TonUkLongPerCubicYard => "L92",
9908            Unit::TonUsShortPerCubicYard => "L93",
9909            Unit::TonForceUsShort => "L94",
9910            Unit::CommonYear => "L95",
9911            Unit::SiderealYear => "L96",
9912            Unit::YardPerDegreeFahrenheit => "L98",
9913            Unit::YardPerPsi => "L99",
9914            Unit::PoundPerCubicInch => "LA",
9915            Unit::LactoseExcessPercentage => "LAC",
9916            Unit::Pound => "LBR",
9917            Unit::TroyPoundUs => "LBT",
9918            Unit::LitrePerDay => "LD",
9919            Unit::Leaf => "LEF",
9920            Unit::LinearFoot => "LF",
9921            Unit::LabourHour => "LH",
9922            Unit::Link => "LK",
9923            Unit::LinearMetre => "LM",
9924            Unit::Length => "LN",
9925            Unit::LotUnitProcurement => "LO",
9926            Unit::LiquidPound => "LP",
9927            Unit::LitrePureAlcohol => "LPA",
9928            Unit::Layer => "LR",
9929            Unit::LumpSum => "LS",
9930            Unit::TonUkOrLongTonUs => "LTN",
9931            Unit::Litre => "LTR",
9932            Unit::MetricTonLubricatingOil => "LUB",
9933            Unit::Lumen => "LUM",
9934            Unit::Lux => "LUX",
9935            Unit::LinearYard => "LY",
9936            Unit::MilligramPerLitre => "M1",
9937            Unit::ReciprocalCubicYard => "M10",
9938            Unit::CubicYardPerDegreeFahrenheit => "M11",
9939            Unit::CubicYardPerDay => "M12",
9940            Unit::CubicYardPerHour => "M13",
9941            Unit::CubicYardPerPsi => "M14",
9942            Unit::CubicYardPerMinute => "M15",
9943            Unit::CubicYardPerSecond => "M16",
9944            Unit::KilohertzMetre => "M17",
9945            Unit::GigahertzMetre => "M18",
9946            Unit::Beaufort => "M19",
9947            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "M20",
9948            Unit::ReciprocalKilovoltAmpereReciprocalHour => "M21",
9949            Unit::MillilitrePerSquareCentimetreMinute => "M22",
9950            Unit::NewtonPerCentimetre => "M23",
9951            Unit::OhmKilometre => "M24",
9952            Unit::PercentPerDegreeCelsius => "M25",
9953            Unit::GigaohmPerMetre => "M26",
9954            Unit::MegahertzMetre => "M27",
9955            Unit::KilogramPerKilogram => "M29",
9956            Unit::ReciprocalVoltAmpereReciprocalSecond => "M30",
9957            Unit::KilogramPerKilometre => "M31",
9958            Unit::PascalSecondPerLitre => "M32",
9959            Unit::MillimolePerLitre => "M33",
9960            Unit::NewtonMetrePerSquareMetre => "M34",
9961            Unit::MillivoltAmpere => "M35",
9962            Unit::_30DayMonth => "M36",
9963            Unit::Actual360 => "M37",
9964            Unit::KilometrePerSecondSquared => "M38",
9965            Unit::CentimetrePerSecondSquared => "M39",
9966            Unit::MonetaryValue => "M4",
9967            Unit::YardPerSecondSquared => "M40",
9968            Unit::MillimetrePerSecondSquared => "M41",
9969            Unit::MileStatuteMilePerSecondSquared => "M42",
9970            Unit::Mil => "M43",
9971            Unit::Revolution => "M44",
9972            Unit::DegreeUnitAnglePerSecondSquared => "M45",
9973            Unit::RevolutionPerMinute => "M46",
9974            Unit::CircularMil => "M47",
9975            Unit::SquareMileBasedOnUSSurveyFoot => "M48",
9976            Unit::ChainBasedOnUSSurveyFoot => "M49",
9977            Unit::Microcurie => "M5",
9978            Unit::Furlong => "M50",
9979            Unit::FootUSSurvey => "M51",
9980            Unit::MileBasedOnUSSurveyFoot => "M52",
9981            Unit::MetrePerPascal => "M53",
9982            Unit::MetrePerRadiant => "M55",
9983            Unit::Shake => "M56",
9984            Unit::MilePerMinute => "M57",
9985            Unit::MilePerSecond => "M58",
9986            Unit::MetrePerSecondPascal => "M59",
9987            Unit::MetrePerHour => "M60",
9988            Unit::InchPerYear => "M61",
9989            Unit::KilometrePerSecond => "M62",
9990            Unit::InchPerMinute => "M63",
9991            Unit::YardPerSecond => "M64",
9992            Unit::YardPerMinute => "M65",
9993            Unit::YardPerHour => "M66",
9994            Unit::AcreFootBasedOnUSSurveyFoot => "M67",
9995            Unit::Cord128Ft3 => "M68",
9996            Unit::CubicMileUkStatute => "M69",
9997            Unit::MicroInch => "M7",
9998            Unit::TonRegister => "M70",
9999            Unit::CubicMetrePerPascal => "M71",
10000            Unit::Bel => "M72",
10001            Unit::KilogramPerCubicMetrePascal => "M73",
10002            Unit::KilogramPerPascal => "M74",
10003            Unit::KilopoundForce => "M75",
10004            Unit::Poundal => "M76",
10005            Unit::KilogramMetrePerSecondSquared => "M77",
10006            Unit::Pond => "M78",
10007            Unit::SquareFootPerHour => "M79",
10008            Unit::StokesPerPascal => "M80",
10009            Unit::SquareCentimetrePerSecond => "M81",
10010            Unit::SquareMetrePerSecondPascal => "M82",
10011            Unit::Denier_Dup => "M83",
10012            Unit::PoundPerYard => "M84",
10013            Unit::TonAssay => "M85",
10014            Unit::Pfund => "M86",
10015            Unit::KilogramPerSecondPascal => "M87",
10016            Unit::TonnePerMonth => "M88",
10017            Unit::TonnePerYear => "M89",
10018            Unit::MillionBtuPer1000CubicFoot => "M9",
10019            Unit::KilopoundPerHour => "M90",
10020            Unit::PoundPerPound => "M91",
10021            Unit::PoundForceFoot => "M92",
10022            Unit::NewtonMetrePerRadian => "M93",
10023            Unit::KilogramMetre => "M94",
10024            Unit::PoundalFoot => "M95",
10025            Unit::PoundalInch => "M96",
10026            Unit::DyneMetre => "M97",
10027            Unit::KilogramCentimetrePerSecond => "M98",
10028            Unit::GramCentimetrePerSecond => "M99",
10029            Unit::MegavoltAmpereReactiveHour => "MAH",
10030            Unit::Megalitre => "MAL",
10031            Unit::Megametre => "MAM",
10032            Unit::Megavar => "MAR",
10033            Unit::Megawatt => "MAW",
10034            Unit::ThousandStandardBrickEquivalent => "MBE",
10035            Unit::ThousandBoardFoot => "MBF",
10036            Unit::Millibar => "MBR",
10037            Unit::Microgram => "MC",
10038            Unit::Millicurie => "MCU",
10039            Unit::AirDryMetricTon => "MD",
10040            Unit::Milligram => "MGM",
10041            Unit::Megahertz => "MHZ",
10042            Unit::SquareMileStatuteMile => "MIK",
10043            Unit::Thousand => "MIL",
10044            Unit::MinuteUnitTime => "MIN",
10045            Unit::Million => "MIO",
10046            Unit::MillionInternationalUnit => "MIU",
10047            Unit::SquareMetreDay => "MKD",
10048            Unit::SquareMetreMonth => "MKM",
10049            Unit::SquareMetreWeek => "MKW",
10050            Unit::Milliard => "MLD",
10051            Unit::Millilitre => "MLT",
10052            Unit::SquareMillimetre => "MMK",
10053            Unit::CubicMillimetre => "MMQ",
10054            Unit::Millimetre => "MMT",
10055            Unit::KilogramDryWeight => "MND",
10056            Unit::MegaJoulePerNormalisedCubicMetre => "MNJ",
10057            Unit::Month => "MON",
10058            Unit::Megapascal => "MPA",
10059            Unit::CubicMetreDay => "MQD",
10060            Unit::CubicMetrePerHour => "MQH",
10061            Unit::CubicMetreMonth => "MQM",
10062            Unit::CubicMetrePerSecond => "MQS",
10063            Unit::CubicMetreWeek => "MQW",
10064            Unit::MetreDay => "MRD",
10065            Unit::MetreMonth => "MRM",
10066            Unit::MetreWeek => "MRW",
10067            Unit::MetrePerSecondSquared => "MSK",
10068            Unit::SquareMetre => "MTK",
10069            Unit::CubicMetre => "MTQ",
10070            Unit::Metre => "MTR",
10071            Unit::MetrePerSecond => "MTS",
10072            Unit::Milihertz => "MTZ",
10073            Unit::MegavoltAmpere => "MVA",
10074            Unit::MegawattHour1000KwH => "MWH",
10075            Unit::PenCalorie => "N1",
10076            Unit::PoundFootPerSecond => "N10",
10077            Unit::PoundInchPerSecond => "N11",
10078            Unit::Pferdestaerke => "N12",
10079            Unit::CentimetreMercury0Oc => "N13",
10080            Unit::CentimetreWater4Oc => "N14",
10081            Unit::FootWater392Of => "N15",
10082            Unit::InchMercury32Of => "N16",
10083            Unit::InchMercury60Of => "N17",
10084            Unit::InchWater392Of => "N18",
10085            Unit::InchWater60Of => "N19",
10086            Unit::KipPerSquareInch => "N20",
10087            Unit::PoundalPerSquareFoot => "N21",
10088            Unit::OunceAvoirdupoisPerSquareInch => "N22",
10089            Unit::ConventionalMetreWater => "N23",
10090            Unit::GramPerSquareMillimetre => "N24",
10091            Unit::PoundPerSquareYard => "N25",
10092            Unit::PoundalPerSquareInch => "N26",
10093            Unit::FootToFourthPower => "N27",
10094            Unit::CubicDecimetrePerKilogram => "N28",
10095            Unit::CubicFootPerPound => "N29",
10096            Unit::PrintPoint => "N3",
10097            Unit::CubicInchPerPound => "N30",
10098            Unit::KilonewtonPerMetre => "N31",
10099            Unit::PoundalPerInch => "N32",
10100            Unit::PoundForcePerYard => "N33",
10101            Unit::PoundalSecondPerSquareFoot => "N34",
10102            Unit::PoisePerPascal => "N35",
10103            Unit::NewtonSecondPerSquareMetre => "N36",
10104            Unit::KilogramPerMetreSecond => "N37",
10105            Unit::KilogramPerMetreMinute => "N38",
10106            Unit::KilogramPerMetreDay => "N39",
10107            Unit::KilogramPerMetreHour => "N40",
10108            Unit::GramPerCentimetreSecond => "N41",
10109            Unit::PoundalSecondPerSquareInch => "N42",
10110            Unit::PoundPerFootMinute => "N43",
10111            Unit::PoundPerFootDay => "N44",
10112            Unit::CubicMetrePerSecondPascal => "N45",
10113            Unit::FootPoundal => "N46",
10114            Unit::InchPoundal => "N47",
10115            Unit::WattPerSquareCentimetre => "N48",
10116            Unit::WattPerSquareInch => "N49",
10117            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "N50",
10118            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "N51",
10119            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "N52",
10120            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "N53",
10121            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "N54",
10122            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "N55",
10123            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "N56",
10124            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "N57",
10125            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "N58",
10126            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "N59",
10127            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "N60",
10128            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "N61",
10129            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "N62",
10130            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "N63",
10131            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "N64",
10132            Unit::KilocalorieInternationalTablePerGramKelvin => "N65",
10133            Unit::BritishThermalUnit39Of => "N66",
10134            Unit::BritishThermalUnit59Of => "N67",
10135            Unit::BritishThermalUnit60Of => "N68",
10136            Unit::Calorie20Oc => "N69",
10137            Unit::Quad1015Btuit => "N70",
10138            Unit::ThermEc => "N71",
10139            Unit::ThermUS => "N72",
10140            Unit::BritishThermalUnitThermochemicalPerPound => "N73",
10141            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "N74",
10142            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "N75",
10143            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "N76",
10144            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "N77",
10145            Unit::KilowattPerSquareMetreKelvin => "N78",
10146            Unit::KelvinPerPascal => "N79",
10147            Unit::WattPerMetreDegreeCelsius => "N80",
10148            Unit::KilowattPerMetreKelvin => "N81",
10149            Unit::KilowattPerMetreDegreeCelsius => "N82",
10150            Unit::MetrePerDegreeCelciusMetre => "N83",
10151            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "N84",
10152            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "N85",
10153            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "N86",
10154            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "N87",
10155            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => {
10156                "N88"
10157            }
10158            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "N89",
10159            Unit::Kilofarad => "N90",
10160            Unit::ReciprocalJoule => "N91",
10161            Unit::Picosiemens => "N92",
10162            Unit::AmperePerPascal => "N93",
10163            Unit::Franklin => "N94",
10164            Unit::AmpereMinute => "N95",
10165            Unit::Biot => "N96",
10166            Unit::Gilbert => "N97",
10167            Unit::VoltPerPascal => "N98",
10168            Unit::Picovolt => "N99",
10169            Unit::MilligramPerKilogram => "nan",
10170            Unit::NumberArticles => "NAR",
10171            Unit::NumberCells => "NCL",
10172            Unit::Newton => "NEW",
10173            Unit::Message => "NF",
10174            Unit::Nil => "NIL",
10175            Unit::NumberInternationalUnits => "NIU",
10176            Unit::Load => "NL",
10177            Unit::NormalisedCubicMetre => "NM3",
10178            Unit::NauticalMile => "NMI",
10179            Unit::NumberPacks => "NMP",
10180            Unit::NumberParts => "NPT",
10181            Unit::NetTon => "NT",
10182            Unit::NephelometricTurbidityUnit => "NTU",
10183            Unit::NewtonMetre => "NU",
10184            Unit::PartPerThousand => "NX",
10185            Unit::Panel => "OA",
10186            Unit::OzoneDepletionEquivalent => "ODE",
10187            Unit::OdsGrams => "ODG",
10188            Unit::OdsKilograms => "ODK",
10189            Unit::OdsMilligrams => "ODM",
10190            Unit::Ohm => "OHM",
10191            Unit::OuncePerSquareYard => "ON",
10192            Unit::OunceAvoirdupois => "ONZ",
10193            Unit::OscillationsPerMinute => "OPM",
10194            Unit::OvertimeHour => "OT",
10195            Unit::FluidOunceUs => "OZA",
10196            Unit::FluidOunceUk => "OZI",
10197            Unit::Percent => "P1",
10198            Unit::CoulombPerMetre => "P10",
10199            Unit::Kiloweber => "P11",
10200            Unit::Gamma => "P12",
10201            Unit::Kilotesla => "P13",
10202            Unit::JoulePerSecond => "P14",
10203            Unit::JoulePerMinute => "P15",
10204            Unit::JoulePerHour => "P16",
10205            Unit::JoulePerDay => "P17",
10206            Unit::KilojoulePerSecond => "P18",
10207            Unit::KilojoulePerMinute => "P19",
10208            Unit::PoundPerFoot => "P2",
10209            Unit::KilojoulePerHour => "P20",
10210            Unit::KilojoulePerDay => "P21",
10211            Unit::Nanoohm => "P22",
10212            Unit::OhmCircularMilPerFoot => "P23",
10213            Unit::Kilohenry => "P24",
10214            Unit::LumenPerSquareFoot => "P25",
10215            Unit::Phot => "P26",
10216            Unit::Footcandle => "P27",
10217            Unit::CandelaPerSquareInch => "P28",
10218            Unit::Footlambert => "P29",
10219            Unit::Lambert => "P30",
10220            Unit::Stilb => "P31",
10221            Unit::CandelaPerSquareFoot => "P32",
10222            Unit::Kilocandela => "P33",
10223            Unit::Millicandela => "P34",
10224            Unit::HefnerKerze => "P35",
10225            Unit::InternationalCandle => "P36",
10226            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "P37",
10227            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "P38",
10228            Unit::CalorieThermochemicalPerSquareCentimetre => "P39",
10229            Unit::Langley => "P40",
10230            Unit::DecadeLogarithmic => "P41",
10231            Unit::PascalSquaredSecond => "P42",
10232            Unit::BelPerMetre => "P43",
10233            Unit::PoundMole => "P44",
10234            Unit::PoundMolePerSecond => "P45",
10235            Unit::PoundMolePerMinute => "P46",
10236            Unit::KilomolePerKilogram => "P47",
10237            Unit::PoundMolePerPound => "P48",
10238            Unit::NewtonSquareMetrePerAmpere => "P49",
10239            Unit::FivePack => "P5",
10240            Unit::WeberMetre => "P50",
10241            Unit::MolPerKilogramPascal => "P51",
10242            Unit::MolPerCubicMetrePascal => "P52",
10243            Unit::UnitPole => "P53",
10244            Unit::MilligrayPerSecond => "P54",
10245            Unit::MicrograyPerSecond => "P55",
10246            Unit::NanograyPerSecond => "P56",
10247            Unit::GrayPerMinute => "P57",
10248            Unit::MilligrayPerMinute => "P58",
10249            Unit::MicrograyPerMinute => "P59",
10250            Unit::NanograyPerMinute => "P60",
10251            Unit::GrayPerHour => "P61",
10252            Unit::MilligrayPerHour => "P62",
10253            Unit::MicrograyPerHour => "P63",
10254            Unit::NanograyPerHour => "P64",
10255            Unit::SievertPerSecond => "P65",
10256            Unit::MillisievertPerSecond => "P66",
10257            Unit::MicrosievertPerSecond => "P67",
10258            Unit::NanosievertPerSecond => "P68",
10259            Unit::RemPerSecond => "P69",
10260            Unit::SievertPerHour => "P70",
10261            Unit::MillisievertPerHour => "P71",
10262            Unit::MicrosievertPerHour => "P72",
10263            Unit::NanosievertPerHour => "P73",
10264            Unit::SievertPerMinute => "P74",
10265            Unit::MillisievertPerMinute => "P75",
10266            Unit::MicrosievertPerMinute => "P76",
10267            Unit::NanosievertPerMinute => "P77",
10268            Unit::ReciprocalSquareInch => "P78",
10269            Unit::PascalSquareMetrePerKilogram => "P79",
10270            Unit::MillipascalPerMetre => "P80",
10271            Unit::KilopascalPerMetre => "P81",
10272            Unit::HectopascalPerMetre => "P82",
10273            Unit::StandardAtmospherePerMetre => "P83",
10274            Unit::TechnicalAtmospherePerMetre => "P84",
10275            Unit::TorrPerMetre => "P85",
10276            Unit::PsiPerInch => "P86",
10277            Unit::CubicMetrePerSecondSquareMetre => "P87",
10278            Unit::Rhe => "P88",
10279            Unit::PoundForceFootPerInch => "P89",
10280            Unit::PoundForceInchPerInch => "P90",
10281            Unit::Perm0Oc => "P91",
10282            Unit::Perm23Oc => "P92",
10283            Unit::BytePerSecond => "P93",
10284            Unit::KilobytePerSecond => "P94",
10285            Unit::MegabytePerSecond => "P95",
10286            Unit::ReciprocalVolt => "P96",
10287            Unit::ReciprocalRadian => "P97",
10288            Unit::PascalToPowerSumStoichiometricNumbers => "P98",
10289            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "P99",
10290            Unit::Pascal => "PAL",
10291            Unit::Pad => "PD",
10292            Unit::ProofLitre => "PFL",
10293            Unit::ProofGallon => "PGL",
10294            Unit::Pitch => "PI",
10295            Unit::DegreePlato => "PLA",
10296            Unit::PoundPerInchLength => "PO",
10297            Unit::PagePerInch => "PQ",
10298            Unit::Pair => "PR",
10299            Unit::PoundForcePerSquareInch => "PS",
10300            Unit::DryPintUs => "PTD",
10301            Unit::PintUk => "PTI",
10302            Unit::LiquidPintUs => "PTL",
10303            Unit::Portion => "PTN",
10304            Unit::JoulePerTesla => "Q10",
10305            Unit::Erlang => "Q11",
10306            Unit::Octet => "Q12",
10307            Unit::OctetPerSecond => "Q13",
10308            Unit::Shannon => "Q14",
10309            Unit::Hartley => "Q15",
10310            Unit::NaturalUnitInformation => "Q16",
10311            Unit::ShannonPerSecond => "Q17",
10312            Unit::HartleyPerSecond => "Q18",
10313            Unit::NaturalUnitInformationPerSecond => "Q19",
10314            Unit::SecondPerKilogramm => "Q20",
10315            Unit::WattSquareMetre => "Q21",
10316            Unit::SecondPerRadianCubicMetre => "Q22",
10317            Unit::WeberToPowerMinusOne => "Q23",
10318            Unit::ReciprocalInch => "Q24",
10319            Unit::Dioptre => "Q25",
10320            Unit::OnePerOne => "Q26",
10321            Unit::NewtonMetrePerMetre => "Q27",
10322            Unit::KilogramPerSquareMetrePascalSecond => "Q28",
10323            Unit::MicrogramPerHectogram => "Q29",
10324            Unit::Meal => "Q3",
10325            Unit::PhPotentialHydrogen => "Q30",
10326            Unit::KilojoulePerGram => "Q31",
10327            Unit::Femtolitre => "Q32",
10328            Unit::Picolitre => "Q33",
10329            Unit::Nanolitre => "Q34",
10330            Unit::MegawattsPerMinute => "Q35",
10331            Unit::SquareMetrePerCubicMetre => "Q36",
10332            Unit::StandardCubicMetrePerDay => "Q37",
10333            Unit::StandardCubicMetrePerHour => "Q38",
10334            Unit::NormalizedCubicMetrePerDay => "Q39",
10335            Unit::NormalizedCubicMetrePerHour => "Q40",
10336            Unit::JoulePerNormalisedCubicMetre => "Q41",
10337            Unit::JoulePerStandardCubicMetre => "Q42",
10338            Unit::PageFacsimile => "QA",
10339            Unit::QuarterAYear => "QAN",
10340            Unit::PageHardcopy => "QB",
10341            Unit::Quire => "QR",
10342            Unit::DryQuartUs => "QTD",
10343            Unit::QuartUk => "QTI",
10344            Unit::LiquidQuartUs => "QTL",
10345            Unit::QuarterUk => "QTR",
10346            Unit::Pica => "R1",
10347            Unit::ThousandCubicMetre => "R9",
10348            Unit::RunningOrOperatingHour => "RH",
10349            Unit::Ream => "RM",
10350            Unit::Room => "ROM",
10351            Unit::PoundPerReam => "RP",
10352            Unit::RevolutionsPerMinute => "RPM",
10353            Unit::RevolutionsPerSecond => "RPS",
10354            Unit::RevenueTonMile => "RT",
10355            Unit::SquareFootPerSecond => "S3",
10356            Unit::SquareMetrePerSecond => "S4",
10357            Unit::HalfYear6Months => "SAN",
10358            Unit::Score => "SCO",
10359            Unit::Scruple => "SCR",
10360            Unit::SecondUnitTime => "SEC",
10361            Unit::Set => "SET",
10362            Unit::Segment => "SG",
10363            Unit::Siemens => "SIE",
10364            Unit::StandardCubicMetre => "SM3",
10365            Unit::MileStatuteMile => "SMI",
10366            Unit::Square => "SQ",
10367            Unit::SquareRoofing => "SQR",
10368            Unit::Strip => "SR",
10369            Unit::Stick => "STC",
10370            Unit::StoneUk => "STI",
10371            Unit::StickCigarette => "STK",
10372            Unit::StandardLitre => "STL",
10373            Unit::TonUsOrShortTonUkUs => "STN",
10374            Unit::Straw => "STW",
10375            Unit::Skein => "SW",
10376            Unit::Shipment => "SX",
10377            Unit::Syringe => "SYR",
10378            Unit::TelecommunicationLineInService => "T0",
10379            Unit::ThousandPiece => "T3",
10380            Unit::KiloampereHourThousandAmpereHour => "TAH",
10381            Unit::TotalAcidNumber => "TAN",
10382            Unit::ThousandSquareInch => "TI",
10383            Unit::MetricTonIncludingContainer => "TIC",
10384            Unit::MetricTonIncludingInnerPackaging => "TIP",
10385            Unit::TonneKilometre => "TKM",
10386            Unit::KilogramImportedMeatLessOffal => "TMS",
10387            Unit::TonneMetricTon => "TNE",
10388            Unit::TenPack => "TP",
10389            Unit::TeethPerInch => "TPI",
10390            Unit::TenPair => "TPR",
10391            Unit::ThousandCubicMetrePerDay => "TQD",
10392            Unit::TrillionEur => "TRL",
10393            Unit::TenSet => "TST",
10394            Unit::TenThousandSticks => "TTS",
10395            Unit::Treatment => "U1",
10396            Unit::Tablet => "U2",
10397            Unit::TelecommunicationLineInServiceAverage => "UB",
10398            Unit::TelecommunicationPort => "UC",
10399            Unit::VoltAmperePerKilogram => "VA",
10400            Unit::Volt => "VLT",
10401            Unit::PercentVolume => "VP",
10402            Unit::WetKilo => "W2",
10403            Unit::WattPerKilogram => "WA",
10404            Unit::WetPound => "WB",
10405            Unit::Cord => "WCD",
10406            Unit::WetTon => "WE",
10407            Unit::Weber => "WEB",
10408            Unit::Week => "WEE",
10409            Unit::WineGallon => "WG",
10410            Unit::WattHour => "WHR",
10411            Unit::WorkingMonth => "WM",
10412            Unit::Standard => "WSD",
10413            Unit::Watt => "WTT",
10414            Unit::GuntersChain => "X1",
10415            Unit::SquareYard => "YDK",
10416            Unit::CubicYard => "YDQ",
10417            Unit::Yard => "YRD",
10418            Unit::HangingContainer => "Z11",
10419            Unit::Nanomole => "Z9",
10420            Unit::Page => "ZP",
10421            Unit::MutuallyDefined => "ZZ",
10422            Unit::DrumSteel => "X1A",
10423            Unit::DrumAluminium => "X1B",
10424            Unit::DrumPlywood => "X1D",
10425            Unit::ContainerFlexible => "X1F",
10426            Unit::DrumFibre => "X1G",
10427            Unit::DrumWooden => "X1W",
10428            Unit::BarrelWooden => "X2C",
10429            Unit::JerricanSteel => "X3A",
10430            Unit::JerricanPlastic => "X3H",
10431            Unit::BagSuperBulk => "X43",
10432            Unit::BagPolybag => "X44",
10433            Unit::BoxSteel => "X4A",
10434            Unit::BoxAluminium => "X4B",
10435            Unit::BoxNaturalWood => "X4C",
10436            Unit::BoxPlywood => "X4D",
10437            Unit::BoxReconstitutedWood => "X4F",
10438            Unit::BoxFibreboard => "X4G",
10439            Unit::BoxPlastic => "X4H",
10440            Unit::BagWovenPlastic => "X5H",
10441            Unit::BagTextile => "X5L",
10442            Unit::BagPaper => "X5M",
10443            Unit::CompositePackagingPlasticReceptacle => "X6H",
10444            Unit::CompositePackagingGlassReceptacle => "X6P",
10445            Unit::CaseCar => "X7A",
10446            Unit::CaseWooden => "X7B",
10447            Unit::PalletWooden => "X8A",
10448            Unit::CrateWooden => "X8B",
10449            Unit::BundleWooden => "X8C",
10450            Unit::IntermediateBulkContainerRigidPlastic => "XAA",
10451            Unit::ReceptacleFibre => "XAB",
10452            Unit::ReceptaclePaper => "XAC",
10453            Unit::ReceptacleWooden => "XAD",
10454            Unit::Aerosol => "XAE",
10455            Unit::PalletModularCollars80cms60cms => "XAF",
10456            Unit::PalletShrinkwrapped => "XAG",
10457            Unit::Pallet100cms110cms => "XAH",
10458            Unit::Clamshell => "XAI",
10459            Unit::Cone => "XAJ",
10460            Unit::Ball_Dup => "XAL",
10461            Unit::AmpouleNonProtected => "XAM",
10462            Unit::AmpouleProtected => "XAP",
10463            Unit::Atomizer => "XAT",
10464            Unit::Capsule => "XAV",
10465            Unit::Belt => "XB4",
10466            Unit::Barrel => "XBA",
10467            Unit::Bobbin => "XBB",
10468            Unit::BottlecrateBottlerack => "XBC",
10469            Unit::Board => "XBD",
10470            Unit::Bundle => "XBE",
10471            Unit::BalloonNonProtected => "XBF",
10472            Unit::Bag => "XBG",
10473            Unit::Bunch => "XBH",
10474            Unit::Bin => "XBI",
10475            Unit::Bucket => "XBJ",
10476            Unit::Basket => "XBK",
10477            Unit::BaleCompressed => "XBL",
10478            Unit::Basin => "XBM",
10479            Unit::BaleNonCompressed => "XBN",
10480            Unit::BottleNonProtectedCylindrical => "XBO",
10481            Unit::BalloonProtected => "XBP",
10482            Unit::BottleProtectedCylindrical => "XBQ",
10483            Unit::Bar => "XBR",
10484            Unit::BottleNonProtectedBulbous => "XBS",
10485            Unit::Bolt => "XBT",
10486            Unit::Butt => "XBU",
10487            Unit::BottleProtectedBulbous => "XBV",
10488            Unit::BoxForLiquids => "XBW",
10489            Unit::Box => "XBX",
10490            Unit::BoardInBundleBunchTruss => "XBY",
10491            Unit::BarsInBundleBunchTruss => "XBZ",
10492            Unit::CanRectangular => "XCA",
10493            Unit::CrateBeer => "XCB",
10494            Unit::Churn => "XCC",
10495            Unit::CanWithHandleAndSpout => "XCD",
10496            Unit::Creel => "XCE",
10497            Unit::Coffer => "XCF",
10498            Unit::Cage => "XCG",
10499            Unit::Chest => "XCH",
10500            Unit::Canister => "XCI",
10501            Unit::Coffin => "XCJ",
10502            Unit::Cask => "XCK",
10503            Unit::Coil => "XCL",
10504            Unit::Card_Dup => "XCM",
10505            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "XCN",
10506            Unit::CarboyNonProtected => "XCO",
10507            Unit::CarboyProtected => "XCP",
10508            Unit::Cartridge => "XCQ",
10509            Unit::Crate => "XCR",
10510            Unit::Case => "XCS",
10511            Unit::Carton => "XCT",
10512            Unit::Cup => "XCU",
10513            Unit::Cover => "XCV",
10514            Unit::CageRoll => "XCW",
10515            Unit::CanCylindrical => "XCX",
10516            Unit::Cylinder => "XCY",
10517            Unit::Canvas => "XCZ",
10518            Unit::CrateMultipleLayerPlastic => "XDA",
10519            Unit::CrateMultipleLayerWooden => "XDB",
10520            Unit::CrateMultipleLayerCardboard => "XDC",
10521            Unit::CageCommonwealthHandlingEquipmentPoolChep => "XDG",
10522            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "XDH",
10523            Unit::DrumIron => "XDI",
10524            Unit::DemijohnNonProtected => "XDJ",
10525            Unit::CrateBulkCardboard => "XDK",
10526            Unit::CrateBulkPlastic => "XDL",
10527            Unit::CrateBulkWooden => "XDM",
10528            Unit::Dispenser => "XDN",
10529            Unit::DemijohnProtected => "XDP",
10530            Unit::Drum => "XDR",
10531            Unit::TrayOneLayerNoCoverPlastic => "XDS",
10532            Unit::TrayOneLayerNoCoverWooden => "XDT",
10533            Unit::TrayOneLayerNoCoverPolystyrene => "XDU",
10534            Unit::TrayOneLayerNoCoverCardboard => "XDV",
10535            Unit::TrayTwoLayersNoCoverPlasticTray => "XDW",
10536            Unit::TrayTwoLayersNoCoverWooden => "XDX",
10537            Unit::TrayTwoLayersNoCoverCardboard => "XDY",
10538            Unit::BagPlastic => "XEC",
10539            Unit::CaseWithPalletBase => "XED",
10540            Unit::CaseWithPalletBaseWooden => "XEE",
10541            Unit::CaseWithPalletBaseCardboard => "XEF",
10542            Unit::CaseWithPalletBasePlastic => "XEG",
10543            Unit::CaseWithPalletBaseMetal => "XEH",
10544            Unit::CaseIsothermic => "XEI",
10545            Unit::Envelope => "XEN",
10546            Unit::Flexibag => "XFB",
10547            Unit::CrateFruit => "XFC",
10548            Unit::CrateFramed => "XFD",
10549            Unit::Flexitank => "XFE",
10550            Unit::Firkin => "XFI",
10551            Unit::Flask => "XFL",
10552            Unit::Footlocker => "XFO",
10553            Unit::Filmpack => "XFP",
10554            Unit::Frame => "XFR",
10555            Unit::Foodtainer => "XFT",
10556            Unit::CartFlatbed => "XFW",
10557            Unit::BagFlexibleContainer => "XFX",
10558            Unit::BottleGas => "XGB",
10559            Unit::Girder => "XGI",
10560            Unit::ContainerGallon => "XGL",
10561            Unit::ReceptacleGlass => "XGR",
10562            Unit::TrayContainingHorizontallyStackedFlatItems => "XGU",
10563            Unit::BagGunny => "XGY",
10564            Unit::GirdersInBundleBunchTruss => "XGZ",
10565            Unit::BasketWithHandlePlastic => "XHA",
10566            Unit::BasketWithHandleWooden => "XHB",
10567            Unit::BasketWithHandleCardboard => "XHC",
10568            Unit::Hogshead => "XHG",
10569            Unit::Hanger => "XHN",
10570            Unit::Hamper => "XHR",
10571            Unit::PackageDisplayWooden => "XIA",
10572            Unit::PackageDisplayCardboard => "XIB",
10573            Unit::PackageDisplayPlastic => "XIC",
10574            Unit::PackageDisplayMetal => "XID",
10575            Unit::PackageShow => "XIE",
10576            Unit::PackageFlow => "XIF",
10577            Unit::PackagePaperWrapped => "XIG",
10578            Unit::DrumPlastic => "XIH",
10579            Unit::PackageCardboardWithBottleGripHoles => "XIK",
10580            Unit::TrayRigidLiddedStackableCenTs144822002 => "XIL",
10581            Unit::Ingot => "XIN",
10582            Unit::IngotsInBundleBunchTruss => "XIZ",
10583            Unit::BagJumbo => "XJB",
10584            Unit::JerricanRectangular => "XJC",
10585            Unit::Jug => "XJG",
10586            Unit::Jar => "XJR",
10587            Unit::Jutebag => "XJT",
10588            Unit::JerricanCylindrical => "XJY",
10589            Unit::Keg => "XKG",
10590            Unit::Kit_Dup => "XKI",
10591            Unit::Luggage => "XLE",
10592            Unit::Log => "XLG",
10593            Unit::Lot => "XLT",
10594            Unit::Lug => "XLU",
10595            Unit::Liftvan => "XLV",
10596            Unit::LogsInBundleBunchTruss => "XLZ",
10597            Unit::CrateMetal => "XMA",
10598            Unit::BagMultiply => "XMB",
10599            Unit::CrateMilk => "XMC",
10600            Unit::ContainerMetal => "XME",
10601            Unit::ReceptacleMetal => "XMR",
10602            Unit::SackMultiWall => "XMS",
10603            Unit::Mat => "XMT",
10604            Unit::ReceptaclePlasticWrapped => "XMW",
10605            Unit::Matchbox => "XMX",
10606            Unit::NotAvailable => "XNA",
10607            Unit::UnpackedOrUnpackaged => "XNE",
10608            Unit::UnpackedOrUnpackagedSingleUnit => "XNF",
10609            Unit::UnpackedOrUnpackagedMultipleUnits => "XNG",
10610            Unit::Nest => "XNS",
10611            Unit::Net => "XNT",
10612            Unit::NetTubePlastic => "XNU",
10613            Unit::NetTubeTextile => "XNV",
10614            Unit::TwoSidedCageOnWheelsWithFixingStrap => "XO1",
10615            Unit::Trolley => "XO2",
10616            Unit::OnewayPalletIso012EuroPallet => "XO3",
10617            Unit::OnewayPalletIso111EuroPallet => "XO4",
10618            Unit::OnewayPalletIso221EuroPallet => "XO5",
10619            Unit::PalletWithExceptionalDimensions => "XO6",
10620            Unit::WoodenPallet40CmX80Cm => "XO7",
10621            Unit::PlasticPalletSrs60CmX80Cm => "XO8",
10622            Unit::PlasticPalletSrs80CmX120Cm => "XO9",
10623            Unit::PalletChep40CmX60Cm => "XOA",
10624            Unit::PalletChep80CmX120Cm => "XOB",
10625            Unit::PalletChep100CmX120Cm => "XOC",
10626            Unit::PalletAs40681993 => "XOD",
10627            Unit::PalletIsoT11 => "XOE",
10628            Unit::PlatformUnspecifiedWeightOrDimension => "XOF",
10629            Unit::PalletIso012EuroPallet => "XOG",
10630            Unit::PalletIso111EuroPallet => "XOH",
10631            Unit::PalletIso221EuroPallet => "XOI",
10632            Unit::_14EuroPallet => "XOJ",
10633            Unit::Block => "XOK",
10634            Unit::_18EuroPallet => "XOL",
10635            Unit::SyntheticPalletIso1 => "XOM",
10636            Unit::SyntheticPalletIso2 => "XON",
10637            Unit::WholesalerPallet => "XOP",
10638            Unit::Pallet80X100Cm => "XOQ",
10639            Unit::Pallet60X100Cm => "XOR",
10640            Unit::OnewayPallet => "XOS",
10641            Unit::Octabin => "XOT",
10642            Unit::ContainerOuter => "XOU",
10643            Unit::ReturnablePallet => "XOV",
10644            Unit::LargeBagPalletSized => "XOW",
10645            Unit::AWheeledPalletWithRaisedRim81X67X135 => "XOX",
10646            Unit::AWheeledPalletWithRaisedRim81X72X135 => "XOY",
10647            Unit::WheeledPalletWithRaisedRim81X60X16 => "XOZ",
10648            Unit::ChepPallet60CmX80Cm => "XP1",
10649            Unit::Pan => "XP2",
10650            Unit::LprPallet60CmX80Cm => "XP3",
10651            Unit::LprPallet80CmX120Cm => "XP4",
10652            Unit::Packet => "XPA",
10653            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "XPB",
10654            Unit::Parcel => "XPC",
10655            Unit::PalletModularCollars80cms100cms => "XPD",
10656            Unit::PalletModularCollars80cms120cms => "XPE",
10657            Unit::Pen => "XPF",
10658            Unit::Plate => "XPG",
10659            Unit::Pitcher => "XPH",
10660            Unit::Pipe => "XPI",
10661            Unit::Punnet => "XPJ",
10662            Unit::Package => "XPK",
10663            Unit::Pail => "XPL",
10664            Unit::Plank => "XPN",
10665            Unit::Pouch => "XPO",
10666            Unit::Piece_Dup => "XPP",
10667            Unit::ReceptaclePlastic => "XPR",
10668            Unit::Pot => "XPT",
10669            Unit::Tray => "XPU",
10670            Unit::PipesInBundleBunchTruss => "XPV",
10671            Unit::Pallet => "XPX",
10672            Unit::PlatesInBundleBunchTruss => "XPY",
10673            Unit::PlanksInBundleBunchTruss => "XPZ",
10674            Unit::DrumSteelNonRemovableHead => "XQA",
10675            Unit::DrumSteelRemovableHead => "XQB",
10676            Unit::DrumAluminiumNonRemovableHead => "XQC",
10677            Unit::DrumAluminiumRemovableHead => "XQD",
10678            Unit::DrumPlasticNonRemovableHead => "XQF",
10679            Unit::DrumPlasticRemovableHead => "XQG",
10680            Unit::BarrelWoodenBungType => "XQH",
10681            Unit::BarrelWoodenRemovableHead => "XQJ",
10682            Unit::JerricanSteelNonRemovableHead => "XQK",
10683            Unit::JerricanSteelRemovableHead => "XQL",
10684            Unit::JerricanPlasticNonRemovableHead => "XQM",
10685            Unit::JerricanPlasticRemovableHead => "XQN",
10686            Unit::BoxWoodenNaturalWoodOrdinary => "XQP",
10687            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "XQQ",
10688            Unit::BoxPlasticExpanded => "XQR",
10689            Unit::BoxPlasticSolid => "XQS",
10690            Unit::Rod => "XRD",
10691            Unit::Ring => "XRG",
10692            Unit::RackClothingHanger => "XRJ",
10693            Unit::Rack => "XRK",
10694            Unit::Reel => "XRL",
10695            Unit::Roll => "XRO",
10696            Unit::Rednet => "XRT",
10697            Unit::RodsInBundleBunchTruss => "XRZ",
10698            Unit::Sack => "XSA",
10699            Unit::Slab => "XSB",
10700            Unit::CrateShallow => "XSC",
10701            Unit::Spindle => "XSD",
10702            Unit::SeaChest => "XSE",
10703            Unit::Sachet => "XSH",
10704            Unit::Skid => "XSI",
10705            Unit::CaseSkeleton => "XSK",
10706            Unit::Slipsheet => "XSL",
10707            Unit::Sheetmetal => "XSM",
10708            Unit::Spool => "XSO",
10709            Unit::SheetPlasticWrapping => "XSP",
10710            Unit::CaseSteel => "XSS",
10711            Unit::Sheet => "XST",
10712            Unit::Suitcase => "XSU",
10713            Unit::EnvelopeSteel => "XSV",
10714            Unit::Shrinkwrapped => "XSW",
10715            Unit::Set_Dup => "XSX",
10716            Unit::Sleeve => "XSY",
10717            Unit::SheetsInBundleBunchTruss => "XSZ",
10718            Unit::Tablet_Dup => "XT1",
10719            Unit::Tub => "XTB",
10720            Unit::TeaChest => "XTC",
10721            Unit::TubeCollapsible => "XTD",
10722            Unit::Tyre_Dup => "XTE",
10723            Unit::TankContainerGeneric => "XTG",
10724            Unit::Tierce => "XTI",
10725            Unit::TankRectangular => "XTK",
10726            Unit::TubWithLid => "XTL",
10727            Unit::Tin => "XTN",
10728            Unit::Tun => "XTO",
10729            Unit::Trunk => "XTR",
10730            Unit::Truss => "XTS",
10731            Unit::BagTote => "XTT",
10732            Unit::Tube => "XTU",
10733            Unit::TubeWithNozzle => "XTV",
10734            Unit::PalletTriwall => "XTW",
10735            Unit::TankCylindrical => "XTY",
10736            Unit::TubesInBundleBunchTruss => "XTZ",
10737            Unit::Uncaged => "XUC",
10738            Unit::Unit => "XUN",
10739            Unit::Vat => "XVA",
10740            Unit::BulkGasAt1031MbarAnd15C => "XVG",
10741            Unit::Vial => "XVI",
10742            Unit::Vanpack => "XVK",
10743            Unit::BulkLiquid => "XVL",
10744            Unit::Vehicle => "XVN",
10745            Unit::BulkSolidLargeParticlesNodules => "XVO",
10746            Unit::VacuumPacked => "XVP",
10747            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "XVQ",
10748            Unit::BulkSolidGranularParticlesGrains => "XVR",
10749            Unit::BulkScrapMetal => "XVS",
10750            Unit::BulkSolidFineParticlesPowders => "XVY",
10751            Unit::IntermediateBulkContainer => "XWA",
10752            Unit::Wickerbottle => "XWB",
10753            Unit::IntermediateBulkContainerSteel => "XWC",
10754            Unit::IntermediateBulkContainerAluminium => "XWD",
10755            Unit::IntermediateBulkContainerMetal => "XWF",
10756            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "XWG",
10757            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "XWH",
10758            Unit::IntermediateBulkContainerMetalPressure10Kpa => "XWJ",
10759            Unit::IntermediateBulkContainerSteelLiquid => "XWK",
10760            Unit::IntermediateBulkContainerAluminiumLiquid => "XWL",
10761            Unit::IntermediateBulkContainerMetalLiquid => "XWM",
10762            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "XWN",
10763            Unit::IntermediateBulkContainerWovenPlasticCoated => "XWP",
10764            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "XWQ",
10765            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "XWR",
10766            Unit::IntermediateBulkContainerPlasticFilm => "XWS",
10767            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "XWT",
10768            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "XWU",
10769            Unit::IntermediateBulkContainerTextileCoated => "XWV",
10770            Unit::IntermediateBulkContainerTextileWithLiner => "XWW",
10771            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "XWX",
10772            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "XWY",
10773            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "XWZ",
10774            Unit::BagWovenPlasticWithoutInnerCoatLiner => "XXA",
10775            Unit::BagWovenPlasticSiftProof => "XXB",
10776            Unit::BagWovenPlasticWaterResistant => "XXC",
10777            Unit::BagPlasticsFilm => "XXD",
10778            Unit::BagTextileWithoutInnerCoatLiner => "XXF",
10779            Unit::BagTextileSiftProof => "XXG",
10780            Unit::BagTextileWaterResistant => "XXH",
10781            Unit::BagPaperMultiWall => "XXJ",
10782            Unit::BagPaperMultiWallWaterResistant => "XXK",
10783            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "XYA",
10784            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "XYB",
10785            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "XYC",
10786            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "XYD",
10787            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "XYF",
10788            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "XYG",
10789            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "XYH",
10790            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "XYJ",
10791            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "XYK",
10792            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "XYL",
10793            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "XYM",
10794            Unit::CompositePackagingGlassReceptacleInSteelDrum => "XYN",
10795            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "XYP",
10796            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "XYQ",
10797            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "XYR",
10798            Unit::CompositePackagingGlassReceptacleInWoodenBox => "XYS",
10799            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "XYT",
10800            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "XYV",
10801            Unit::CompositePackagingGlassReceptacleInFibreDrum => "XYW",
10802            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "XYX",
10803            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "XYY",
10804            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "XYZ",
10805            Unit::IntermediateBulkContainerPaperMultiWall => "XZA",
10806            Unit::BagLarge => "XZB",
10807            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "XZC",
10808            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "XZD",
10809            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "XZF",
10810            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "XZG",
10811            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "XZH",
10812            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "XZJ",
10813            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "XZK",
10814            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "XZL",
10815            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "XZM",
10816            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "XZN",
10817            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "XZP",
10818            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "XZQ",
10819            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "XZR",
10820            Unit::IntermediateBulkContainerComposite => "XZS",
10821            Unit::IntermediateBulkContainerFibreboard => "XZT",
10822            Unit::IntermediateBulkContainerFlexible => "XZU",
10823            Unit::IntermediateBulkContainerMetalOtherThanSteel => "XZV",
10824            Unit::IntermediateBulkContainerNaturalWood => "XZW",
10825            Unit::IntermediateBulkContainerPlywood => "XZX",
10826            Unit::IntermediateBulkContainerReconstitutedWood => "XZY",
10827            Unit::MutuallyDefined_Dup => "XZZ",
10828        }
10829    }
10830}
10831
10832impl crate::Description for Unit {
10833    fn description(&self) -> &str {
10834        match self {
10835            Unit::Group => "group",
10836            Unit::Outfit => "outfit",
10837            Unit::Ration => "ration",
10838            Unit::Shot => "shot",
10839            Unit::StickMilitary => "stick, military",
10840            Unit::TwentyFootContainer => "twenty foot container",
10841            Unit::FortyFootContainer => "forty foot container",
10842            Unit::DecilitrePerGram => "decilitre per gram",
10843            Unit::GramPerCubicCentimetre => "gram per cubic centimetre",
10844            Unit::TheoreticalPound => "theoretical pound",
10845            Unit::GramPerSquareCentimetre => "gram per square centimetre",
10846            Unit::TheoreticalTon => "theoretical ton",
10847            Unit::KilogramPerSquareMetre => "kilogram per square metre",
10848            Unit::KilopascalSquareMetrePerGram => "kilopascal square metre per gram",
10849            Unit::KilopascalPerMillimetre => "kilopascal per millimetre",
10850            Unit::MillilitrePerSquareCentimetreSecond => "millilitre per square centimetre second",
10851            Unit::OuncePerSquareFoot => "ounce per square foot",
10852            Unit::OuncePerSquareFootPer001inch => "ounce per square foot per 0,01inch",
10853            Unit::MillilitrePerSecond => "millilitre per second",
10854            Unit::MillilitrePerMinute => "millilitre per minute",
10855            Unit::Sitas => "sitas",
10856            Unit::Mesh => "mesh",
10857            Unit::NetKilogram => "net kilogram",
10858            Unit::PartPerMillion => "part per million",
10859            Unit::PercentWeight => "percent weight",
10860            Unit::PartPerBillionUs => "part per billion (US)",
10861            Unit::Millipascal => "millipascal",
10862            Unit::MilliInch => "milli-inch",
10863            Unit::PoundPerSquareInchAbsolute => "pound per square inch absolute",
10864            Unit::Henry => "henry",
10865            Unit::FootPoundForce => "foot pound-force",
10866            Unit::PoundPerCubicFoot => "pound per cubic foot",
10867            Unit::Poise => "poise",
10868            Unit::Stokes => "stokes",
10869            Unit::FixedRate => "fixed rate",
10870            Unit::RadianPerSecond => "radian per second",
10871            Unit::RadianPerSecondSquared => "radian per second squared",
10872            Unit::Roentgen => "roentgen",
10873            Unit::VoltAc => "volt AC",
10874            Unit::VoltDc => "volt DC",
10875            Unit::BritishThermalUnitInternationalTablePerHour => "British thermal unit (international table) per hour",
10876            Unit::CubicCentimetrePerSecond => "cubic centimetre per second",
10877            Unit::CubicFootPerHour => "cubic foot per hour",
10878            Unit::CubicFootPerMinute => "cubic foot per minute",
10879            Unit::CentimetrePerSecond => "centimetre per second",
10880            Unit::Decibel => "decibel",
10881            Unit::Kilobyte => "kilobyte",
10882            Unit::Kilobecquerel => "kilobecquerel",
10883            Unit::Kilocurie => "kilocurie",
10884            Unit::Megagram => "megagram",
10885            Unit::MetrePerMinute => "metre per minute",
10886            Unit::Milliroentgen => "milliroentgen",
10887            Unit::Millivolt => "millivolt",
10888            Unit::Megajoule => "megajoule",
10889            Unit::Manmonth => "manmonth",
10890            Unit::Centistokes => "centistokes",
10891            Unit::Microlitre => "microlitre",
10892            Unit::MicrometreMicron => "micrometre (micron)",
10893            Unit::Milliampere => "milliampere",
10894            Unit::Megabyte => "megabyte",
10895            Unit::MilligramPerHour => "milligram per hour",
10896            Unit::Megabecquerel => "megabecquerel",
10897            Unit::Microfarad => "microfarad",
10898            Unit::NewtonPerMetre => "newton per metre",
10899            Unit::OunceInch => "ounce inch",
10900            Unit::OunceFoot => "ounce foot",
10901            Unit::Picofarad => "picofarad",
10902            Unit::PoundPerHour => "pound per hour",
10903            Unit::TonUsPerHour => "ton (US) per hour",
10904            Unit::KilolitrePerHour => "kilolitre per hour",
10905            Unit::BarrelUsPerMinute => "barrel (US) per minute",
10906            Unit::Batch => "batch",
10907            Unit::MmscfDay => "MMSCF/day",
10908            Unit::HydraulicHorsePower => "hydraulic horse power",
10909            Unit::AmpereSquareMetrePerJouleSecond => "ampere square metre per joule second",
10910            Unit::Angstrom => "angstrom",
10911            Unit::AstronomicalUnit => "astronomical unit",
10912            Unit::Attojoule => "attojoule",
10913            Unit::Barn => "barn",
10914            Unit::BarnPerElectronvolt => "barn per electronvolt",
10915            Unit::BarnPerSteradianElectronvolt => "barn per steradian electronvolt",
10916            Unit::BarnPerSteradian => "barn per steradian",
10917            Unit::BecquerelPerKilogram => "becquerel per kilogram",
10918            Unit::BecquerelPerCubicMetre => "becquerel per cubic metre",
10919            Unit::AmperePerCentimetre => "ampere per centimetre",
10920            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "British thermal unit (international table) per second square foot degree Rankine",
10921            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "British thermal unit (international table) per pound degree Rankine",
10922            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "British thermal unit (international table) per second foot degree Rankine",
10923            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "British thermal unit (international table) per hour square foot degree Rankine",
10924            Unit::CandelaPerSquareMetre => "candela per square metre",
10925            Unit::CoulombMetre => "coulomb metre",
10926            Unit::CoulombMetreSquaredPerVolt => "coulomb metre squared per volt",
10927            Unit::CoulombPerCubicCentimetre => "coulomb per cubic centimetre",
10928            Unit::CoulombPerCubicMetre => "coulomb per cubic metre",
10929            Unit::AmperePerMillimetre => "ampere per millimetre",
10930            Unit::CoulombPerCubicMillimetre => "coulomb per cubic millimetre",
10931            Unit::CoulombPerKilogramSecond => "coulomb per kilogram second",
10932            Unit::CoulombPerMole => "coulomb per mole",
10933            Unit::CoulombPerSquareCentimetre => "coulomb per square centimetre",
10934            Unit::CoulombPerSquareMetre => "coulomb per square metre",
10935            Unit::CoulombPerSquareMillimetre => "coulomb per square millimetre",
10936            Unit::CubicCentimetrePerMole => "cubic centimetre per mole",
10937            Unit::CubicDecimetrePerMole => "cubic decimetre per mole",
10938            Unit::CubicMetrePerCoulomb => "cubic metre per coulomb",
10939            Unit::CubicMetrePerKilogram => "cubic metre per kilogram",
10940            Unit::AmperePerSquareCentimetre => "ampere per square centimetre",
10941            Unit::CubicMetrePerMole => "cubic metre per mole",
10942            Unit::AmperePerSquareMetre => "ampere per square metre",
10943            Unit::CuriePerKilogram => "curie per kilogram",
10944            Unit::DeadweightTonnage => "deadweight tonnage",
10945            Unit::Decalitre => "decalitre",
10946            Unit::Decametre => "decametre",
10947            Unit::Decitex => "decitex",
10948            Unit::DegreeRankine => "degree Rankine",
10949            Unit::Denier => "denier",
10950            Unit::AmpereSquareMetre => "ampere square metre",
10951            Unit::Electronvolt => "electronvolt",
10952            Unit::ElectronvoltPerMetre => "electronvolt per metre",
10953            Unit::ElectronvoltSquareMetre => "electronvolt square metre",
10954            Unit::ElectronvoltSquareMetrePerKilogram => "electronvolt square metre per kilogram",
10955            Unit::_8PartCloudCover => "8-part cloud cover",
10956            Unit::AmperePerSquareMetreKelvinSquared => "ampere per square metre kelvin squared",
10957            Unit::Exajoule => "exajoule",
10958            Unit::FaradPerMetre => "farad per metre",
10959            Unit::AmperePerSquareMillimetre => "ampere per square millimetre",
10960            Unit::Femtojoule => "femtojoule",
10961            Unit::Femtometre => "femtometre",
10962            Unit::FootPerSecondSquared => "foot per second squared",
10963            Unit::FootPoundForcePerSecond => "foot pound-force per second",
10964            Unit::FreightTon => "freight ton",
10965            Unit::Gal => "gal",
10966            Unit::AmpereSecond => "ampere second",
10967            Unit::GigacoulombPerCubicMetre => "gigacoulomb per cubic metre",
10968            Unit::Gigaelectronvolt => "gigaelectronvolt",
10969            Unit::Gigahertz => "gigahertz",
10970            Unit::Gigaohm => "gigaohm",
10971            Unit::GigaohmMetre => "gigaohm metre",
10972            Unit::Gigapascal => "gigapascal",
10973            Unit::Rate => "rate",
10974            Unit::Gigawatt => "gigawatt",
10975            Unit::Gon => "gon",
10976            Unit::GramPerCubicMetre => "gram per cubic metre",
10977            Unit::GramPerMole => "gram per mole",
10978            Unit::Gray => "gray",
10979            Unit::GrayPerSecond => "gray per second",
10980            Unit::Hectopascal => "hectopascal",
10981            Unit::HenryPerMetre => "henry per metre",
10982            Unit::Bit => "bit",
10983            Unit::Ball => "ball",
10984            Unit::BulkPack => "bulk pack",
10985            Unit::Acre => "acre",
10986            Unit::Activity => "activity",
10987            Unit::Byte => "byte",
10988            Unit::AmperePerMetre => "ampere per metre",
10989            Unit::AdditionalMinute => "additional minute",
10990            Unit::AverageMinutePerCall => "average minute per call",
10991            Unit::Fathom => "fathom",
10992            Unit::AccessLine => "access line",
10993            Unit::AmpereHour => "ampere hour",
10994            Unit::Ampere => "ampere",
10995            Unit::Year => "year",
10996            Unit::TroyOunceOrApothecaryOunce => "troy ounce or apothecary ounce",
10997            Unit::AntiHemophilicFactorAhfUnit => "anti-hemophilic factor (AHF) unit",
10998            Unit::Assortment => "assortment",
10999            Unit::AlcoholicStrengthByMass => "alcoholic strength by mass",
11000            Unit::AlcoholicStrengthByVolume => "alcoholic strength by volume",
11001            Unit::StandardAtmosphere => "standard atmosphere",
11002            Unit::AmericanWireGauge => "american wire gauge",
11003            Unit::Assembly => "assembly",
11004            Unit::BritishThermalUnitInternationalTablePerPound => "British thermal unit (international table) per pound",
11005            Unit::BarrelUsPerDay => "barrel (US) per day",
11006            Unit::BitPerSecond => "bit per second",
11007            Unit::JoulePerKilogramKelvin => "joule per kilogram kelvin",
11008            Unit::JoulePerMetre => "joule per metre",
11009            Unit::JoulePerSquareMetre => "joule per square metre",
11010            Unit::JoulePerMetreToFourthPower => "joule per metre to the fourth power",
11011            Unit::JoulePerMole => "joule per mole",
11012            Unit::JoulePerMoleKelvin => "joule per mole kelvin",
11013            Unit::Credit => "credit",
11014            Unit::JouleSecond => "joule second",
11015            Unit::Digit => "digit",
11016            Unit::JouleSquareMetrePerKilogram => "joule square metre per kilogram",
11017            Unit::KelvinPerWatt => "kelvin per watt",
11018            Unit::Kiloampere => "kiloampere",
11019            Unit::KiloamperePerSquareMetre => "kiloampere per square metre",
11020            Unit::KiloamperePerMetre => "kiloampere per metre",
11021            Unit::KilobecquerelPerKilogram => "kilobecquerel per kilogram",
11022            Unit::Kilocoulomb => "kilocoulomb",
11023            Unit::KilocoulombPerCubicMetre => "kilocoulomb per cubic metre",
11024            Unit::KilocoulombPerSquareMetre => "kilocoulomb per square metre",
11025            Unit::Kiloelectronvolt => "kiloelectronvolt",
11026            Unit::BattingPound => "batting pound",
11027            Unit::Gibibit => "gibibit",
11028            Unit::KilogramMetrePerSecond => "kilogram metre per second",
11029            Unit::KilogramMetreSquared => "kilogram metre squared",
11030            Unit::KilogramMetreSquaredPerSecond => "kilogram metre squared per second",
11031            Unit::KilogramPerCubicDecimetre => "kilogram per cubic decimetre",
11032            Unit::KilogramPerLitre => "kilogram per litre",
11033            Unit::BarrelImperial => "barrel, imperial",
11034            Unit::KilojoulePerKelvin => "kilojoule per kelvin",
11035            Unit::KilojoulePerKilogram => "kilojoule per kilogram",
11036            Unit::KilojoulePerKilogramKelvin => "kilojoule per kilogram kelvin",
11037            Unit::KilojoulePerMole => "kilojoule per mole",
11038            Unit::Kilomole => "kilomole",
11039            Unit::KilomolePerCubicMetre => "kilomole per cubic metre",
11040            Unit::Kilonewton => "kilonewton",
11041            Unit::KilonewtonMetre => "kilonewton metre",
11042            Unit::Kiloohm => "kiloohm",
11043            Unit::KiloohmMetre => "kiloohm metre",
11044            Unit::Kilosecond => "kilosecond",
11045            Unit::Kilosiemens => "kilosiemens",
11046            Unit::KilosiemensPerMetre => "kilosiemens per metre",
11047            Unit::KilovoltPerMetre => "kilovolt per metre",
11048            Unit::KiloweberPerMetre => "kiloweber per metre",
11049            Unit::LightYear => "light year",
11050            Unit::LitrePerMole => "litre per mole",
11051            Unit::LumenHour => "lumen hour",
11052            Unit::LumenPerSquareMetre => "lumen per square metre",
11053            Unit::LumenPerWatt => "lumen per watt",
11054            Unit::LumenSecond => "lumen second",
11055            Unit::LuxHour => "lux hour",
11056            Unit::LuxSecond => "lux second",
11057            Unit::MegaamperePerSquareMetre => "megaampere per square metre",
11058            Unit::MegabecquerelPerKilogram => "megabecquerel per kilogram",
11059            Unit::Gigabit => "gigabit",
11060            Unit::MegacoulombPerCubicMetre => "megacoulomb per cubic metre",
11061            Unit::Cycle => "cycle",
11062            Unit::MegacoulombPerSquareMetre => "megacoulomb per square metre",
11063            Unit::Megaelectronvolt => "megaelectronvolt",
11064            Unit::MegagramPerCubicMetre => "megagram per cubic metre",
11065            Unit::Meganewton => "meganewton",
11066            Unit::MeganewtonMetre => "meganewton metre",
11067            Unit::Megaohm => "megaohm",
11068            Unit::MegaohmMetre => "megaohm metre",
11069            Unit::MegasiemensPerMetre => "megasiemens per metre",
11070            Unit::Megavolt => "megavolt",
11071            Unit::MegavoltPerMetre => "megavolt per metre",
11072            Unit::JoulePerCubicMetre => "joule per cubic metre",
11073            Unit::GigabitPerSecond => "gigabit per second",
11074            Unit::ReciprocalMetreSquaredReciprocalSecond => "reciprocal metre squared reciprocal second",
11075            Unit::InchPerLinearFoot => "inch per linear foot",
11076            Unit::MetreToFourthPower => "metre to the fourth power",
11077            Unit::Microampere => "microampere",
11078            Unit::Microbar => "microbar",
11079            Unit::Microcoulomb => "microcoulomb",
11080            Unit::MicrocoulombPerCubicMetre => "microcoulomb per cubic metre",
11081            Unit::MicrocoulombPerSquareMetre => "microcoulomb per square metre",
11082            Unit::MicrofaradPerMetre => "microfarad per metre",
11083            Unit::Microhenry => "microhenry",
11084            Unit::MicrohenryPerMetre => "microhenry per metre",
11085            Unit::Micronewton => "micronewton",
11086            Unit::MicronewtonMetre => "micronewton metre",
11087            Unit::Microohm => "microohm",
11088            Unit::MicroohmMetre => "microohm metre",
11089            Unit::Micropascal => "micropascal",
11090            Unit::Microradian => "microradian",
11091            Unit::Microsecond => "microsecond",
11092            Unit::Microsiemens => "microsiemens",
11093            Unit::BarUnitPressure => "bar [unit of pressure]",
11094            Unit::BaseBox => "base box",
11095            Unit::BoardFoot => "board foot",
11096            Unit::BrakeHorsePower => "brake horse power",
11097            Unit::BillionEur => "billion (EUR)",
11098            Unit::DryBarrelUs => "dry barrel (US)",
11099            Unit::BarrelUs => "barrel (US)",
11100            Unit::HundredBoardFoot => "hundred board foot",
11101            Unit::BeatsPerMinute => "beats per minute",
11102            Unit::Becquerel => "becquerel",
11103            Unit::BritishThermalUnitInternationalTable => "British thermal unit (international table)",
11104            Unit::BushelUs => "bushel (US)",
11105            Unit::BushelUk => "bushel (UK)",
11106            Unit::Call => "call",
11107            Unit::Millifarad => "millifarad",
11108            Unit::Milligal => "milligal",
11109            Unit::MilligramPerMetre => "milligram per metre",
11110            Unit::Milligray => "milligray",
11111            Unit::Millihenry => "millihenry",
11112            Unit::Millijoule => "millijoule",
11113            Unit::MillimetrePerSecond => "millimetre per second",
11114            Unit::MillimetreSquaredPerSecond => "millimetre squared per second",
11115            Unit::Millimole => "millimole",
11116            Unit::MolePerKilogram => "mole per kilogram",
11117            Unit::Millinewton => "millinewton",
11118            Unit::Kibibit => "kibibit",
11119            Unit::MillinewtonPerMetre => "millinewton per metre",
11120            Unit::MilliohmMetre => "milliohm metre",
11121            Unit::MillipascalSecond => "millipascal second",
11122            Unit::Milliradian => "milliradian",
11123            Unit::Millisecond => "millisecond",
11124            Unit::Millisiemens => "millisiemens",
11125            Unit::Millisievert => "millisievert",
11126            Unit::Millitesla => "millitesla",
11127            Unit::MicrovoltPerMetre => "microvolt per metre",
11128            Unit::MillivoltPerMetre => "millivolt per metre",
11129            Unit::Milliwatt => "milliwatt",
11130            Unit::MilliwattPerSquareMetre => "milliwatt per square metre",
11131            Unit::Milliweber => "milliweber",
11132            Unit::Mole => "mole",
11133            Unit::MolePerCubicDecimetre => "mole per cubic decimetre",
11134            Unit::MolePerCubicMetre => "mole per cubic metre",
11135            Unit::Kilobit => "kilobit",
11136            Unit::MolePerLitre => "mole per litre",
11137            Unit::Nanoampere => "nanoampere",
11138            Unit::Nanocoulomb => "nanocoulomb",
11139            Unit::Nanofarad => "nanofarad",
11140            Unit::NanofaradPerMetre => "nanofarad per metre",
11141            Unit::Nanohenry => "nanohenry",
11142            Unit::NanohenryPerMetre => "nanohenry per metre",
11143            Unit::Nanometre => "nanometre",
11144            Unit::NanoohmMetre => "nanoohm metre",
11145            Unit::Nanosecond => "nanosecond",
11146            Unit::Nanotesla => "nanotesla",
11147            Unit::Nanowatt => "nanowatt",
11148            Unit::Neper => "neper",
11149            Unit::NeperPerSecond => "neper per second",
11150            Unit::Picometre => "picometre",
11151            Unit::NewtonMetreSecond => "newton metre second",
11152            Unit::NewtonMetreSquaredPerKilogramSquared => "newton metre squared per kilogram squared",
11153            Unit::NewtonPerSquareMetre => "newton per square metre",
11154            Unit::NewtonPerSquareMillimetre => "newton per square millimetre",
11155            Unit::NewtonSecond => "newton second",
11156            Unit::NewtonSecondPerMetre => "newton second per metre",
11157            Unit::Octave => "octave",
11158            Unit::OhmCentimetre => "ohm centimetre",
11159            Unit::OhmMetre => "ohm metre",
11160            Unit::One => "one",
11161            Unit::Parsec => "parsec",
11162            Unit::PascalPerKelvin => "pascal per kelvin",
11163            Unit::PascalSecond => "pascal second",
11164            Unit::PascalSecondPerCubicMetre => "pascal second per cubic metre",
11165            Unit::PascalSecondPerMetre => "pascal second per metre",
11166            Unit::Petajoule => "petajoule",
11167            Unit::Phon => "phon",
11168            Unit::Centipoise => "centipoise",
11169            Unit::Picoampere => "picoampere",
11170            Unit::Picocoulomb => "picocoulomb",
11171            Unit::PicofaradPerMetre => "picofarad per metre",
11172            Unit::Picohenry => "picohenry",
11173            Unit::KilobitPerSecond => "kilobit per second",
11174            Unit::Picowatt => "picowatt",
11175            Unit::PicowattPerSquareMetre => "picowatt per square metre",
11176            Unit::PoundForce => "pound-force",
11177            Unit::KilovoltAmpereHour => "kilovolt ampere hour",
11178            Unit::MillicoulombPerKilogram => "millicoulomb per kilogram",
11179            Unit::Rad => "rad",
11180            Unit::Radian => "radian",
11181            Unit::RadianSquareMetrePerMole => "radian square metre per mole",
11182            Unit::RadianSquareMetrePerKilogram => "radian square metre per kilogram",
11183            Unit::RadianPerMetre => "radian per metre",
11184            Unit::ReciprocalAngstrom => "reciprocal angstrom",
11185            Unit::ReciprocalCubicMetre => "reciprocal cubic metre",
11186            Unit::ReciprocalCubicMetrePerSecond => "reciprocal cubic metre per second",
11187            Unit::ReciprocalElectronVoltPerCubicMetre => "reciprocal electron volt per cubic metre",
11188            Unit::ReciprocalHenry => "reciprocal henry",
11189            Unit::CoilGroup => "coil group",
11190            Unit::ReciprocalJoulePerCubicMetre => "reciprocal joule per cubic metre",
11191            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "reciprocal kelvin or kelvin to the power minus one",
11192            Unit::ReciprocalMetre => "reciprocal metre",
11193            Unit::ReciprocalSquareMetre => "reciprocal square metre",
11194            Unit::ReciprocalMinute => "reciprocal minute",
11195            Unit::ReciprocalMole => "reciprocal mole",
11196            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "reciprocal pascal or pascal to the power minus one",
11197            Unit::ReciprocalSecond => "reciprocal second",
11198            Unit::ReciprocalSecondPerMetreSquared => "reciprocal second per metre squared",
11199            Unit::CarryingCapacityInMetricTon => "carrying capacity in metric ton",
11200            Unit::Candela => "candela",
11201            Unit::DegreeCelsius => "degree Celsius",
11202            Unit::Hundred => "hundred",
11203            Unit::Card => "card",
11204            Unit::Centigram => "centigram",
11205            Unit::CoulombPerKilogram => "coulomb per kilogram",
11206            Unit::HundredLeave => "hundred leave",
11207            Unit::Centilitre => "centilitre",
11208            Unit::SquareCentimetre => "square centimetre",
11209            Unit::CubicCentimetre => "cubic centimetre",
11210            Unit::Centimetre => "centimetre",
11211            Unit::HundredPack => "hundred pack",
11212            Unit::CentalUk => "cental (UK)",
11213            Unit::Coulomb => "coulomb",
11214            Unit::ContentGram => "content gram",
11215            Unit::MetricCarat => "metric carat",
11216            Unit::ContentTonMetric => "content ton (metric)",
11217            Unit::Curie => "curie",
11218            Unit::HundredPoundCwtHundredWeightUs => "hundred pound (cwt) / hundred weight (US)",
11219            Unit::HundredWeightUk => "hundred weight (UK)",
11220            Unit::KilowattHourPerHour => "kilowatt hour per hour",
11221            Unit::LotUnitWeight => "lot [unit of weight]",
11222            Unit::ReciprocalSecondPerSteradian => "reciprocal second per steradian",
11223            Unit::SiemensPerMetre => "siemens per metre",
11224            Unit::Mebibit => "mebibit",
11225            Unit::SiemensSquareMetrePerMole => "siemens square metre per mole",
11226            Unit::Sievert => "sievert",
11227            Unit::Sone => "sone",
11228            Unit::SquareCentimetrePerErg => "square centimetre per erg",
11229            Unit::SquareCentimetrePerSteradianErg => "square centimetre per steradian erg",
11230            Unit::MetreKelvin => "metre kelvin",
11231            Unit::SquareMetreKelvinPerWatt => "square metre kelvin per watt",
11232            Unit::ReciprocalSecondPerSteradianMetreSquared => "reciprocal second per steradian metre squared",
11233            Unit::SquareMetrePerJoule => "square metre per joule",
11234            Unit::SquareMetrePerKilogram => "square metre per kilogram",
11235            Unit::SquareMetrePerMole => "square metre per mole",
11236            Unit::PenGramProtein => "pen gram (protein)",
11237            Unit::SquareMetrePerSteradian => "square metre per steradian",
11238            Unit::SquareMetrePerSteradianJoule => "square metre per steradian joule",
11239            Unit::SquareMetrePerVoltSecond => "square metre per volt second",
11240            Unit::Steradian => "steradian",
11241            Unit::Terahertz => "terahertz",
11242            Unit::Terajoule => "terajoule",
11243            Unit::Terawatt => "terawatt",
11244            Unit::TerawattHour => "terawatt hour",
11245            Unit::Tesla => "tesla",
11246            Unit::Tex => "tex",
11247            Unit::Megabit => "megabit",
11248            Unit::TonnePerCubicMetre => "tonne per cubic metre",
11249            Unit::TropicalYear => "tropical year",
11250            Unit::UnifiedAtomicMassUnit => "unified atomic mass unit",
11251            Unit::Var => "var",
11252            Unit::VoltSquaredPerKelvinSquared => "volt squared per kelvin squared",
11253            Unit::VoltAmpere => "volt - ampere",
11254            Unit::VoltPerCentimetre => "volt per centimetre",
11255            Unit::VoltPerKelvin => "volt per kelvin",
11256            Unit::MillivoltPerKelvin => "millivolt per kelvin",
11257            Unit::KilogramPerSquareCentimetre => "kilogram per square centimetre",
11258            Unit::VoltPerMetre => "volt per metre",
11259            Unit::VoltPerMillimetre => "volt per millimetre",
11260            Unit::WattPerKelvin => "watt per kelvin",
11261            Unit::WattPerMetreKelvin => "watt per metre kelvin",
11262            Unit::WattPerSquareMetre => "watt per square metre",
11263            Unit::WattPerSquareMetreKelvin => "watt per square metre kelvin",
11264            Unit::WattPerSquareMetreKelvinToFourthPower => "watt per square metre kelvin to the fourth power",
11265            Unit::WattPerSteradian => "watt per steradian",
11266            Unit::WattPerSteradianSquareMetre => "watt per steradian square metre",
11267            Unit::WeberPerMetre => "weber per metre",
11268            Unit::RoentgenPerSecond => "roentgen per second",
11269            Unit::WeberPerMillimetre => "weber per millimetre",
11270            Unit::MinuteUnitAngle => "minute [unit of angle]",
11271            Unit::SecondUnitAngle => "second [unit of angle]",
11272            Unit::Book => "book",
11273            Unit::Round => "round",
11274            Unit::NumberWords => "number of words",
11275            Unit::InchToFourthPower => "inch to the fourth power",
11276            Unit::JouleSquareMetre => "joule square metre",
11277            Unit::KilogramPerMole => "kilogram per mole",
11278            Unit::Megacoulomb => "megacoulomb",
11279            Unit::MegajoulePerSecond => "megajoule per second",
11280            Unit::Microwatt => "microwatt",
11281            Unit::Microtesla => "microtesla",
11282            Unit::Microvolt => "microvolt",
11283            Unit::MillinewtonMetre => "millinewton metre",
11284            Unit::MicrowattPerSquareMetre => "microwatt per square metre",
11285            Unit::Millicoulomb => "millicoulomb",
11286            Unit::MillimolePerKilogram => "millimole per kilogram",
11287            Unit::MillicoulombPerCubicMetre => "millicoulomb per cubic metre",
11288            Unit::MillicoulombPerSquareMetre => "millicoulomb per square metre",
11289            Unit::Rem => "rem",
11290            Unit::SecondPerCubicMetre => "second per cubic metre",
11291            Unit::SecondPerCubicMetreRadian => "second per cubic metre radian",
11292            Unit::JoulePerGram => "joule per gram",
11293            Unit::Decare => "decare",
11294            Unit::TenDay => "ten day",
11295            Unit::Day => "day",
11296            Unit::DryPound => "dry pound",
11297            Unit::DecibelMilliwatts => "Decibel-milliwatts",
11298            Unit::DecibelWatt => "Decibel watt",
11299            Unit::DegreeUnitAngle => "degree [unit of angle]",
11300            Unit::Decade => "decade",
11301            Unit::Decigram => "decigram",
11302            Unit::Decagram => "decagram",
11303            Unit::Decilitre => "decilitre",
11304            Unit::CubicDecametre => "cubic decametre",
11305            Unit::SquareDecimetre => "square decimetre",
11306            Unit::StandardKilolitre => "standard kilolitre",
11307            Unit::CubicDecimetre => "cubic decimetre",
11308            Unit::Decimetre => "decimetre",
11309            Unit::DecinewtonMetre => "decinewton metre",
11310            Unit::DozenPiece => "dozen piece",
11311            Unit::DozenPair => "dozen pair",
11312            Unit::DisplacementTonnage => "displacement tonnage",
11313            Unit::DramUs => "dram (US)",
11314            Unit::DramUk => "dram (UK)",
11315            Unit::DozenRoll => "dozen roll",
11316            Unit::DryTon => "dry ton",
11317            Unit::Decitonne => "decitonne",
11318            Unit::Pennyweight => "pennyweight",
11319            Unit::Dozen => "dozen",
11320            Unit::DozenPack => "dozen pack",
11321            Unit::NewtonPerSquareCentimetre => "newton per square centimetre",
11322            Unit::MegawattHourPerHour => "megawatt hour per hour",
11323            Unit::MegawattPerHertz => "megawatt per hertz",
11324            Unit::MilliampereHour => "milliampere hour",
11325            Unit::DegreeDay => "degree day",
11326            Unit::Mille => "mille",
11327            Unit::KilocalorieInternationalTable => "kilocalorie (international table)",
11328            Unit::KilocalorieThermochemicalPerHour => "kilocalorie (thermochemical) per hour",
11329            Unit::MillionBtuItPerHour => "million Btu(IT) per hour",
11330            Unit::CubicFootPerSecond => "cubic foot per second",
11331            Unit::TonnePerHour => "tonne per hour",
11332            Unit::Ping => "ping",
11333            Unit::MegabitPerSecond => "megabit per second",
11334            Unit::Shares => "shares",
11335            Unit::Teu => "TEU",
11336            Unit::Tyre => "tyre",
11337            Unit::ActiveUnit => "active unit",
11338            Unit::Dose => "dose",
11339            Unit::AirDryTon => "air dry ton",
11340            Unit::Strand => "strand",
11341            Unit::SquareMetrePerLitre => "square metre per litre",
11342            Unit::LitrePerHour => "litre per hour",
11343            Unit::FootPerThousand => "foot per thousand",
11344            Unit::Gigabyte => "gigabyte",
11345            Unit::Terabyte => "terabyte",
11346            Unit::Petabyte => "petabyte",
11347            Unit::Pixel => "pixel",
11348            Unit::Megapixel => "megapixel",
11349            Unit::DotsPerInch => "dots per inch",
11350            Unit::GrossKilogram => "gross kilogram",
11351            Unit::PartPerHundredThousand => "part per hundred thousand",
11352            Unit::KilogramForcePerSquareMillimetre => "kilogram-force per square millimetre",
11353            Unit::KilogramForcePerSquareCentimetre => "kilogram-force per square centimetre",
11354            Unit::JoulePerSquareCentimetre => "joule per square centimetre",
11355            Unit::KilogramForceMetrePerSquareCentimetre => "kilogram-force metre per square centimetre",
11356            Unit::Milliohm => "milliohm",
11357            Unit::KilowattHourPerCubicMetre => "kilowatt hour per cubic metre",
11358            Unit::KilowattHourPerKelvin => "kilowatt hour per kelvin",
11359            Unit::ServiceUnit => "service unit",
11360            Unit::WorkingDay => "working day",
11361            Unit::AccountingUnit => "accounting unit",
11362            Unit::Job => "job",
11363            Unit::RunFoot => "run foot",
11364            Unit::Test => "test",
11365            Unit::Trip => "trip",
11366            Unit::Use => "use",
11367            Unit::Well => "well",
11368            Unit::Zone => "zone",
11369            Unit::ExabitPerSecond => "exabit per second",
11370            Unit::Exbibyte => "exbibyte",
11371            Unit::Pebibyte => "pebibyte",
11372            Unit::Tebibyte => "tebibyte",
11373            Unit::Gibibyte => "gibibyte",
11374            Unit::Mebibyte => "mebibyte",
11375            Unit::Kibibyte => "kibibyte",
11376            Unit::ExbibitPerMetre => "exbibit per metre",
11377            Unit::ExbibitPerSquareMetre => "exbibit per square metre",
11378            Unit::ExbibitPerCubicMetre => "exbibit per cubic metre",
11379            Unit::GigabytePerSecond => "gigabyte per second",
11380            Unit::GibibitPerMetre => "gibibit per metre",
11381            Unit::GibibitPerSquareMetre => "gibibit per square metre",
11382            Unit::GibibitPerCubicMetre => "gibibit per cubic metre",
11383            Unit::KibibitPerMetre => "kibibit per metre",
11384            Unit::KibibitPerSquareMetre => "kibibit per square metre",
11385            Unit::KibibitPerCubicMetre => "kibibit per cubic metre",
11386            Unit::MebibitPerMetre => "mebibit per metre",
11387            Unit::MebibitPerSquareMetre => "mebibit per square metre",
11388            Unit::MebibitPerCubicMetre => "mebibit per cubic metre",
11389            Unit::Petabit => "petabit",
11390            Unit::PetabitPerSecond => "petabit per second",
11391            Unit::PebibitPerMetre => "pebibit per metre",
11392            Unit::PebibitPerSquareMetre => "pebibit per square metre",
11393            Unit::PebibitPerCubicMetre => "pebibit per cubic metre",
11394            Unit::Terabit => "terabit",
11395            Unit::TerabitPerSecond => "terabit per second",
11396            Unit::TebibitPerMetre => "tebibit per metre",
11397            Unit::TebibitPerCubicMetre => "tebibit per cubic metre",
11398            Unit::TebibitPerSquareMetre => "tebibit per square metre",
11399            Unit::BitPerMetre => "bit per metre",
11400            Unit::BitPerSquareMetre => "bit per square metre",
11401            Unit::ReciprocalCentimetre => "reciprocal centimetre",
11402            Unit::ReciprocalDay => "reciprocal day",
11403            Unit::CubicDecimetrePerHour => "cubic decimetre per hour",
11404            Unit::KilogramPerHour => "kilogram per hour",
11405            Unit::KilomolePerSecond => "kilomole per second",
11406            Unit::MolePerSecond => "mole per second",
11407            Unit::DegreePerSecond => "degree per second",
11408            Unit::MillimetrePerDegreeCelciusMetre => "millimetre per degree Celcius metre",
11409            Unit::DegreeCelsiusPerKelvin => "degree Celsius per kelvin",
11410            Unit::HectopascalPerBar => "hectopascal per bar",
11411            Unit::Each => "each",
11412            Unit::ElectronicMailBox => "electronic mail box",
11413            Unit::EquivalentGallon => "equivalent gallon",
11414            Unit::BitPerCubicMetre => "bit per cubic metre",
11415            Unit::KelvinPerKelvin => "kelvin per kelvin",
11416            Unit::KilopascalPerBar => "kilopascal per bar",
11417            Unit::MillibarPerBar => "millibar per bar",
11418            Unit::MegapascalPerBar => "megapascal per bar",
11419            Unit::PoisePerBar => "poise per bar",
11420            Unit::PascalPerBar => "pascal per bar",
11421            Unit::MilliamperePerInch => "milliampere per inch",
11422            Unit::KelvinPerHour => "kelvin per hour",
11423            Unit::KelvinPerMinute => "kelvin per minute",
11424            Unit::KelvinPerSecond => "kelvin per second",
11425            Unit::Slug => "slug",
11426            Unit::GramPerKelvin => "gram per kelvin",
11427            Unit::KilogramPerKelvin => "kilogram per kelvin",
11428            Unit::MilligramPerKelvin => "milligram per kelvin",
11429            Unit::PoundForcePerFoot => "pound-force per foot",
11430            Unit::KilogramSquareCentimetre => "kilogram square centimetre",
11431            Unit::KilogramSquareMillimetre => "kilogram square millimetre",
11432            Unit::PoundInchSquared => "pound inch squared",
11433            Unit::PoundForceInch => "pound-force inch",
11434            Unit::PoundForceFootPerAmpere => "pound-force foot per ampere",
11435            Unit::GramPerCubicDecimetre => "gram per cubic decimetre",
11436            Unit::KilogramPerKilomol => "kilogram per kilomol",
11437            Unit::GramPerHertz => "gram per hertz",
11438            Unit::GramPerDay => "gram per day",
11439            Unit::GramPerHour => "gram per hour",
11440            Unit::GramPerMinute => "gram per minute",
11441            Unit::GramPerSecond => "gram per second",
11442            Unit::KilogramPerDay => "kilogram per day",
11443            Unit::KilogramPerMinute => "kilogram per minute",
11444            Unit::MilligramPerDay => "milligram per day",
11445            Unit::MilligramPerMinute => "milligram per minute",
11446            Unit::MilligramPerSecond => "milligram per second",
11447            Unit::GramPerDayKelvin => "gram per day kelvin",
11448            Unit::GramPerHourKelvin => "gram per hour kelvin",
11449            Unit::GramPerMinuteKelvin => "gram per minute kelvin",
11450            Unit::GramPerSecondKelvin => "gram per second kelvin",
11451            Unit::KilogramPerDayKelvin => "kilogram per day kelvin",
11452            Unit::KilogramPerHourKelvin => "kilogram per hour kelvin",
11453            Unit::KilogramPerMinuteKelvin => "kilogram per minute kelvin",
11454            Unit::KilogramPerSecondKelvin => "kilogram per second kelvin",
11455            Unit::MilligramPerDayKelvin => "milligram per day kelvin",
11456            Unit::MilligramPerHourKelvin => "milligram per hour kelvin",
11457            Unit::MilligramPerMinuteKelvin => "milligram per minute kelvin",
11458            Unit::MilligramPerSecondKelvin => "milligram per second kelvin",
11459            Unit::NewtonPerMillimetre => "newton per millimetre",
11460            Unit::PoundForcePerInch => "pound-force per inch",
11461            Unit::RodUnitDistance => "rod [unit of distance]",
11462            Unit::MicrometrePerKelvin => "micrometre per kelvin",
11463            Unit::CentimetrePerKelvin => "centimetre per kelvin",
11464            Unit::MetrePerKelvin => "metre per kelvin",
11465            Unit::MillimetrePerKelvin => "millimetre per kelvin",
11466            Unit::MilliohmPerMetre => "milliohm per metre",
11467            Unit::OhmPerMileStatuteMile => "ohm per mile (statute mile)",
11468            Unit::OhmPerKilometre => "ohm per kilometre",
11469            Unit::MilliamperePerPoundForcePerSquareInch => "milliampere per pound-force per square inch",
11470            Unit::ReciprocalBar => "reciprocal bar",
11471            Unit::MilliamperePerBar => "milliampere per bar",
11472            Unit::DegreeCelsiusPerBar => "degree Celsius per bar",
11473            Unit::KelvinPerBar => "kelvin per bar",
11474            Unit::GramPerDayBar => "gram per day bar",
11475            Unit::GramPerHourBar => "gram per hour bar",
11476            Unit::GramPerMinuteBar => "gram per minute bar",
11477            Unit::GramPerSecondBar => "gram per second bar",
11478            Unit::KilogramPerDayBar => "kilogram per day bar",
11479            Unit::KilogramPerHourBar => "kilogram per hour bar",
11480            Unit::KilogramPerMinuteBar => "kilogram per minute bar",
11481            Unit::KilogramPerSecondBar => "kilogram per second bar",
11482            Unit::MilligramPerDayBar => "milligram per day bar",
11483            Unit::MilligramPerHourBar => "milligram per hour bar",
11484            Unit::MilligramPerMinuteBar => "milligram per minute bar",
11485            Unit::MilligramPerSecondBar => "milligram per second bar",
11486            Unit::GramPerBar => "gram per bar",
11487            Unit::MilligramPerBar => "milligram per bar",
11488            Unit::MilliamperePerMillimetre => "milliampere per millimetre",
11489            Unit::PascalSecondPerKelvin => "pascal second per kelvin",
11490            Unit::InchWater => "inch of water",
11491            Unit::InchMercury => "inch of mercury",
11492            Unit::WaterHorsePower => "water horse power",
11493            Unit::BarPerKelvin => "bar per kelvin",
11494            Unit::HectopascalPerKelvin => "hectopascal per kelvin",
11495            Unit::KilopascalPerKelvin => "kilopascal per kelvin",
11496            Unit::MillibarPerKelvin => "millibar per kelvin",
11497            Unit::MegapascalPerKelvin => "megapascal per kelvin",
11498            Unit::PoisePerKelvin => "poise per kelvin",
11499            Unit::VoltPerLitreMinute => "volt per litre minute",
11500            Unit::NewtonCentimetre => "newton centimetre",
11501            Unit::NewtonMetrePerDegree => "newton metre per degree",
11502            Unit::NewtonMetrePerAmpere => "newton metre per ampere",
11503            Unit::BarLitrePerSecond => "bar litre per second",
11504            Unit::BarCubicMetrePerSecond => "bar cubic metre per second",
11505            Unit::HectopascalLitrePerSecond => "hectopascal litre per second",
11506            Unit::HectopascalCubicMetrePerSecond => "hectopascal cubic metre per second",
11507            Unit::MillibarLitrePerSecond => "millibar litre per second",
11508            Unit::MillibarCubicMetrePerSecond => "millibar cubic metre per second",
11509            Unit::MegapascalLitrePerSecond => "megapascal litre per second",
11510            Unit::MegapascalCubicMetrePerSecond => "megapascal cubic metre per second",
11511            Unit::PascalLitrePerSecond => "pascal litre per second",
11512            Unit::DegreeFahrenheit => "degree Fahrenheit",
11513            Unit::Farad => "farad",
11514            Unit::FibreMetre => "fibre metre",
11515            Unit::ThousandCubicFoot => "thousand cubic foot",
11516            Unit::HundredCubicMetre => "hundred cubic metre",
11517            Unit::Micromole => "micromole",
11518            Unit::FailuresInTime => "failures in time",
11519            Unit::FlakeTon => "flake ton",
11520            Unit::FormazinNephelometricUnit => "Formazin nephelometric unit",
11521            Unit::Foot => "foot",
11522            Unit::PoundPerSquareFoot => "pound per square foot",
11523            Unit::FootPerMinute => "foot per minute",
11524            Unit::FootPerSecond => "foot per second",
11525            Unit::SquareFoot => "square foot",
11526            Unit::CubicFoot => "cubic foot",
11527            Unit::PascalCubicMetrePerSecond => "pascal cubic metre per second",
11528            Unit::CentimetrePerBar => "centimetre per bar",
11529            Unit::MetrePerBar => "metre per bar",
11530            Unit::MillimetrePerBar => "millimetre per bar",
11531            Unit::SquareInchPerSecond => "square inch per second",
11532            Unit::SquareMetrePerSecondKelvin => "square metre per second kelvin",
11533            Unit::StokesPerKelvin => "stokes per kelvin",
11534            Unit::GramPerCubicCentimetreBar => "gram per cubic centimetre bar",
11535            Unit::GramPerCubicDecimetreBar => "gram per cubic decimetre bar",
11536            Unit::GramPerLitreBar => "gram per litre bar",
11537            Unit::GramPerCubicMetreBar => "gram per cubic metre bar",
11538            Unit::GramPerMillilitreBar => "gram per millilitre bar",
11539            Unit::KilogramPerCubicCentimetreBar => "kilogram per cubic centimetre bar",
11540            Unit::KilogramPerLitreBar => "kilogram per litre bar",
11541            Unit::KilogramPerCubicMetreBar => "kilogram per cubic metre bar",
11542            Unit::NewtonMetrePerKilogram => "newton metre per kilogram",
11543            Unit::UsGallonPerMinute => "US gallon per minute",
11544            Unit::PoundForceFootPerPound => "pound-force foot per pound",
11545            Unit::CupUnitVolume => "cup [unit of volume]",
11546            Unit::Peck => "peck",
11547            Unit::TablespoonUs => "tablespoon (US)",
11548            Unit::TeaspoonUs => "teaspoon (US)",
11549            Unit::Stere => "stere",
11550            Unit::CubicCentimetrePerKelvin => "cubic centimetre per kelvin",
11551            Unit::LitrePerKelvin => "litre per kelvin",
11552            Unit::CubicMetrePerKelvin => "cubic metre per kelvin",
11553            Unit::ImperialGallonPerMinute => "Imperial gallon per minute",
11554            Unit::MillilitrePerKelvin => "millilitre per kelvin",
11555            Unit::KilogramPerCubicCentimetre => "kilogram per cubic centimetre",
11556            Unit::OunceAvoirdupoisPerCubicYard => "ounce (avoirdupois) per cubic yard",
11557            Unit::GramPerCubicCentimetreKelvin => "gram per cubic centimetre kelvin",
11558            Unit::GramPerCubicDecimetreKelvin => "gram per cubic decimetre kelvin",
11559            Unit::GramPerLitreKelvin => "gram per litre kelvin",
11560            Unit::GramPerCubicMetreKelvin => "gram per cubic metre kelvin",
11561            Unit::GramPerMillilitreKelvin => "gram per millilitre kelvin",
11562            Unit::KilogramPerCubicCentimetreKelvin => "kilogram per cubic centimetre kelvin",
11563            Unit::KilogramPerLitreKelvin => "kilogram per litre kelvin",
11564            Unit::KilogramPerCubicMetreKelvin => "kilogram per cubic metre kelvin",
11565            Unit::SquareMetrePerSecondBar => "square metre per second bar",
11566            Unit::MicrosiemensPerCentimetre => "microsiemens per centimetre",
11567            Unit::MicrosiemensPerMetre => "microsiemens per metre",
11568            Unit::NanosiemensPerCentimetre => "nanosiemens per centimetre",
11569            Unit::NanosiemensPerMetre => "nanosiemens per metre",
11570            Unit::StokesPerBar => "stokes per bar",
11571            Unit::CubicCentimetrePerDay => "cubic centimetre per day",
11572            Unit::CubicCentimetrePerHour => "cubic centimetre per hour",
11573            Unit::CubicCentimetrePerMinute => "cubic centimetre per minute",
11574            Unit::GallonUsPerHour => "gallon (US) per hour",
11575            Unit::LitrePerSecond => "litre per second",
11576            Unit::CubicMetrePerDay => "cubic metre per day",
11577            Unit::CubicMetrePerMinute => "cubic metre per minute",
11578            Unit::MillilitrePerDay => "millilitre per day",
11579            Unit::MillilitrePerHour => "millilitre per hour",
11580            Unit::CubicInchPerHour => "cubic inch per hour",
11581            Unit::CubicInchPerMinute => "cubic inch per minute",
11582            Unit::CubicInchPerSecond => "cubic inch per second",
11583            Unit::MilliamperePerLitreMinute => "milliampere per litre minute",
11584            Unit::VoltPerBar => "volt per bar",
11585            Unit::CubicCentimetrePerDayKelvin => "cubic centimetre per day kelvin",
11586            Unit::CubicCentimetrePerHourKelvin => "cubic centimetre per hour kelvin",
11587            Unit::CubicCentimetrePerMinuteKelvin => "cubic centimetre per minute kelvin",
11588            Unit::CubicCentimetrePerSecondKelvin => "cubic centimetre per second kelvin",
11589            Unit::LitrePerDayKelvin => "litre per day kelvin",
11590            Unit::LitrePerHourKelvin => "litre per hour kelvin",
11591            Unit::LitrePerMinuteKelvin => "litre per minute kelvin",
11592            Unit::LitrePerSecondKelvin => "litre per second kelvin",
11593            Unit::CubicMetrePerDayKelvin => "cubic metre per day kelvin",
11594            Unit::CubicMetrePerHourKelvin => "cubic metre per hour kelvin",
11595            Unit::CubicMetrePerMinuteKelvin => "cubic metre per minute kelvin",
11596            Unit::CubicMetrePerSecondKelvin => "cubic metre per second kelvin",
11597            Unit::MillilitrePerDayKelvin => "millilitre per day kelvin",
11598            Unit::MillilitrePerHourKelvin => "millilitre per hour kelvin",
11599            Unit::MillilitrePerMinuteKelvin => "millilitre per minute kelvin",
11600            Unit::MillilitrePerSecondKelvin => "millilitre per second kelvin",
11601            Unit::MillimetreToFourthPower => "millimetre to the fourth power",
11602            Unit::CubicCentimetrePerDayBar => "cubic centimetre per day bar",
11603            Unit::CubicCentimetrePerHourBar => "cubic centimetre per hour bar",
11604            Unit::CubicCentimetrePerMinuteBar => "cubic centimetre per minute bar",
11605            Unit::CubicCentimetrePerSecondBar => "cubic centimetre per second bar",
11606            Unit::LitrePerDayBar => "litre per day bar",
11607            Unit::LitrePerHourBar => "litre per hour bar",
11608            Unit::LitrePerMinuteBar => "litre per minute bar",
11609            Unit::LitrePerSecondBar => "litre per second bar",
11610            Unit::CubicMetrePerDayBar => "cubic metre per day bar",
11611            Unit::CubicMetrePerHourBar => "cubic metre per hour bar",
11612            Unit::CubicMetrePerMinuteBar => "cubic metre per minute bar",
11613            Unit::CubicMetrePerSecondBar => "cubic metre per second bar",
11614            Unit::MillilitrePerDayBar => "millilitre per day bar",
11615            Unit::MillilitrePerHourBar => "millilitre per hour bar",
11616            Unit::MillilitrePerMinuteBar => "millilitre per minute bar",
11617            Unit::MillilitrePerSecondBar => "millilitre per second bar",
11618            Unit::CubicCentimetrePerBar => "cubic centimetre per bar",
11619            Unit::LitrePerBar => "litre per bar",
11620            Unit::CubicMetrePerBar => "cubic metre per bar",
11621            Unit::MillilitrePerBar => "millilitre per bar",
11622            Unit::MicrohenryPerKiloohm => "microhenry per kiloohm",
11623            Unit::MicrohenryPerOhm => "microhenry per ohm",
11624            Unit::GallonUsPerDay => "gallon (US) per day",
11625            Unit::Gigabecquerel => "gigabecquerel",
11626            Unit::GramDryWeight => "gram, dry weight",
11627            Unit::PoundPerGallonUs => "pound per gallon (US)",
11628            Unit::GramPerMetreGramPer100Centimetres => "gram per metre (gram per 100 centimetres)",
11629            Unit::GramFissileIsotope => "gram of fissile isotope",
11630            Unit::GreatGross => "great gross",
11631            Unit::GillUs => "gill (US)",
11632            Unit::GramIncludingContainer => "gram, including container",
11633            Unit::GillUk => "gill (UK)",
11634            Unit::GramIncludingInnerPackaging => "gram, including inner packaging",
11635            Unit::GramPerMillilitre => "gram per millilitre",
11636            Unit::GramPerLitre => "gram per litre",
11637            Unit::DryGallonUs => "dry gallon (US)",
11638            Unit::GallonUk => "gallon (UK)",
11639            Unit::GallonUs => "gallon (US)",
11640            Unit::GramPerSquareMetre => "gram per square metre",
11641            Unit::MilligramPerSquareMetre => "milligram per square metre",
11642            Unit::MilligramPerCubicMetre => "milligram per cubic metre",
11643            Unit::MicrogramPerCubicMetre => "microgram per cubic metre",
11644            Unit::Gram => "gram",
11645            Unit::Grain => "grain",
11646            Unit::Gross => "gross",
11647            Unit::Gigajoule => "gigajoule",
11648            Unit::GigawattHour => "gigawatt hour",
11649            Unit::HenryPerKiloohm => "henry per kiloohm",
11650            Unit::HenryPerOhm => "henry per ohm",
11651            Unit::MillihenryPerKiloohm => "millihenry per kiloohm",
11652            Unit::MillihenryPerOhm => "millihenry per ohm",
11653            Unit::PascalSecondPerBar => "pascal second per bar",
11654            Unit::Microbecquerel => "microbecquerel",
11655            Unit::ReciprocalYear => "reciprocal year",
11656            Unit::ReciprocalHour => "reciprocal hour",
11657            Unit::ReciprocalMonth => "reciprocal month",
11658            Unit::DegreeCelsiusPerHour => "degree Celsius per hour",
11659            Unit::DegreeCelsiusPerMinute => "degree Celsius per minute",
11660            Unit::DegreeCelsiusPerSecond => "degree Celsius per second",
11661            Unit::SquareCentimetrePerGram => "square centimetre per gram",
11662            Unit::SquareDecametre => "square decametre",
11663            Unit::SquareHectometre => "square hectometre",
11664            Unit::CubicHectometre => "cubic hectometre",
11665            Unit::CubicKilometre => "cubic kilometre",
11666            Unit::Blank => "blank",
11667            Unit::VoltSquareInchPerPoundForce => "volt square inch per pound-force",
11668            Unit::VoltPerInch => "volt per inch",
11669            Unit::VoltPerMicrosecond => "volt per microsecond",
11670            Unit::PercentPerKelvin => "percent per kelvin",
11671            Unit::OhmPerMetre => "ohm per metre",
11672            Unit::DegreePerMetre => "degree per metre",
11673            Unit::MicrofaradPerKilometre => "microfarad per kilometre",
11674            Unit::MicrogramPerLitre => "microgram per litre",
11675            Unit::SquareMicrometreSquareMicron => "square micrometre (square micron)",
11676            Unit::AmperePerKilogram => "ampere per kilogram",
11677            Unit::AmpereSquaredSecond => "ampere squared second",
11678            Unit::FaradPerKilometre => "farad per kilometre",
11679            Unit::HertzMetre => "hertz metre",
11680            Unit::KelvinMetrePerWatt => "kelvin metre per watt",
11681            Unit::MegaohmPerKilometre => "megaohm per kilometre",
11682            Unit::MegaohmPerMetre => "megaohm per metre",
11683            Unit::Megaampere => "megaampere",
11684            Unit::MegahertzKilometre => "megahertz kilometre",
11685            Unit::NewtonPerAmpere => "newton per ampere",
11686            Unit::NewtonMetreWattToPowerMinus05 => "newton metre watt to the power minus 0,5",
11687            Unit::PascalPerMetre => "pascal per metre",
11688            Unit::SiemensPerCentimetre => "siemens per centimetre",
11689            Unit::Teraohm => "teraohm",
11690            Unit::VoltSecondPerMetre => "volt second per metre",
11691            Unit::VoltPerSecond => "volt per second",
11692            Unit::WattPerCubicMetre => "watt per cubic metre",
11693            Unit::Attofarad => "attofarad",
11694            Unit::CentimetrePerHour => "centimetre per hour",
11695            Unit::ReciprocalCubicCentimetre => "reciprocal cubic centimetre",
11696            Unit::DecibelPerKilometre => "decibel per kilometre",
11697            Unit::DecibelPerMetre => "decibel per metre",
11698            Unit::KilogramPerBar => "kilogram per bar",
11699            Unit::KilogramPerCubicDecimetreKelvin => "kilogram per cubic decimetre kelvin",
11700            Unit::KilogramPerCubicDecimetreBar => "kilogram per cubic decimetre bar",
11701            Unit::KilogramPerSquareMetreSecond => "kilogram per square metre second",
11702            Unit::InchPerTwoPiRadiant => "inch per two pi radiant",
11703            Unit::MetrePerVoltSecond => "metre per volt second",
11704            Unit::SquareMetrePerNewton => "square metre per newton",
11705            Unit::CubicMetrePerCubicMetre => "cubic metre per cubic metre",
11706            Unit::MillisiemensPerCentimetre => "millisiemens per centimetre",
11707            Unit::MillivoltPerMinute => "millivolt per minute",
11708            Unit::MilligramPerSquareCentimetre => "milligram per square centimetre",
11709            Unit::MilligramPerGram => "milligram per gram",
11710            Unit::MillilitrePerCubicMetre => "millilitre per cubic metre",
11711            Unit::MillimetrePerYear => "millimetre per year",
11712            Unit::MillimetrePerHour => "millimetre per hour",
11713            Unit::MillimolePerGram => "millimole per gram",
11714            Unit::PicopascalPerKilometre => "picopascal per kilometre",
11715            Unit::Picosecond => "picosecond",
11716            Unit::PercentPerMonth => "percent per month",
11717            Unit::PercentPerHectobar => "percent per hectobar",
11718            Unit::PercentPerDecakelvin => "percent per decakelvin",
11719            Unit::WattPerMetre => "watt per metre",
11720            Unit::Decapascal => "decapascal",
11721            Unit::GramPerMillimetre => "gram per millimetre",
11722            Unit::ModuleWidth => "module width",
11723            Unit::FrenchGauge => "French gauge",
11724            Unit::RackUnit => "rack unit",
11725            Unit::MillimetrePerMinute => "millimetre per minute",
11726            Unit::BigPoint => "big point",
11727            Unit::LitrePerKilogram => "litre per kilogram",
11728            Unit::GramMillimetre => "gram millimetre",
11729            Unit::ReciprocalWeek => "reciprocal week",
11730            Unit::Piece => "piece",
11731            Unit::MegaohmKilometre => "megaohm kilometre",
11732            Unit::PercentPerOhm => "percent per ohm",
11733            Unit::PercentPerDegree => "percent per degree",
11734            Unit::PercentPerTenThousand => "percent per ten thousand",
11735            Unit::PercentPerOneHundredThousand => "percent per one hundred thousand",
11736            Unit::PercentPerHundred => "percent per hundred",
11737            Unit::PercentPerThousand => "percent per thousand",
11738            Unit::PercentPerVolt => "percent per volt",
11739            Unit::PercentPerBar => "percent per bar",
11740            Unit::PercentPerInch => "percent per inch",
11741            Unit::PercentPerMetre => "percent per metre",
11742            Unit::Hank => "hank",
11743            Unit::PieceDay => "Piece Day",
11744            Unit::Hectobar => "hectobar",
11745            Unit::HundredBoxes => "hundred boxes",
11746            Unit::HundredCount => "hundred count",
11747            Unit::HundredKilogramDryWeight => "hundred kilogram, dry weight",
11748            Unit::Head => "head",
11749            Unit::Hectogram => "hectogram",
11750            Unit::HundredCubicFoot => "hundred cubic foot",
11751            Unit::HundredInternationalUnit => "hundred international unit",
11752            Unit::HundredKilogramNetMass => "hundred kilogram, net mass",
11753            Unit::Hectolitre => "hectolitre",
11754            Unit::MilePerHourStatuteMile => "mile per hour (statute mile)",
11755            Unit::PieceMonth => "Piece Month",
11756            Unit::MillionCubicMetre => "million cubic metre",
11757            Unit::Hectometre => "hectometre",
11758            Unit::HectolitrePureAlcohol => "hectolitre of pure alcohol",
11759            Unit::Hertz => "hertz",
11760            Unit::Hour => "hour",
11761            Unit::PieceWeek => "Piece Week",
11762            Unit::InchPoundPoundInch => "inch pound (pound inch)",
11763            Unit::Person => "person",
11764            Unit::Inch => "inch",
11765            Unit::SquareInch => "square inch",
11766            Unit::CubicInch => "cubic inch",
11767            Unit::InternationalSugarDegree => "international sugar degree",
11768            Unit::InchPerSecond => "inch per second",
11769            Unit::InternationalUnitPerGram => "international unit per gram",
11770            Unit::InchPerSecondSquared => "inch per second squared",
11771            Unit::PercentPerMillimetre => "percent per millimetre",
11772            Unit::PerMillePerPsi => "per mille per psi",
11773            Unit::DegreeApi => "degree API",
11774            Unit::DegreeBaumeOriginScale => "degree Baume (origin scale)",
11775            Unit::DegreeBaumeUsHeavy => "degree Baume (US heavy)",
11776            Unit::DegreeBaumeUsLight => "degree Baume (US light)",
11777            Unit::DegreeBalling => "degree Balling",
11778            Unit::DegreeBrix => "degree Brix",
11779            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
11780            Unit::JoulePerKilogram => "joule per kilogram",
11781            Unit::DegreeFahrenheitPerKelvin => "degree Fahrenheit per kelvin",
11782            Unit::DegreeFahrenheitPerBar => "degree Fahrenheit per bar",
11783            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour square foot per British thermal unit (international table)",
11784            Unit::DegreeFahrenheitPerHour => "degree Fahrenheit per hour",
11785            Unit::DegreeFahrenheitPerMinute => "degree Fahrenheit per minute",
11786            Unit::DegreeFahrenheitPerSecond => "degree Fahrenheit per second",
11787            Unit::ReciprocalDegreeFahrenheit => "reciprocal degree Fahrenheit",
11788            Unit::DegreeOechsle => "degree Oechsle",
11789            Unit::DegreeRankinePerHour => "degree Rankine per hour",
11790            Unit::DegreeRankinePerMinute => "degree Rankine per minute",
11791            Unit::DegreeRankinePerSecond => "degree Rankine per second",
11792            Unit::DegreeTwaddell => "degree Twaddell",
11793            Unit::Micropoise => "micropoise",
11794            Unit::MicrogramPerKilogram => "microgram per kilogram",
11795            Unit::MicrogramPerCubicMetreKelvin => "microgram per cubic metre kelvin",
11796            Unit::MicrogramPerCubicMetreBar => "microgram per cubic metre bar",
11797            Unit::MicrolitrePerLitre => "microlitre per litre",
11798            Unit::Baud => "baud",
11799            Unit::BritishThermalUnitMean => "British thermal unit (mean)",
11800            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
11801            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
11802            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per second square foot degree Fahrenheit",
11803            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "British thermal unit (international table) per pound degree Fahrenheit",
11804            Unit::BritishThermalUnitInternationalTablePerMinute => "British thermal unit (international table) per minute",
11805            Unit::BritishThermalUnitInternationalTablePerSecond => "British thermal unit (international table) per second",
11806            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
11807            Unit::BritishThermalUnitThermochemicalPerHour => "British thermal unit (thermochemical) per hour",
11808            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
11809            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
11810            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "British thermal unit (thermochemical) per pound degree Fahrenheit",
11811            Unit::BritishThermalUnitThermochemicalPerMinute => "British thermal unit (thermochemical) per minute",
11812            Unit::BritishThermalUnitThermochemicalPerSecond => "British thermal unit (thermochemical) per second",
11813            Unit::CoulombSquareMetrePerKilogram => "coulomb square metre per kilogram",
11814            Unit::Megabaud => "megabaud",
11815            Unit::WattSecond => "watt second",
11816            Unit::BarPerBar => "bar per bar",
11817            Unit::BarrelUkPetroleum => "barrel (UK petroleum)",
11818            Unit::BarrelUkPetroleumPerMinute => "barrel (UK petroleum) per minute",
11819            Unit::BarrelUkPetroleumPerDay => "barrel (UK petroleum) per day",
11820            Unit::BarrelUkPetroleumPerHour => "barrel (UK petroleum) per hour",
11821            Unit::BarrelUkPetroleumPerSecond => "barrel (UK petroleum) per second",
11822            Unit::BarrelUsPetroleumPerHour => "barrel (US petroleum) per hour",
11823            Unit::BarrelUsPetroleumPerSecond => "barrel (US petroleum) per second",
11824            Unit::BushelUkPerDay => "bushel (UK) per day",
11825            Unit::BushelUkPerHour => "bushel (UK) per hour",
11826            Unit::BushelUkPerMinute => "bushel (UK) per minute",
11827            Unit::BushelUkPerSecond => "bushel (UK) per second",
11828            Unit::BushelUsDryPerDay => "bushel (US dry) per day",
11829            Unit::BushelUsDryPerHour => "bushel (US dry) per hour",
11830            Unit::BushelUsDryPerMinute => "bushel (US dry) per minute",
11831            Unit::BushelUsDryPerSecond => "bushel (US dry) per second",
11832            Unit::CentinewtonMetre => "centinewton metre",
11833            Unit::CentipoisePerKelvin => "centipoise per kelvin",
11834            Unit::CentipoisePerBar => "centipoise per bar",
11835            Unit::CalorieMean => "calorie (mean)",
11836            Unit::CalorieInternationalTablePerGramDegreeCelsius => "calorie (international table) per gram degree Celsius",
11837            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "calorie (thermochemical) per centimetre second degree Celsius",
11838            Unit::CalorieThermochemicalPerGramDegreeCelsius => "calorie (thermochemical) per gram degree Celsius",
11839            Unit::CalorieThermochemicalPerMinute => "calorie (thermochemical) per minute",
11840            Unit::CalorieThermochemicalPerSecond => "calorie (thermochemical) per second",
11841            Unit::Clo => "clo",
11842            Unit::CentimetrePerSecondKelvin => "centimetre per second kelvin",
11843            Unit::CentimetrePerSecondBar => "centimetre per second bar",
11844            Unit::CubicCentimetrePerCubicMetre => "cubic centimetre per cubic metre",
11845            Unit::CubicDecimetrePerDay => "cubic decimetre per day",
11846            Unit::CubicDecimetrePerCubicMetre => "cubic decimetre per cubic metre",
11847            Unit::CubicDecimetrePerMinute => "cubic decimetre per minute",
11848            Unit::CubicDecimetrePerSecond => "cubic decimetre per second",
11849            Unit::OunceUkFluidPerDay => "ounce (UK fluid) per day",
11850            Unit::OunceUkFluidPerHour => "ounce (UK fluid) per hour",
11851            Unit::OunceUkFluidPerMinute => "ounce (UK fluid) per minute",
11852            Unit::OunceUkFluidPerSecond => "ounce (UK fluid) per second",
11853            Unit::OunceUsFluidPerDay => "ounce (US fluid) per day",
11854            Unit::JoulePerKelvin => "joule per kelvin",
11855            Unit::MegajoulePerKilogram => "megajoule per kilogram",
11856            Unit::MegajoulePerCubicMetre => "megajoule per cubic metre",
11857            Unit::PipelineJoint => "pipeline joint",
11858            Unit::Joule => "joule",
11859            Unit::HundredMetre => "hundred metre",
11860            Unit::NumberJewels => "number of jewels",
11861            Unit::KilowattDemand => "kilowatt demand",
11862            Unit::OunceUsFluidPerHour => "ounce (US fluid) per hour",
11863            Unit::OunceUsFluidPerMinute => "ounce (US fluid) per minute",
11864            Unit::OunceUsFluidPerSecond => "ounce (US fluid) per second",
11865            Unit::FootPerDegreeFahrenheit => "foot per degree Fahrenheit",
11866            Unit::FootPerHour => "foot per hour",
11867            Unit::FootPoundForcePerHour => "foot pound-force per hour",
11868            Unit::FootPoundForcePerMinute => "foot pound-force per minute",
11869            Unit::FootPerPsi => "foot per psi",
11870            Unit::FootPerSecondDegreeFahrenheit => "foot per second degree Fahrenheit",
11871            Unit::FootPerSecondPsi => "foot per second psi",
11872            Unit::KilovoltAmpereReactiveDemand => "kilovolt ampere reactive demand",
11873            Unit::ReciprocalCubicFoot => "reciprocal cubic foot",
11874            Unit::CubicFootPerDegreeFahrenheit => "cubic foot per degree Fahrenheit",
11875            Unit::CubicFootPerDay => "cubic foot per day",
11876            Unit::CubicFootPerPsi => "cubic foot per psi",
11877            Unit::GallonUkPerDay => "gallon (UK) per day",
11878            Unit::GallonUkPerHour => "gallon (UK) per hour",
11879            Unit::GallonUkPerSecond => "gallon (UK) per second",
11880            Unit::KilovoltAmpereReactiveHour => "kilovolt ampere reactive hour",
11881            Unit::GallonUsLiquidPerSecond => "gallon (US liquid) per second",
11882            Unit::GramForcePerSquareCentimetre => "gram-force per square centimetre",
11883            Unit::GillUkPerDay => "gill (UK) per day",
11884            Unit::GillUkPerHour => "gill (UK) per hour",
11885            Unit::GillUkPerMinute => "gill (UK) per minute",
11886            Unit::GillUkPerSecond => "gill (UK) per second",
11887            Unit::GillUsPerDay => "gill (US) per day",
11888            Unit::GillUsPerHour => "gill (US) per hour",
11889            Unit::GillUsPerMinute => "gill (US) per minute",
11890            Unit::GillUsPerSecond => "gill (US) per second",
11891            Unit::StandardAccelerationFreeFall => "standard acceleration of free fall",
11892            Unit::GrainPerGallonUs => "grain per gallon (US)",
11893            Unit::HorsepowerBoiler => "horsepower (boiler)",
11894            Unit::HorsepowerElectric => "horsepower (electric)",
11895            Unit::InchPerDegreeFahrenheit => "inch per degree Fahrenheit",
11896            Unit::InchPerPsi => "inch per psi",
11897            Unit::InchPerSecondDegreeFahrenheit => "inch per second degree Fahrenheit",
11898            Unit::InchPerSecondPsi => "inch per second psi",
11899            Unit::ReciprocalCubicInch => "reciprocal cubic inch",
11900            Unit::Kilobaud => "kilobaud",
11901            Unit::KilocalorieMean => "kilocalorie (mean)",
11902            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "kilocalorie (international table) per hour metre degree Celsius",
11903            Unit::KilocalorieThermochemical => "kilocalorie (thermochemical)",
11904            Unit::KilocalorieThermochemicalPerMinute => "kilocalorie (thermochemical) per minute",
11905            Unit::KilocalorieThermochemicalPerSecond => "kilocalorie (thermochemical) per second",
11906            Unit::KilomolePerHour => "kilomole per hour",
11907            Unit::KilomolePerCubicMetreKelvin => "kilomole per cubic metre kelvin",
11908            Unit::Kilolitre => "kilolitre",
11909            Unit::KilomolePerCubicMetreBar => "kilomole per cubic metre bar",
11910            Unit::KilomolePerMinute => "kilomole per minute",
11911            Unit::LitrePerLitre => "litre per litre",
11912            Unit::ReciprocalLitre => "reciprocal litre",
11913            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "pound (avoirdupois) per degree Fahrenheit",
11914            Unit::PoundAvoirdupoisSquareFoot => "pound (avoirdupois) square foot",
11915            Unit::PoundAvoirdupoisPerDay => "pound (avoirdupois) per day",
11916            Unit::PoundPerFootHour => "pound per foot hour",
11917            Unit::PoundPerFootSecond => "pound per foot second",
11918            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "pound (avoirdupois) per cubic foot degree Fahrenheit",
11919            Unit::PoundAvoirdupoisPerCubicFootPsi => "pound (avoirdupois) per cubic foot psi",
11920            Unit::PoundAvoirdupoisPerGallonUk => "pound (avoirdupois) per gallon (UK)",
11921            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "pound (avoirdupois) per hour degree Fahrenheit",
11922            Unit::PoundAvoirdupoisPerHourPsi => "pound (avoirdupois) per hour psi",
11923            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "pound (avoirdupois) per cubic inch degree Fahrenheit",
11924            Unit::PoundAvoirdupoisPerCubicInchPsi => "pound (avoirdupois) per cubic inch psi",
11925            Unit::PoundAvoirdupoisPerPsi => "pound (avoirdupois) per psi",
11926            Unit::PoundAvoirdupoisPerMinute => "pound (avoirdupois) per minute",
11927            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "pound (avoirdupois) per minute degree Fahrenheit",
11928            Unit::PoundAvoirdupoisPerMinutePsi => "pound (avoirdupois) per minute psi",
11929            Unit::PoundAvoirdupoisPerSecond => "pound (avoirdupois) per second",
11930            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "pound (avoirdupois) per second degree Fahrenheit",
11931            Unit::PoundAvoirdupoisPerSecondPsi => "pound (avoirdupois) per second psi",
11932            Unit::PoundPerCubicYard => "pound per cubic yard",
11933            Unit::PoundForcePerSquareFoot => "pound-force per square foot",
11934            Unit::PoundForcePerSquareInchDegreeFahrenheit => "pound-force per square inch degree Fahrenheit",
11935            Unit::PsiCubicInchPerSecond => "psi cubic inch per second",
11936            Unit::PsiLitrePerSecond => "psi litre per second",
11937            Unit::PsiCubicMetrePerSecond => "psi cubic metre per second",
11938            Unit::PsiCubicYardPerSecond => "psi cubic yard per second",
11939            Unit::PoundForceSecondPerSquareFoot => "pound-force second per square foot",
11940            Unit::PoundForceSecondPerSquareInch => "pound-force second per square inch",
11941            Unit::ReciprocalPsi => "reciprocal psi",
11942            Unit::QuartUkLiquidPerDay => "quart (UK liquid) per day",
11943            Unit::QuartUkLiquidPerHour => "quart (UK liquid) per hour",
11944            Unit::QuartUkLiquidPerMinute => "quart (UK liquid) per minute",
11945            Unit::QuartUkLiquidPerSecond => "quart (UK liquid) per second",
11946            Unit::QuartUsLiquidPerDay => "quart (US liquid) per day",
11947            Unit::QuartUsLiquidPerHour => "quart (US liquid) per hour",
11948            Unit::Cake => "cake",
11949            Unit::Katal => "katal",
11950            Unit::Kilocharacter => "kilocharacter",
11951            Unit::Kilobar => "kilobar",
11952            Unit::KilogramCholineChloride => "kilogram of choline chloride",
11953            Unit::KilogramDrainedNetWeight => "kilogram drained net weight",
11954            Unit::Kelvin => "kelvin",
11955            Unit::Kilogram => "kilogram",
11956            Unit::KilogramPerSecond => "kilogram per second",
11957            Unit::KilogramHydrogenPeroxide => "kilogram of hydrogen peroxide",
11958            Unit::Kilohertz => "kilohertz",
11959            Unit::KilogramPerMillimetreWidth => "kilogram per millimetre width",
11960            Unit::KilogramIncludingContainer => "kilogram, including container",
11961            Unit::KilogramIncludingInnerPackaging => "kilogram, including inner packaging",
11962            Unit::Kilosegment => "kilosegment",
11963            Unit::Kilojoule => "kilojoule",
11964            Unit::KilogramPerMetre => "kilogram per metre",
11965            Unit::LacticDryMaterialPercentage => "lactic dry material percentage",
11966            Unit::Kilolux => "kilolux",
11967            Unit::KilogramMethylamine => "kilogram of methylamine",
11968            Unit::KilometrePerHour => "kilometre per hour",
11969            Unit::SquareKilometre => "square kilometre",
11970            Unit::KilogramPerCubicMetre => "kilogram per cubic metre",
11971            Unit::Kilometre => "kilometre",
11972            Unit::KilogramNitrogen => "kilogram of nitrogen",
11973            Unit::KilonewtonPerSquareMetre => "kilonewton per square metre",
11974            Unit::KilogramNamedSubstance => "kilogram named substance",
11975            Unit::Knot => "knot",
11976            Unit::MilliequivalenceCausticPotashPerGramProduct => "milliequivalence caustic potash per gram of product",
11977            Unit::Kilopascal => "kilopascal",
11978            Unit::KilogramPotassiumHydroxideCausticPotash => "kilogram of potassium hydroxide (caustic potash)",
11979            Unit::KilogramPotassiumOxide => "kilogram of potassium oxide",
11980            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "kilogram of phosphorus pentoxide (phosphoric anhydride)",
11981            Unit::Kiloroentgen => "kiloroentgen",
11982            Unit::KilogramSubstance90Dry => "kilogram of substance 90 % dry",
11983            Unit::KilogramSodiumHydroxideCausticSoda => "kilogram of sodium hydroxide (caustic soda)",
11984            Unit::Kit => "kit",
11985            Unit::Kilotonne => "kilotonne",
11986            Unit::KilogramUranium => "kilogram of uranium",
11987            Unit::KilovoltAmpere => "kilovolt - ampere",
11988            Unit::Kilovar => "kilovar",
11989            Unit::Kilovolt => "kilovolt",
11990            Unit::KilogramPerMillimetre => "kilogram per millimetre",
11991            Unit::KilowattHour => "kilowatt hour",
11992            Unit::KilowattHourPerNormalizedCubicMetre => "Kilowatt hour per normalized cubic metre",
11993            Unit::KilogramTungstenTrioxide => "kilogram of tungsten trioxide",
11994            Unit::KilowattHourPerStandardCubicMetre => "Kilowatt hour per standard cubic metre",
11995            Unit::Kilowatt => "kilowatt",
11996            Unit::KilowattYear => "kilowatt year",
11997            Unit::MillilitrePerKilogram => "millilitre per kilogram",
11998            Unit::QuartUsLiquidPerMinute => "quart (US liquid) per minute",
11999            Unit::QuartUsLiquidPerSecond => "quart (US liquid) per second",
12000            Unit::MetrePerSecondKelvin => "metre per second kelvin",
12001            Unit::MetrePerSecondBar => "metre per second bar",
12002            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "square metre hour degree Celsius per kilocalorie (international table)",
12003            Unit::MillipascalSecondPerKelvin => "millipascal second per kelvin",
12004            Unit::MillipascalSecondPerBar => "millipascal second per bar",
12005            Unit::MilligramPerCubicMetreKelvin => "milligram per cubic metre kelvin",
12006            Unit::MilligramPerCubicMetreBar => "milligram per cubic metre bar",
12007            Unit::MillilitrePerLitre => "millilitre per litre",
12008            Unit::LitrePerMinute => "litre per minute",
12009            Unit::ReciprocalCubicMillimetre => "reciprocal cubic millimetre",
12010            Unit::CubicMillimetrePerCubicMetre => "cubic millimetre per cubic metre",
12011            Unit::MolePerHour => "mole per hour",
12012            Unit::MolePerKilogramKelvin => "mole per kilogram kelvin",
12013            Unit::MolePerKilogramBar => "mole per kilogram bar",
12014            Unit::MolePerLitreKelvin => "mole per litre kelvin",
12015            Unit::MolePerLitreBar => "mole per litre bar",
12016            Unit::MolePerCubicMetreKelvin => "mole per cubic metre kelvin",
12017            Unit::MolePerCubicMetreBar => "mole per cubic metre bar",
12018            Unit::MolePerMinute => "mole per minute",
12019            Unit::MilliroentgenAequivalentMen => "milliroentgen aequivalent men",
12020            Unit::NanogramPerKilogram => "nanogram per kilogram",
12021            Unit::OunceAvoirdupoisPerDay => "ounce (avoirdupois) per day",
12022            Unit::OunceAvoirdupoisPerHour => "ounce (avoirdupois) per hour",
12023            Unit::OunceAvoirdupoisPerMinute => "ounce (avoirdupois) per minute",
12024            Unit::OunceAvoirdupoisPerSecond => "ounce (avoirdupois) per second",
12025            Unit::OunceAvoirdupoisPerGallonUk => "ounce (avoirdupois) per gallon (UK)",
12026            Unit::OunceAvoirdupoisPerGallonUs => "ounce (avoirdupois) per gallon (US)",
12027            Unit::OunceAvoirdupoisPerCubicInch => "ounce (avoirdupois) per cubic inch",
12028            Unit::OunceAvoirdupoisForce => "ounce (avoirdupois)-force",
12029            Unit::OunceAvoirdupoisForceInch => "ounce (avoirdupois)-force inch",
12030            Unit::PicosiemensPerMetre => "picosiemens per metre",
12031            Unit::PeckUk => "peck (UK)",
12032            Unit::PeckUkPerDay => "peck (UK) per day",
12033            Unit::PeckUkPerHour => "peck (UK) per hour",
12034            Unit::PeckUkPerMinute => "peck (UK) per minute",
12035            Unit::PeckUkPerSecond => "peck (UK) per second",
12036            Unit::PeckUsDryPerDay => "peck (US dry) per day",
12037            Unit::PeckUsDryPerHour => "peck (US dry) per hour",
12038            Unit::PeckUsDryPerMinute => "peck (US dry) per minute",
12039            Unit::PeckUsDryPerSecond => "peck (US dry) per second",
12040            Unit::PsiPerPsi => "psi per psi",
12041            Unit::PintUkPerDay => "pint (UK) per day",
12042            Unit::PintUkPerHour => "pint (UK) per hour",
12043            Unit::PintUkPerMinute => "pint (UK) per minute",
12044            Unit::PintUkPerSecond => "pint (UK) per second",
12045            Unit::PintUsLiquidPerDay => "pint (US liquid) per day",
12046            Unit::PintUsLiquidPerHour => "pint (US liquid) per hour",
12047            Unit::PintUsLiquidPerMinute => "pint (US liquid) per minute",
12048            Unit::PintUsLiquidPerSecond => "pint (US liquid) per second",
12049            Unit::SlugPerDay => "slug per day",
12050            Unit::SlugPerFootSecond => "slug per foot second",
12051            Unit::SlugPerCubicFoot => "slug per cubic foot",
12052            Unit::SlugPerHour => "slug per hour",
12053            Unit::SlugPerMinute => "slug per minute",
12054            Unit::SlugPerSecond => "slug per second",
12055            Unit::TonnePerKelvin => "tonne per kelvin",
12056            Unit::TonnePerBar => "tonne per bar",
12057            Unit::TonnePerDay => "tonne per day",
12058            Unit::TonnePerDayKelvin => "tonne per day kelvin",
12059            Unit::TonnePerDayBar => "tonne per day bar",
12060            Unit::TonnePerHourKelvin => "tonne per hour kelvin",
12061            Unit::TonnePerHourBar => "tonne per hour bar",
12062            Unit::TonnePerCubicMetreKelvin => "tonne per cubic metre kelvin",
12063            Unit::TonnePerCubicMetreBar => "tonne per cubic metre bar",
12064            Unit::TonnePerMinute => "tonne per minute",
12065            Unit::TonnePerMinuteKelvin => "tonne per minute kelvin",
12066            Unit::TonnePerMinuteBar => "tonne per minute bar",
12067            Unit::TonnePerSecond => "tonne per second",
12068            Unit::TonnePerSecondKelvin => "tonne per second kelvin",
12069            Unit::TonnePerSecondBar => "tonne per second bar",
12070            Unit::TonUkShipping => "ton (UK shipping)",
12071            Unit::TonLongPerDay => "ton long per day",
12072            Unit::TonUsShipping => "ton (US shipping)",
12073            Unit::TonShortPerDegreeFahrenheit => "ton short per degree Fahrenheit",
12074            Unit::TonShortPerDay => "ton short per day",
12075            Unit::TonShortPerHourDegreeFahrenheit => "ton short per hour degree Fahrenheit",
12076            Unit::TonShortPerHourPsi => "ton short per hour psi",
12077            Unit::TonShortPerPsi => "ton short per psi",
12078            Unit::TonUkLongPerCubicYard => "ton (UK long) per cubic yard",
12079            Unit::TonUsShortPerCubicYard => "ton (US short) per cubic yard",
12080            Unit::TonForceUsShort => "ton-force (US short)",
12081            Unit::CommonYear => "common year",
12082            Unit::SiderealYear => "sidereal year",
12083            Unit::YardPerDegreeFahrenheit => "yard per degree Fahrenheit",
12084            Unit::YardPerPsi => "yard per psi",
12085            Unit::PoundPerCubicInch => "pound per cubic inch",
12086            Unit::LactoseExcessPercentage => "lactose excess percentage",
12087            Unit::Pound => "pound",
12088            Unit::TroyPoundUs => "troy pound (US)",
12089            Unit::LitrePerDay => "litre per day",
12090            Unit::Leaf => "leaf",
12091            Unit::LinearFoot => "linear foot",
12092            Unit::LabourHour => "labour hour",
12093            Unit::Link => "link",
12094            Unit::LinearMetre => "linear metre",
12095            Unit::Length => "length",
12096            Unit::LotUnitProcurement => "lot [unit of procurement]",
12097            Unit::LiquidPound => "liquid pound",
12098            Unit::LitrePureAlcohol => "litre of pure alcohol",
12099            Unit::Layer => "layer",
12100            Unit::LumpSum => "lump sum",
12101            Unit::TonUkOrLongTonUs => "ton (UK) or long ton (US)",
12102            Unit::Litre => "litre",
12103            Unit::MetricTonLubricatingOil => "metric ton, lubricating oil",
12104            Unit::Lumen => "lumen",
12105            Unit::Lux => "lux",
12106            Unit::LinearYard => "linear yard",
12107            Unit::MilligramPerLitre => "milligram per litre",
12108            Unit::ReciprocalCubicYard => "reciprocal cubic yard",
12109            Unit::CubicYardPerDegreeFahrenheit => "cubic yard per degree Fahrenheit",
12110            Unit::CubicYardPerDay => "cubic yard per day",
12111            Unit::CubicYardPerHour => "cubic yard per hour",
12112            Unit::CubicYardPerPsi => "cubic yard per psi",
12113            Unit::CubicYardPerMinute => "cubic yard per minute",
12114            Unit::CubicYardPerSecond => "cubic yard per second",
12115            Unit::KilohertzMetre => "kilohertz metre",
12116            Unit::GigahertzMetre => "gigahertz metre",
12117            Unit::Beaufort => "Beaufort",
12118            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "reciprocal megakelvin or megakelvin to the power minus one",
12119            Unit::ReciprocalKilovoltAmpereReciprocalHour => "reciprocal kilovolt - ampere reciprocal hour",
12120            Unit::MillilitrePerSquareCentimetreMinute => "millilitre per square centimetre minute",
12121            Unit::NewtonPerCentimetre => "newton per centimetre",
12122            Unit::OhmKilometre => "ohm kilometre",
12123            Unit::PercentPerDegreeCelsius => "percent per degree Celsius",
12124            Unit::GigaohmPerMetre => "gigaohm per metre",
12125            Unit::MegahertzMetre => "megahertz metre",
12126            Unit::KilogramPerKilogram => "kilogram per kilogram",
12127            Unit::ReciprocalVoltAmpereReciprocalSecond => "reciprocal volt - ampere reciprocal second",
12128            Unit::KilogramPerKilometre => "kilogram per kilometre",
12129            Unit::PascalSecondPerLitre => "pascal second per litre",
12130            Unit::MillimolePerLitre => "millimole per litre",
12131            Unit::NewtonMetrePerSquareMetre => "newton metre per square metre",
12132            Unit::MillivoltAmpere => "millivolt - ampere",
12133            Unit::_30DayMonth => "30-day month",
12134            Unit::Actual360 => "actual/360",
12135            Unit::KilometrePerSecondSquared => "kilometre per second squared",
12136            Unit::CentimetrePerSecondSquared => "centimetre per second squared",
12137            Unit::MonetaryValue => "monetary value",
12138            Unit::YardPerSecondSquared => "yard per second squared",
12139            Unit::MillimetrePerSecondSquared => "millimetre per second squared",
12140            Unit::MileStatuteMilePerSecondSquared => "mile (statute mile) per second squared",
12141            Unit::Mil => "mil",
12142            Unit::Revolution => "revolution",
12143            Unit::DegreeUnitAnglePerSecondSquared => "degree [unit of angle] per second squared",
12144            Unit::RevolutionPerMinute => "revolution per minute ",
12145            Unit::CircularMil => "circular mil ",
12146            Unit::SquareMileBasedOnUSSurveyFoot => "square mile (based on U.S. survey foot) ",
12147            Unit::ChainBasedOnUSSurveyFoot => "chain (based on U.S. survey foot)",
12148            Unit::Microcurie => "microcurie",
12149            Unit::Furlong => "furlong",
12150            Unit::FootUSSurvey => "foot (U.S. survey) ",
12151            Unit::MileBasedOnUSSurveyFoot => "mile (based on U.S. survey foot) ",
12152            Unit::MetrePerPascal => "metre per pascal",
12153            Unit::MetrePerRadiant => "metre per radiant",
12154            Unit::Shake => "shake",
12155            Unit::MilePerMinute => "mile per minute ",
12156            Unit::MilePerSecond => "mile per second ",
12157            Unit::MetrePerSecondPascal => "metre per second pascal",
12158            Unit::MetrePerHour => "metre per hour",
12159            Unit::InchPerYear => "inch per year",
12160            Unit::KilometrePerSecond => "kilometre per second ",
12161            Unit::InchPerMinute => "inch per minute",
12162            Unit::YardPerSecond => "yard per second",
12163            Unit::YardPerMinute => "yard per minute",
12164            Unit::YardPerHour => "yard per hour",
12165            Unit::AcreFootBasedOnUSSurveyFoot => "acre-foot (based on U.S. survey foot)",
12166            Unit::Cord128Ft3 => "cord (128 ft3)",
12167            Unit::CubicMileUkStatute => "cubic mile (UK statute)",
12168            Unit::MicroInch => "micro-inch",
12169            Unit::TonRegister => "ton, register ",
12170            Unit::CubicMetrePerPascal => "cubic metre per pascal",
12171            Unit::Bel => "bel",
12172            Unit::KilogramPerCubicMetrePascal => "kilogram per cubic metre pascal",
12173            Unit::KilogramPerPascal => "kilogram per pascal",
12174            Unit::KilopoundForce => "kilopound-force",
12175            Unit::Poundal => "poundal",
12176            Unit::KilogramMetrePerSecondSquared => "kilogram metre per second squared",
12177            Unit::Pond => "pond",
12178            Unit::SquareFootPerHour => "square foot per hour ",
12179            Unit::StokesPerPascal => "stokes per pascal",
12180            Unit::SquareCentimetrePerSecond => "square centimetre per second",
12181            Unit::SquareMetrePerSecondPascal => "square metre per second pascal",
12182            Unit::Denier_Dup => "denier ",
12183            Unit::PoundPerYard => "pound per yard ",
12184            Unit::TonAssay => "ton, assay",
12185            Unit::Pfund => "pfund",
12186            Unit::KilogramPerSecondPascal => "kilogram per second pascal",
12187            Unit::TonnePerMonth => "tonne per month",
12188            Unit::TonnePerYear => "tonne per year",
12189            Unit::MillionBtuPer1000CubicFoot => "million Btu per 1000 cubic foot",
12190            Unit::KilopoundPerHour => "kilopound per hour",
12191            Unit::PoundPerPound => "pound per pound",
12192            Unit::PoundForceFoot => "pound-force foot",
12193            Unit::NewtonMetrePerRadian => "newton metre per radian",
12194            Unit::KilogramMetre => "kilogram metre",
12195            Unit::PoundalFoot => "poundal foot",
12196            Unit::PoundalInch => "poundal inch",
12197            Unit::DyneMetre => "dyne metre",
12198            Unit::KilogramCentimetrePerSecond => "kilogram centimetre per second",
12199            Unit::GramCentimetrePerSecond => "gram centimetre per second",
12200            Unit::MegavoltAmpereReactiveHour => "megavolt ampere reactive hour",
12201            Unit::Megalitre => "megalitre",
12202            Unit::Megametre => "megametre",
12203            Unit::Megavar => "megavar",
12204            Unit::Megawatt => "megawatt",
12205            Unit::ThousandStandardBrickEquivalent => "thousand standard brick equivalent",
12206            Unit::ThousandBoardFoot => "thousand board foot",
12207            Unit::Millibar => "millibar",
12208            Unit::Microgram => "microgram",
12209            Unit::Millicurie => "millicurie",
12210            Unit::AirDryMetricTon => "air dry metric ton",
12211            Unit::Milligram => "milligram",
12212            Unit::Megahertz => "megahertz",
12213            Unit::SquareMileStatuteMile => "square mile (statute mile)",
12214            Unit::Thousand => "thousand",
12215            Unit::MinuteUnitTime => "minute [unit of time]",
12216            Unit::Million => "million",
12217            Unit::MillionInternationalUnit => "million international unit",
12218            Unit::SquareMetreDay => "Square Metre Day",
12219            Unit::SquareMetreMonth => "Square Metre Month",
12220            Unit::SquareMetreWeek => "Square Metre Week",
12221            Unit::Milliard => "milliard",
12222            Unit::Millilitre => "millilitre",
12223            Unit::SquareMillimetre => "square millimetre",
12224            Unit::CubicMillimetre => "cubic millimetre",
12225            Unit::Millimetre => "millimetre",
12226            Unit::KilogramDryWeight => "kilogram, dry weight",
12227            Unit::MegaJoulePerNormalisedCubicMetre => "Mega Joule per Normalised cubic Metre",
12228            Unit::Month => "month",
12229            Unit::Megapascal => "megapascal",
12230            Unit::CubicMetreDay => "Cubic Metre Day",
12231            Unit::CubicMetrePerHour => "cubic metre per hour",
12232            Unit::CubicMetreMonth => "Cubic Metre Month",
12233            Unit::CubicMetrePerSecond => "cubic metre per second",
12234            Unit::CubicMetreWeek => "Cubic Metre Week",
12235            Unit::MetreDay => "Metre Day",
12236            Unit::MetreMonth => "Metre Month",
12237            Unit::MetreWeek => "Metre Week",
12238            Unit::MetrePerSecondSquared => "metre per second squared",
12239            Unit::SquareMetre => "square metre",
12240            Unit::CubicMetre => "cubic metre",
12241            Unit::Metre => "metre",
12242            Unit::MetrePerSecond => "metre per second",
12243            Unit::Milihertz => "milihertz",
12244            Unit::MegavoltAmpere => "megavolt - ampere",
12245            Unit::MegawattHour1000KwH => "megawatt hour (1000 kW.h)",
12246            Unit::PenCalorie => "pen calorie",
12247            Unit::PoundFootPerSecond => "pound foot per second",
12248            Unit::PoundInchPerSecond => "pound inch per second",
12249            Unit::Pferdestaerke => "Pferdestaerke",
12250            Unit::CentimetreMercury0Oc => "centimetre of mercury (0 ºC)",
12251            Unit::CentimetreWater4Oc => "centimetre of water (4 ºC)",
12252            Unit::FootWater392Of => "foot of water (39.2 ºF)",
12253            Unit::InchMercury32Of => "inch of mercury (32 ºF)",
12254            Unit::InchMercury60Of => "inch of mercury (60 ºF)",
12255            Unit::InchWater392Of => "inch of water (39.2 ºF)",
12256            Unit::InchWater60Of => "inch of water (60 ºF)",
12257            Unit::KipPerSquareInch => "kip per square inch",
12258            Unit::PoundalPerSquareFoot => "poundal per square foot ",
12259            Unit::OunceAvoirdupoisPerSquareInch => "ounce (avoirdupois) per square inch ",
12260            Unit::ConventionalMetreWater => "conventional metre of water",
12261            Unit::GramPerSquareMillimetre => "gram per square millimetre",
12262            Unit::PoundPerSquareYard => "pound per square yard",
12263            Unit::PoundalPerSquareInch => "poundal per square inch",
12264            Unit::FootToFourthPower => "foot to the fourth power ",
12265            Unit::CubicDecimetrePerKilogram => "cubic decimetre per kilogram",
12266            Unit::CubicFootPerPound => "cubic foot per pound",
12267            Unit::PrintPoint => "print point",
12268            Unit::CubicInchPerPound => "cubic inch per pound",
12269            Unit::KilonewtonPerMetre => "kilonewton per metre",
12270            Unit::PoundalPerInch => "poundal per inch",
12271            Unit::PoundForcePerYard => "pound-force per yard",
12272            Unit::PoundalSecondPerSquareFoot => "poundal second per square foot ",
12273            Unit::PoisePerPascal => "poise per pascal",
12274            Unit::NewtonSecondPerSquareMetre => "newton second per square metre",
12275            Unit::KilogramPerMetreSecond => "kilogram per metre second",
12276            Unit::KilogramPerMetreMinute => "kilogram per metre minute",
12277            Unit::KilogramPerMetreDay => "kilogram per metre day",
12278            Unit::KilogramPerMetreHour => "kilogram per metre hour",
12279            Unit::GramPerCentimetreSecond => "gram per centimetre second",
12280            Unit::PoundalSecondPerSquareInch => "poundal second per square inch",
12281            Unit::PoundPerFootMinute => "pound per foot minute",
12282            Unit::PoundPerFootDay => "pound per foot day",
12283            Unit::CubicMetrePerSecondPascal => "cubic metre per second pascal",
12284            Unit::FootPoundal => "foot poundal",
12285            Unit::InchPoundal => "inch poundal",
12286            Unit::WattPerSquareCentimetre => "watt per square centimetre ",
12287            Unit::WattPerSquareInch => "watt per square inch ",
12288            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "British thermal unit (international table) per square foot hour",
12289            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "British thermal unit (thermochemical) per square foot hour",
12290            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "British thermal unit (thermochemical) per square foot minute",
12291            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "British thermal unit (international table) per square foot second",
12292            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "British thermal unit (thermochemical) per square foot second",
12293            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "British thermal unit (international table) per square inch second",
12294            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "calorie (thermochemical) per square centimetre minute",
12295            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "calorie (thermochemical) per square centimetre second",
12296            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "British thermal unit (international table) per cubic foot ",
12297            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "British thermal unit (thermochemical) per cubic foot",
12298            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "British thermal unit (international table) per degree Fahrenheit",
12299            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "British thermal unit (thermochemical) per degree Fahrenheit",
12300            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "British thermal unit (international table) per degree Rankine",
12301            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "British thermal unit (thermochemical) per degree Rankine",
12302            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "British thermal unit (thermochemical) per pound degree Rankine",
12303            Unit::KilocalorieInternationalTablePerGramKelvin => "kilocalorie (international table) per gram kelvin",
12304            Unit::BritishThermalUnit39Of => "British thermal unit (39 ºF) ",
12305            Unit::BritishThermalUnit59Of => "British thermal unit (59 ºF)",
12306            Unit::BritishThermalUnit60Of => "British thermal unit (60 ºF) ",
12307            Unit::Calorie20Oc => "calorie (20 ºC) ",
12308            Unit::Quad1015Btuit => "quad (1015 BtuIT)",
12309            Unit::ThermEc => "therm (EC)",
12310            Unit::ThermUS => "therm (U.S.)",
12311            Unit::BritishThermalUnitThermochemicalPerPound => "British thermal unit (thermochemical) per pound",
12312            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) per hour square foot degree Fahrenheit",
12313            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
12314            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) per second square foot degree Fahrenheit",
12315            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
12316            Unit::KilowattPerSquareMetreKelvin => "kilowatt per square metre kelvin",
12317            Unit::KelvinPerPascal => "kelvin per pascal",
12318            Unit::WattPerMetreDegreeCelsius => "watt per metre degree Celsius",
12319            Unit::KilowattPerMetreKelvin => "kilowatt per metre kelvin",
12320            Unit::KilowattPerMetreDegreeCelsius => "kilowatt per metre degree Celsius",
12321            Unit::MetrePerDegreeCelciusMetre => "metre per degree Celcius metre",
12322            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour per British thermal unit (international table)",
12323            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "degree Fahrenheit hour per British thermal unit (thermochemical)",
12324            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "degree Fahrenheit second per British thermal unit (international table)",
12325            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "degree Fahrenheit second per British thermal unit (thermochemical)",
12326            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
12327            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
12328            Unit::Kilofarad => "kilofarad",
12329            Unit::ReciprocalJoule => "reciprocal joule",
12330            Unit::Picosiemens => "picosiemens",
12331            Unit::AmperePerPascal => "ampere per pascal",
12332            Unit::Franklin => "franklin",
12333            Unit::AmpereMinute => "ampere minute",
12334            Unit::Biot => "biot",
12335            Unit::Gilbert => "gilbert",
12336            Unit::VoltPerPascal => "volt per pascal",
12337            Unit::Picovolt => "picovolt",
12338            Unit::MilligramPerKilogram => "milligram per kilogram",
12339            Unit::NumberArticles => "number of articles",
12340            Unit::NumberCells => "number of cells",
12341            Unit::Newton => "newton",
12342            Unit::Message => "message",
12343            Unit::Nil => "nil",
12344            Unit::NumberInternationalUnits => "number of international units",
12345            Unit::Load => "load",
12346            Unit::NormalisedCubicMetre => "Normalised cubic metre",
12347            Unit::NauticalMile => "nautical mile",
12348            Unit::NumberPacks => "number of packs",
12349            Unit::NumberParts => "number of parts",
12350            Unit::NetTon => "net ton",
12351            Unit::NephelometricTurbidityUnit => "Nephelometric turbidity unit",
12352            Unit::NewtonMetre => "newton metre",
12353            Unit::PartPerThousand => "part per thousand",
12354            Unit::Panel => "panel",
12355            Unit::OzoneDepletionEquivalent => "ozone depletion equivalent",
12356            Unit::OdsGrams => "ODS Grams",
12357            Unit::OdsKilograms => "ODS Kilograms",
12358            Unit::OdsMilligrams => "ODS Milligrams",
12359            Unit::Ohm => "ohm",
12360            Unit::OuncePerSquareYard => "ounce per square yard",
12361            Unit::OunceAvoirdupois => "ounce (avoirdupois)",
12362            Unit::OscillationsPerMinute => "oscillations per minute",
12363            Unit::OvertimeHour => "overtime hour",
12364            Unit::FluidOunceUs => "fluid ounce (US)",
12365            Unit::FluidOunceUk => "fluid ounce (UK)",
12366            Unit::Percent => "percent",
12367            Unit::CoulombPerMetre => "coulomb per metre",
12368            Unit::Kiloweber => "kiloweber",
12369            Unit::Gamma => "gamma",
12370            Unit::Kilotesla => "kilotesla",
12371            Unit::JoulePerSecond => "joule per second",
12372            Unit::JoulePerMinute => "joule per minute",
12373            Unit::JoulePerHour => "joule per hour",
12374            Unit::JoulePerDay => "joule per day",
12375            Unit::KilojoulePerSecond => "kilojoule per second",
12376            Unit::KilojoulePerMinute => "kilojoule per minute",
12377            Unit::PoundPerFoot => "pound per foot",
12378            Unit::KilojoulePerHour => "kilojoule per hour",
12379            Unit::KilojoulePerDay => "kilojoule per day",
12380            Unit::Nanoohm => "nanoohm",
12381            Unit::OhmCircularMilPerFoot => "ohm circular-mil per foot ",
12382            Unit::Kilohenry => "kilohenry",
12383            Unit::LumenPerSquareFoot => "lumen per square foot ",
12384            Unit::Phot => "phot",
12385            Unit::Footcandle => "footcandle",
12386            Unit::CandelaPerSquareInch => "candela per square inch ",
12387            Unit::Footlambert => "footlambert",
12388            Unit::Lambert => "lambert",
12389            Unit::Stilb => "stilb",
12390            Unit::CandelaPerSquareFoot => "candela per square foot",
12391            Unit::Kilocandela => "kilocandela",
12392            Unit::Millicandela => "millicandela",
12393            Unit::HefnerKerze => "Hefner-Kerze",
12394            Unit::InternationalCandle => "international candle ",
12395            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "British thermal unit (international table) per square foot",
12396            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "British thermal unit (thermochemical) per square foot",
12397            Unit::CalorieThermochemicalPerSquareCentimetre => "calorie (thermochemical) per square centimetre ",
12398            Unit::Langley => "langley",
12399            Unit::DecadeLogarithmic => "decade (logarithmic)",
12400            Unit::PascalSquaredSecond => "pascal squared second",
12401            Unit::BelPerMetre => "bel per metre",
12402            Unit::PoundMole => "pound mole",
12403            Unit::PoundMolePerSecond => "pound mole per second",
12404            Unit::PoundMolePerMinute => "pound mole per minute",
12405            Unit::KilomolePerKilogram => "kilomole per kilogram",
12406            Unit::PoundMolePerPound => "pound mole per pound",
12407            Unit::NewtonSquareMetrePerAmpere => "newton square metre per ampere",
12408            Unit::FivePack => "five pack",
12409            Unit::WeberMetre => "weber metre",
12410            Unit::MolPerKilogramPascal => "mol per kilogram pascal",
12411            Unit::MolPerCubicMetrePascal => "mol per cubic metre pascal",
12412            Unit::UnitPole => "unit pole ",
12413            Unit::MilligrayPerSecond => "milligray per second",
12414            Unit::MicrograyPerSecond => "microgray per second",
12415            Unit::NanograyPerSecond => "nanogray per second",
12416            Unit::GrayPerMinute => "gray per minute",
12417            Unit::MilligrayPerMinute => "milligray per minute",
12418            Unit::MicrograyPerMinute => "microgray per minute",
12419            Unit::NanograyPerMinute => "nanogray per minute",
12420            Unit::GrayPerHour => "gray per hour",
12421            Unit::MilligrayPerHour => "milligray per hour",
12422            Unit::MicrograyPerHour => "microgray per hour",
12423            Unit::NanograyPerHour => "nanogray per hour",
12424            Unit::SievertPerSecond => "sievert per second",
12425            Unit::MillisievertPerSecond => "millisievert per second",
12426            Unit::MicrosievertPerSecond => "microsievert per second",
12427            Unit::NanosievertPerSecond => "nanosievert per second",
12428            Unit::RemPerSecond => "rem per second",
12429            Unit::SievertPerHour => "sievert per hour",
12430            Unit::MillisievertPerHour => "millisievert per hour",
12431            Unit::MicrosievertPerHour => "microsievert per hour",
12432            Unit::NanosievertPerHour => "nanosievert per hour",
12433            Unit::SievertPerMinute => "sievert per minute",
12434            Unit::MillisievertPerMinute => "millisievert per minute",
12435            Unit::MicrosievertPerMinute => "microsievert per minute",
12436            Unit::NanosievertPerMinute => "nanosievert per minute",
12437            Unit::ReciprocalSquareInch => "reciprocal square inch",
12438            Unit::PascalSquareMetrePerKilogram => "pascal square metre per kilogram",
12439            Unit::MillipascalPerMetre => "millipascal per metre",
12440            Unit::KilopascalPerMetre => "kilopascal per metre",
12441            Unit::HectopascalPerMetre => "hectopascal per metre",
12442            Unit::StandardAtmospherePerMetre => "standard atmosphere per metre",
12443            Unit::TechnicalAtmospherePerMetre => "technical atmosphere per metre",
12444            Unit::TorrPerMetre => "torr per metre",
12445            Unit::PsiPerInch => "psi per inch",
12446            Unit::CubicMetrePerSecondSquareMetre => "cubic metre per second square metre",
12447            Unit::Rhe => "rhe",
12448            Unit::PoundForceFootPerInch => "pound-force foot per inch",
12449            Unit::PoundForceInchPerInch => "pound-force inch per inch ",
12450            Unit::Perm0Oc => "perm (0 ºC) ",
12451            Unit::Perm23Oc => "perm (23 ºC) ",
12452            Unit::BytePerSecond => "byte per second",
12453            Unit::KilobytePerSecond => "kilobyte per second",
12454            Unit::MegabytePerSecond => "megabyte per second",
12455            Unit::ReciprocalVolt => "reciprocal volt",
12456            Unit::ReciprocalRadian => "reciprocal radian",
12457            Unit::PascalToPowerSumStoichiometricNumbers => "pascal to the power sum of stoichiometric numbers",
12458            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "mole per cubiv metre to the power sum of stoichiometric numbers",
12459            Unit::Pascal => "pascal",
12460            Unit::Pad => "pad",
12461            Unit::ProofLitre => "proof litre",
12462            Unit::ProofGallon => "proof gallon",
12463            Unit::Pitch => "pitch",
12464            Unit::DegreePlato => "degree Plato",
12465            Unit::PoundPerInchLength => "pound per inch of length",
12466            Unit::PagePerInch => "page per inch",
12467            Unit::Pair => "pair",
12468            Unit::PoundForcePerSquareInch => "pound-force per square inch",
12469            Unit::DryPintUs => "dry pint (US)",
12470            Unit::PintUk => "pint (UK)",
12471            Unit::LiquidPintUs => "liquid pint (US)",
12472            Unit::Portion => "portion",
12473            Unit::JoulePerTesla => "joule per tesla",
12474            Unit::Erlang => "erlang",
12475            Unit::Octet => "octet",
12476            Unit::OctetPerSecond => "octet per second",
12477            Unit::Shannon => "shannon",
12478            Unit::Hartley => "hartley",
12479            Unit::NaturalUnitInformation => "natural unit of information",
12480            Unit::ShannonPerSecond => "shannon per second",
12481            Unit::HartleyPerSecond => "hartley per second",
12482            Unit::NaturalUnitInformationPerSecond => "natural unit of information per second",
12483            Unit::SecondPerKilogramm => "second per kilogramm",
12484            Unit::WattSquareMetre => "watt square metre",
12485            Unit::SecondPerRadianCubicMetre => "second per radian cubic metre",
12486            Unit::WeberToPowerMinusOne => "weber to the power minus one",
12487            Unit::ReciprocalInch => "reciprocal inch",
12488            Unit::Dioptre => "dioptre",
12489            Unit::OnePerOne => "one per one",
12490            Unit::NewtonMetrePerMetre => "newton metre per metre",
12491            Unit::KilogramPerSquareMetrePascalSecond => "kilogram per square metre pascal second",
12492            Unit::MicrogramPerHectogram => "microgram per hectogram",
12493            Unit::Meal => "meal",
12494            Unit::PhPotentialHydrogen => "pH (potential of Hydrogen)",
12495            Unit::KilojoulePerGram => "kilojoule per gram",
12496            Unit::Femtolitre => "femtolitre",
12497            Unit::Picolitre => "picolitre",
12498            Unit::Nanolitre => "nanolitre",
12499            Unit::MegawattsPerMinute => "megawatts per minute",
12500            Unit::SquareMetrePerCubicMetre => "square metre per cubic metre",
12501            Unit::StandardCubicMetrePerDay => "Standard cubic metre per day",
12502            Unit::StandardCubicMetrePerHour => "Standard cubic metre per hour",
12503            Unit::NormalizedCubicMetrePerDay => "Normalized cubic metre per day",
12504            Unit::NormalizedCubicMetrePerHour => "Normalized cubic metre per hour",
12505            Unit::JoulePerNormalisedCubicMetre => "Joule per normalised cubic metre",
12506            Unit::JoulePerStandardCubicMetre => "Joule per standard cubic metre",
12507            Unit::PageFacsimile => "page - facsimile",
12508            Unit::QuarterAYear => "quarter (of a year)",
12509            Unit::PageHardcopy => "page - hardcopy",
12510            Unit::Quire => "quire",
12511            Unit::DryQuartUs => "dry quart (US)",
12512            Unit::QuartUk => "quart (UK)",
12513            Unit::LiquidQuartUs => "liquid quart (US)",
12514            Unit::QuarterUk => "quarter (UK)",
12515            Unit::Pica => "pica",
12516            Unit::ThousandCubicMetre => "thousand cubic metre",
12517            Unit::RunningOrOperatingHour => "running or operating hour",
12518            Unit::Ream => "ream",
12519            Unit::Room => "room",
12520            Unit::PoundPerReam => "pound per ream",
12521            Unit::RevolutionsPerMinute => "revolutions per minute",
12522            Unit::RevolutionsPerSecond => "revolutions per second",
12523            Unit::RevenueTonMile => "revenue ton mile",
12524            Unit::SquareFootPerSecond => "square foot per second",
12525            Unit::SquareMetrePerSecond => "square metre per second",
12526            Unit::HalfYear6Months => "half year (6 months)",
12527            Unit::Score => "score",
12528            Unit::Scruple => "scruple",
12529            Unit::SecondUnitTime => "second [unit of time]",
12530            Unit::Set => "set",
12531            Unit::Segment => "segment",
12532            Unit::Siemens => "siemens",
12533            Unit::StandardCubicMetre => "Standard cubic metre",
12534            Unit::MileStatuteMile => "mile (statute mile)",
12535            Unit::Square => "square",
12536            Unit::SquareRoofing => "square, roofing",
12537            Unit::Strip => "strip",
12538            Unit::Stick => "stick",
12539            Unit::StoneUk => "stone (UK)",
12540            Unit::StickCigarette => "stick, cigarette",
12541            Unit::StandardLitre => "standard litre",
12542            Unit::TonUsOrShortTonUkUs => "ton (US) or short ton (UK/US)",
12543            Unit::Straw => "straw",
12544            Unit::Skein => "skein",
12545            Unit::Shipment => "shipment",
12546            Unit::Syringe => "syringe",
12547            Unit::TelecommunicationLineInService => "telecommunication line in service",
12548            Unit::ThousandPiece => "thousand piece",
12549            Unit::KiloampereHourThousandAmpereHour => "kiloampere hour (thousand ampere hour)",
12550            Unit::TotalAcidNumber => "total acid number",
12551            Unit::ThousandSquareInch => "thousand square inch",
12552            Unit::MetricTonIncludingContainer => "metric ton, including container",
12553            Unit::MetricTonIncludingInnerPackaging => "metric ton, including inner packaging",
12554            Unit::TonneKilometre => "tonne kilometre",
12555            Unit::KilogramImportedMeatLessOffal => "kilogram of imported meat, less offal",
12556            Unit::TonneMetricTon => "tonne (metric ton)",
12557            Unit::TenPack => "ten pack",
12558            Unit::TeethPerInch => "teeth per inch",
12559            Unit::TenPair => "ten pair",
12560            Unit::ThousandCubicMetrePerDay => "thousand cubic metre per day",
12561            Unit::TrillionEur => "trillion (EUR)",
12562            Unit::TenSet => "ten set",
12563            Unit::TenThousandSticks => "ten thousand sticks",
12564            Unit::Treatment => "treatment",
12565            Unit::Tablet => "tablet",
12566            Unit::TelecommunicationLineInServiceAverage => "telecommunication line in service average",
12567            Unit::TelecommunicationPort => "telecommunication port",
12568            Unit::VoltAmperePerKilogram => "volt - ampere per kilogram",
12569            Unit::Volt => "volt",
12570            Unit::PercentVolume => "percent volume",
12571            Unit::WetKilo => "wet kilo",
12572            Unit::WattPerKilogram => "watt per kilogram",
12573            Unit::WetPound => "wet pound",
12574            Unit::Cord => "cord",
12575            Unit::WetTon => "wet ton",
12576            Unit::Weber => "weber",
12577            Unit::Week => "week",
12578            Unit::WineGallon => "wine gallon",
12579            Unit::WattHour => "watt hour",
12580            Unit::WorkingMonth => "working month",
12581            Unit::Standard => "standard",
12582            Unit::Watt => "watt",
12583            Unit::GuntersChain => "Gunter's chain",
12584            Unit::SquareYard => "square yard",
12585            Unit::CubicYard => "cubic yard",
12586            Unit::Yard => "yard",
12587            Unit::HangingContainer => "hanging container",
12588            Unit::Nanomole => "nanomole",
12589            Unit::Page => "page",
12590            Unit::MutuallyDefined => "mutually defined",
12591            Unit::DrumSteel => "Drum, steel",
12592            Unit::DrumAluminium => "Drum, aluminium",
12593            Unit::DrumPlywood => "Drum, plywood",
12594            Unit::ContainerFlexible => "Container, flexible",
12595            Unit::DrumFibre => "Drum, fibre",
12596            Unit::DrumWooden => "Drum, wooden",
12597            Unit::BarrelWooden => "Barrel, wooden",
12598            Unit::JerricanSteel => "Jerrican, steel",
12599            Unit::JerricanPlastic => "Jerrican, plastic",
12600            Unit::BagSuperBulk => "Bag, super bulk",
12601            Unit::BagPolybag => "Bag, polybag",
12602            Unit::BoxSteel => "Box, steel",
12603            Unit::BoxAluminium => "Box, aluminium",
12604            Unit::BoxNaturalWood => "Box, natural wood",
12605            Unit::BoxPlywood => "Box, plywood",
12606            Unit::BoxReconstitutedWood => "Box, reconstituted wood",
12607            Unit::BoxFibreboard => "Box, fibreboard",
12608            Unit::BoxPlastic => "Box, plastic",
12609            Unit::BagWovenPlastic => "Bag, woven plastic",
12610            Unit::BagTextile => "Bag, textile ",
12611            Unit::BagPaper => "Bag, paper ",
12612            Unit::CompositePackagingPlasticReceptacle => "Composite packaging, plastic receptacle",
12613            Unit::CompositePackagingGlassReceptacle => "Composite packaging, glass receptacle",
12614            Unit::CaseCar => "Case, car",
12615            Unit::CaseWooden => "Case, wooden",
12616            Unit::PalletWooden => "Pallet, wooden",
12617            Unit::CrateWooden => "Crate, wooden",
12618            Unit::BundleWooden => "Bundle, wooden",
12619            Unit::IntermediateBulkContainerRigidPlastic => "Intermediate bulk container, rigid plastic",
12620            Unit::ReceptacleFibre => "Receptacle, fibre ",
12621            Unit::ReceptaclePaper => "Receptacle, paper ",
12622            Unit::ReceptacleWooden => "Receptacle, wooden ",
12623            Unit::Aerosol => "Aerosol",
12624            Unit::PalletModularCollars80cms60cms => "Pallet, modular, collars 80cms * 60cms ",
12625            Unit::PalletShrinkwrapped => "Pallet, shrinkwrapped ",
12626            Unit::Pallet100cms110cms => "Pallet, 100cms * 110cms ",
12627            Unit::Clamshell => "Clamshell",
12628            Unit::Cone => "Cone",
12629            Unit::Ball_Dup => "Ball",
12630            Unit::AmpouleNonProtected => "Ampoule, non-protected ",
12631            Unit::AmpouleProtected => "Ampoule, protected ",
12632            Unit::Atomizer => "Atomizer ",
12633            Unit::Capsule => "Capsule",
12634            Unit::Belt => "Belt",
12635            Unit::Barrel => "Barrel ",
12636            Unit::Bobbin => "Bobbin ",
12637            Unit::BottlecrateBottlerack => "Bottlecrate / bottlerack ",
12638            Unit::Board => "Board",
12639            Unit::Bundle => "Bundle ",
12640            Unit::BalloonNonProtected => "Balloon, non-protected ",
12641            Unit::Bag => "Bag",
12642            Unit::Bunch => "Bunch",
12643            Unit::Bin => "Bin",
12644            Unit::Bucket => "Bucket ",
12645            Unit::Basket => "Basket ",
12646            Unit::BaleCompressed => "Bale, compressed ",
12647            Unit::Basin => "Basin",
12648            Unit::BaleNonCompressed => "Bale, non-compressed ",
12649            Unit::BottleNonProtectedCylindrical => "Bottle, non-protected, cylindrical ",
12650            Unit::BalloonProtected => "Balloon, protected ",
12651            Unit::BottleProtectedCylindrical => "Bottle, protected cylindrical",
12652            Unit::Bar => "Bar",
12653            Unit::BottleNonProtectedBulbous => "Bottle, non-protected, bulbous ",
12654            Unit::Bolt => "Bolt ",
12655            Unit::Butt => "Butt ",
12656            Unit::BottleProtectedBulbous => "Bottle, protected bulbous",
12657            Unit::BoxForLiquids => "Box, for liquids",
12658            Unit::Box => "Box",
12659            Unit::BoardInBundleBunchTruss => "Board, in bundle/bunch/truss ",
12660            Unit::BarsInBundleBunchTruss => "Bars, in bundle/bunch/truss",
12661            Unit::CanRectangular => "Can, rectangular ",
12662            Unit::CrateBeer => "Crate, beer",
12663            Unit::Churn => "Churn",
12664            Unit::CanWithHandleAndSpout => "Can, with handle and spout ",
12665            Unit::Creel => "Creel",
12666            Unit::Coffer => "Coffer ",
12667            Unit::Cage => "Cage ",
12668            Unit::Chest => "Chest",
12669            Unit::Canister => "Canister ",
12670            Unit::Coffin => "Coffin ",
12671            Unit::Cask => "Cask ",
12672            Unit::Coil => "Coil ",
12673            Unit::Card_Dup => "Card",
12674            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "Container, not otherwise specified as transport equipment",
12675            Unit::CarboyNonProtected => "Carboy, non-protected",
12676            Unit::CarboyProtected => "Carboy, protected",
12677            Unit::Cartridge => "Cartridge",
12678            Unit::Crate => "Crate",
12679            Unit::Case => "Case ",
12680            Unit::Carton => "Carton ",
12681            Unit::Cup => "Cup",
12682            Unit::Cover => "Cover",
12683            Unit::CageRoll => "Cage, roll ",
12684            Unit::CanCylindrical => "Can, cylindrical ",
12685            Unit::Cylinder => "Cylinder ",
12686            Unit::Canvas => "Canvas ",
12687            Unit::CrateMultipleLayerPlastic => "Crate, multiple layer, plastic ",
12688            Unit::CrateMultipleLayerWooden => "Crate, multiple layer, wooden",
12689            Unit::CrateMultipleLayerCardboard => "Crate, multiple layer, cardboard ",
12690            Unit::CageCommonwealthHandlingEquipmentPoolChep => "Cage, Commonwealth Handling Equipment Pool (CHEP)",
12691            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox",
12692            Unit::DrumIron => "Drum, iron ",
12693            Unit::DemijohnNonProtected => "Demijohn, non-protected",
12694            Unit::CrateBulkCardboard => "Crate, bulk, cardboard ",
12695            Unit::CrateBulkPlastic => "Crate, bulk, plastic ",
12696            Unit::CrateBulkWooden => "Crate, bulk, wooden",
12697            Unit::Dispenser => "Dispenser",
12698            Unit::DemijohnProtected => "Demijohn, protected",
12699            Unit::Drum => "Drum ",
12700            Unit::TrayOneLayerNoCoverPlastic => "Tray, one layer no cover, plastic",
12701            Unit::TrayOneLayerNoCoverWooden => "Tray, one layer no cover, wooden ",
12702            Unit::TrayOneLayerNoCoverPolystyrene => "Tray, one layer no cover, polystyrene",
12703            Unit::TrayOneLayerNoCoverCardboard => "Tray, one layer no cover, cardboard",
12704            Unit::TrayTwoLayersNoCoverPlasticTray => "Tray, two layers no cover, plastic tray",
12705            Unit::TrayTwoLayersNoCoverWooden => "Tray, two layers no cover, wooden",
12706            Unit::TrayTwoLayersNoCoverCardboard => "Tray, two layers no cover, cardboard ",
12707            Unit::BagPlastic => "Bag, plastic ",
12708            Unit::CaseWithPalletBase => "Case, with pallet base ",
12709            Unit::CaseWithPalletBaseWooden => "Case, with pallet base, wooden ",
12710            Unit::CaseWithPalletBaseCardboard => "Case, with pallet base, cardboard",
12711            Unit::CaseWithPalletBasePlastic => "Case, with pallet base, plastic",
12712            Unit::CaseWithPalletBaseMetal => "Case, with pallet base, metal",
12713            Unit::CaseIsothermic => "Case, isothermic ",
12714            Unit::Envelope => "Envelope ",
12715            Unit::Flexibag => "Flexibag",
12716            Unit::CrateFruit => "Crate, fruit ",
12717            Unit::CrateFramed => "Crate, framed",
12718            Unit::Flexitank => "Flexitank",
12719            Unit::Firkin => "Firkin ",
12720            Unit::Flask => "Flask",
12721            Unit::Footlocker => "Footlocker ",
12722            Unit::Filmpack => "Filmpack ",
12723            Unit::Frame => "Frame",
12724            Unit::Foodtainer => "Foodtainer",
12725            Unit::CartFlatbed => "Cart, flatbed",
12726            Unit::BagFlexibleContainer => "Bag, flexible container",
12727            Unit::BottleGas => "Bottle, gas",
12728            Unit::Girder => "Girder ",
12729            Unit::ContainerGallon => "Container, gallon",
12730            Unit::ReceptacleGlass => "Receptacle, glass ",
12731            Unit::TrayContainingHorizontallyStackedFlatItems => "Tray, containing horizontally stacked flat items",
12732            Unit::BagGunny => "Bag, gunny",
12733            Unit::GirdersInBundleBunchTruss => "Girders, in bundle/bunch/truss ",
12734            Unit::BasketWithHandlePlastic => "Basket, with handle, plastic ",
12735            Unit::BasketWithHandleWooden => "Basket, with handle, wooden",
12736            Unit::BasketWithHandleCardboard => "Basket, with handle, cardboard ",
12737            Unit::Hogshead => "Hogshead ",
12738            Unit::Hanger => "Hanger",
12739            Unit::Hamper => "Hamper ",
12740            Unit::PackageDisplayWooden => "Package, display, wooden ",
12741            Unit::PackageDisplayCardboard => "Package, display, cardboard",
12742            Unit::PackageDisplayPlastic => "Package, display, plastic",
12743            Unit::PackageDisplayMetal => "Package, display, metal",
12744            Unit::PackageShow => "Package, show",
12745            Unit::PackageFlow => "Package, flow ",
12746            Unit::PackagePaperWrapped => "Package, paper wrapped",
12747            Unit::DrumPlastic => "Drum, plastic",
12748            Unit::PackageCardboardWithBottleGripHoles => "Package, cardboard, with bottle grip-holes ",
12749            Unit::TrayRigidLiddedStackableCenTs144822002 => "Tray, rigid, lidded stackable (CEN TS 14482:2002)",
12750            Unit::Ingot => "Ingot",
12751            Unit::IngotsInBundleBunchTruss => "Ingots, in bundle/bunch/truss",
12752            Unit::BagJumbo => "Bag, jumbo",
12753            Unit::JerricanRectangular => "Jerrican, rectangular",
12754            Unit::Jug => "Jug",
12755            Unit::Jar => "Jar",
12756            Unit::Jutebag => "Jutebag",
12757            Unit::JerricanCylindrical => "Jerrican, cylindrical",
12758            Unit::Keg => "Keg",
12759            Unit::Kit_Dup => "Kit",
12760            Unit::Luggage => "Luggage",
12761            Unit::Log => "Log",
12762            Unit::Lot => "Lot",
12763            Unit::Lug => "Lug",
12764            Unit::Liftvan => "Liftvan",
12765            Unit::LogsInBundleBunchTruss => "Logs, in bundle/bunch/truss",
12766            Unit::CrateMetal => "Crate, metal",
12767            Unit::BagMultiply => "Bag, multiply",
12768            Unit::CrateMilk => "Crate, milk",
12769            Unit::ContainerMetal => "Container, metal",
12770            Unit::ReceptacleMetal => "Receptacle, metal ",
12771            Unit::SackMultiWall => "Sack, multi-wall ",
12772            Unit::Mat => "Mat",
12773            Unit::ReceptaclePlasticWrapped => "Receptacle, plastic wrapped ",
12774            Unit::Matchbox => "Matchbox ",
12775            Unit::NotAvailable => "Not available",
12776            Unit::UnpackedOrUnpackaged => "Unpacked or unpackaged ",
12777            Unit::UnpackedOrUnpackagedSingleUnit => "Unpacked or unpackaged, single unit",
12778            Unit::UnpackedOrUnpackagedMultipleUnits => "Unpacked or unpackaged, multiple units",
12779            Unit::Nest => "Nest ",
12780            Unit::Net => "Net",
12781            Unit::NetTubePlastic => "Net, tube, plastic ",
12782            Unit::NetTubeTextile => "Net, tube, textile ",
12783            Unit::TwoSidedCageOnWheelsWithFixingStrap => "Two sided cage on wheels with fixing strap",
12784            Unit::Trolley => "Trolley",
12785            Unit::OnewayPalletIso012EuroPallet => "Oneway pallet ISO 0 - 1/2 EURO Pallet",
12786            Unit::OnewayPalletIso111EuroPallet => "Oneway pallet ISO 1 - 1/1 EURO Pallet",
12787            Unit::OnewayPalletIso221EuroPallet => "Oneway pallet ISO 2 - 2/1 EURO Pallet",
12788            Unit::PalletWithExceptionalDimensions => "Pallet with exceptional dimensions",
12789            Unit::WoodenPallet40CmX80Cm => "Wooden pallet 40 cm x 80 cm",
12790            Unit::PlasticPalletSrs60CmX80Cm => "Plastic pallet SRS 60 cm x 80 cm",
12791            Unit::PlasticPalletSrs80CmX120Cm => "Plastic pallet SRS 80 cm x 120 cm",
12792            Unit::PalletChep40CmX60Cm => "Pallet, CHEP 40 cm x 60 cm",
12793            Unit::PalletChep80CmX120Cm => "Pallet, CHEP 80 cm x 120 cm",
12794            Unit::PalletChep100CmX120Cm => "Pallet, CHEP 100 cm x 120 cm",
12795            Unit::PalletAs40681993 => "Pallet, AS 4068-1993",
12796            Unit::PalletIsoT11 => "Pallet, ISO T11",
12797            Unit::PlatformUnspecifiedWeightOrDimension => "Platform, unspecified weight or dimension",
12798            Unit::PalletIso012EuroPallet => "Pallet ISO 0 - 1/2 EURO Pallet",
12799            Unit::PalletIso111EuroPallet => "Pallet ISO 1 - 1/1 EURO Pallet",
12800            Unit::PalletIso221EuroPallet => "Pallet ISO 2 – 2/1 EURO Pallet",
12801            Unit::_14EuroPallet => "1/4 EURO Pallet",
12802            Unit::Block => "Block",
12803            Unit::_18EuroPallet => "1/8 EURO Pallet",
12804            Unit::SyntheticPalletIso1 => "Synthetic pallet ISO 1",
12805            Unit::SyntheticPalletIso2 => "Synthetic pallet ISO 2",
12806            Unit::WholesalerPallet => "Wholesaler pallet",
12807            Unit::Pallet80X100Cm => "Pallet 80 X 100 cm",
12808            Unit::Pallet60X100Cm => "Pallet 60 X 100 cm",
12809            Unit::OnewayPallet => "Oneway pallet",
12810            Unit::Octabin => "Octabin",
12811            Unit::ContainerOuter => "Container, outer",
12812            Unit::ReturnablePallet => "Returnable pallet",
12813            Unit::LargeBagPalletSized => "Large bag, pallet sized",
12814            Unit::AWheeledPalletWithRaisedRim81X67X135 => "A wheeled pallet with raised rim (81 x 67 x 135)",
12815            Unit::AWheeledPalletWithRaisedRim81X72X135 => "A Wheeled pallet with raised rim (81 x 72 x 135)",
12816            Unit::WheeledPalletWithRaisedRim81X60X16 => "Wheeled pallet with raised rim ( 81 x 60 x 16)",
12817            Unit::ChepPallet60CmX80Cm => "CHEP pallet 60 cm x 80 cm ",
12818            Unit::Pan => "Pan",
12819            Unit::LprPallet60CmX80Cm => "LPR pallet 60 cm x 80 cm",
12820            Unit::LprPallet80CmX120Cm => "LPR pallet 80 cm x 120 cm",
12821            Unit::Packet => "Packet ",
12822            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "Pallet, box Combined open-ended box and pallet",
12823            Unit::Parcel => "Parcel ",
12824            Unit::PalletModularCollars80cms100cms => "Pallet, modular, collars 80cms * 100cms ",
12825            Unit::PalletModularCollars80cms120cms => "Pallet, modular, collars 80cms * 120cms ",
12826            Unit::Pen => "Pen ",
12827            Unit::Plate => "Plate",
12828            Unit::Pitcher => "Pitcher",
12829            Unit::Pipe => "Pipe ",
12830            Unit::Punnet => "Punnet",
12831            Unit::Package => "Package",
12832            Unit::Pail => "Pail ",
12833            Unit::Plank => "Plank",
12834            Unit::Pouch => "Pouch",
12835            Unit::Piece_Dup => "Piece",
12836            Unit::ReceptaclePlastic => "Receptacle, plastic ",
12837            Unit::Pot => "Pot",
12838            Unit::Tray => "Tray ",
12839            Unit::PipesInBundleBunchTruss => "Pipes, in bundle/bunch/truss ",
12840            Unit::Pallet => "Pallet ",
12841            Unit::PlatesInBundleBunchTruss => "Plates, in bundle/bunch/truss",
12842            Unit::PlanksInBundleBunchTruss => "Planks, in bundle/bunch/truss",
12843            Unit::DrumSteelNonRemovableHead => "Drum, steel, non-removable head",
12844            Unit::DrumSteelRemovableHead => "Drum, steel, removable head",
12845            Unit::DrumAluminiumNonRemovableHead => "Drum, aluminium, non-removable head",
12846            Unit::DrumAluminiumRemovableHead => "Drum, aluminium, removable head",
12847            Unit::DrumPlasticNonRemovableHead => "Drum, plastic, non-removable head",
12848            Unit::DrumPlasticRemovableHead => "Drum, plastic, removable head",
12849            Unit::BarrelWoodenBungType => "Barrel, wooden, bung type",
12850            Unit::BarrelWoodenRemovableHead => "Barrel, wooden, removable head ",
12851            Unit::JerricanSteelNonRemovableHead => "Jerrican, steel, non-removable head",
12852            Unit::JerricanSteelRemovableHead => "Jerrican, steel, removable head",
12853            Unit::JerricanPlasticNonRemovableHead => "Jerrican, plastic, non-removable head",
12854            Unit::JerricanPlasticRemovableHead => "Jerrican, plastic, removable head",
12855            Unit::BoxWoodenNaturalWoodOrdinary => "Box, wooden, natural wood, ordinary",
12856            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "Box, wooden, natural wood, with sift proof walls",
12857            Unit::BoxPlasticExpanded => "Box, plastic, expanded ",
12858            Unit::BoxPlasticSolid => "Box, plastic, solid",
12859            Unit::Rod => "Rod",
12860            Unit::Ring => "Ring ",
12861            Unit::RackClothingHanger => "Rack, clothing hanger",
12862            Unit::Rack => "Rack ",
12863            Unit::Reel => "Reel ",
12864            Unit::Roll => "Roll ",
12865            Unit::Rednet => "Rednet ",
12866            Unit::RodsInBundleBunchTruss => "Rods, in bundle/bunch/truss",
12867            Unit::Sack => "Sack ",
12868            Unit::Slab => "Slab",
12869            Unit::CrateShallow => "Crate, shallow ",
12870            Unit::Spindle => "Spindle",
12871            Unit::SeaChest => "Sea-chest",
12872            Unit::Sachet => "Sachet ",
12873            Unit::Skid => "Skid ",
12874            Unit::CaseSkeleton => "Case, skeleton ",
12875            Unit::Slipsheet => "Slipsheet ",
12876            Unit::Sheetmetal => "Sheetmetal ",
12877            Unit::Spool => "Spool ",
12878            Unit::SheetPlasticWrapping => "Sheet, plastic wrapping",
12879            Unit::CaseSteel => "Case, steel",
12880            Unit::Sheet => "Sheet",
12881            Unit::Suitcase => "Suitcase ",
12882            Unit::EnvelopeSteel => "Envelope, steel",
12883            Unit::Shrinkwrapped => "Shrinkwrapped ",
12884            Unit::Set_Dup => "Set",
12885            Unit::Sleeve => "Sleeve",
12886            Unit::SheetsInBundleBunchTruss => "Sheets, in bundle/bunch/truss",
12887            Unit::Tablet_Dup => "Tablet",
12888            Unit::Tub => "Tub",
12889            Unit::TeaChest => "Tea-chest",
12890            Unit::TubeCollapsible => "Tube, collapsible",
12891            Unit::Tyre_Dup => "Tyre",
12892            Unit::TankContainerGeneric => "Tank container, generic",
12893            Unit::Tierce => "Tierce",
12894            Unit::TankRectangular => "Tank, rectangular",
12895            Unit::TubWithLid => "Tub, with lid",
12896            Unit::Tin => "Tin",
12897            Unit::Tun => "Tun",
12898            Unit::Trunk => "Trunk",
12899            Unit::Truss => "Truss",
12900            Unit::BagTote => "Bag, tote",
12901            Unit::Tube => "Tube ",
12902            Unit::TubeWithNozzle => "Tube, with nozzle ",
12903            Unit::PalletTriwall => "Pallet, triwall",
12904            Unit::TankCylindrical => "Tank, cylindrical",
12905            Unit::TubesInBundleBunchTruss => "Tubes, in bundle/bunch/truss ",
12906            Unit::Uncaged => "Uncaged ",
12907            Unit::Unit => "Unit",
12908            Unit::Vat => "Vat",
12909            Unit::BulkGasAt1031MbarAnd15C => "Bulk, gas (at 1031 mbar and 15°C)",
12910            Unit::Vial => "Vial ",
12911            Unit::Vanpack => "Vanpack ",
12912            Unit::BulkLiquid => "Bulk, liquid ",
12913            Unit::Vehicle => "Vehicle",
12914            Unit::BulkSolidLargeParticlesNodules => "Bulk, solid, large particles (“nodules”) ",
12915            Unit::VacuumPacked => "Vacuum-packed",
12916            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "Bulk, liquefied gas (at abnormal temperature/pressure) ",
12917            Unit::BulkSolidGranularParticlesGrains => "Bulk, solid, granular particles (“grains”) ",
12918            Unit::BulkScrapMetal => "Bulk, scrap metal",
12919            Unit::BulkSolidFineParticlesPowders => "Bulk, solid, fine particles (“powders”)",
12920            Unit::IntermediateBulkContainer => "Intermediate bulk container",
12921            Unit::Wickerbottle => "Wickerbottle ",
12922            Unit::IntermediateBulkContainerSteel => "Intermediate bulk container, steel ",
12923            Unit::IntermediateBulkContainerAluminium => "Intermediate bulk container, aluminium ",
12924            Unit::IntermediateBulkContainerMetal => "Intermediate bulk container, metal ",
12925            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "Intermediate bulk container, steel, pressurised > 10 kpa",
12926            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "Intermediate bulk container, aluminium, pressurised > 10 kpa",
12927            Unit::IntermediateBulkContainerMetalPressure10Kpa => "Intermediate bulk container, metal, pressure 10 kpa ",
12928            Unit::IntermediateBulkContainerSteelLiquid => "Intermediate bulk container, steel, liquid ",
12929            Unit::IntermediateBulkContainerAluminiumLiquid => "Intermediate bulk container, aluminium, liquid ",
12930            Unit::IntermediateBulkContainerMetalLiquid => "Intermediate bulk container, metal, liquid ",
12931            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "Intermediate bulk container, woven plastic, without coat/liner ",
12932            Unit::IntermediateBulkContainerWovenPlasticCoated => "Intermediate bulk container, woven plastic, coated ",
12933            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "Intermediate bulk container, woven plastic, with liner ",
12934            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "Intermediate bulk container, woven plastic, coated and liner ",
12935            Unit::IntermediateBulkContainerPlasticFilm => "Intermediate bulk container, plastic film",
12936            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "Intermediate bulk container, textile with out coat/liner ",
12937            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "Intermediate bulk container, natural wood, with inner liner",
12938            Unit::IntermediateBulkContainerTextileCoated => "Intermediate bulk container, textile, coated ",
12939            Unit::IntermediateBulkContainerTextileWithLiner => "Intermediate bulk container, textile, with liner ",
12940            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "Intermediate bulk container, textile, coated and liner ",
12941            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "Intermediate bulk container, plywood, with inner liner ",
12942            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "Intermediate bulk container, reconstituted wood, with inner liner",
12943            Unit::BagWovenPlasticWithoutInnerCoatLiner => "Bag, woven plastic, without inner coat/liner ",
12944            Unit::BagWovenPlasticSiftProof => "Bag, woven plastic, sift proof ",
12945            Unit::BagWovenPlasticWaterResistant => "Bag, woven plastic, water resistant",
12946            Unit::BagPlasticsFilm => "Bag, plastics film ",
12947            Unit::BagTextileWithoutInnerCoatLiner => "Bag, textile, without inner coat/liner ",
12948            Unit::BagTextileSiftProof => "Bag, textile, sift proof ",
12949            Unit::BagTextileWaterResistant => "Bag, textile, water resistant",
12950            Unit::BagPaperMultiWall => "Bag, paper, multi-wall ",
12951            Unit::BagPaperMultiWallWaterResistant => "Bag, paper, multi-wall, water resistant",
12952            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "Composite packaging, plastic receptacle in steel drum",
12953            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "Composite packaging, plastic receptacle in steel crate box",
12954            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "Composite packaging, plastic receptacle in aluminium drum",
12955            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "Composite packaging, plastic receptacle in aluminium crate",
12956            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "Composite packaging, plastic receptacle in wooden box",
12957            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "Composite packaging, plastic receptacle in plywood drum",
12958            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "Composite packaging, plastic receptacle in plywood box ",
12959            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "Composite packaging, plastic receptacle in fibre drum",
12960            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "Composite packaging, plastic receptacle in fibreboard box",
12961            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "Composite packaging, plastic receptacle in plastic drum",
12962            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "Composite packaging, plastic receptacle in solid plastic box",
12963            Unit::CompositePackagingGlassReceptacleInSteelDrum => "Composite packaging, glass receptacle in steel drum",
12964            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "Composite packaging, glass receptacle in steel crate box",
12965            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "Composite packaging, glass receptacle in aluminium drum",
12966            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "Composite packaging, glass receptacle in aluminium crate",
12967            Unit::CompositePackagingGlassReceptacleInWoodenBox => "Composite packaging, glass receptacle in wooden box",
12968            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "Composite packaging, glass receptacle in plywood drum",
12969            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "Composite packaging, glass receptacle in wickerwork hamper",
12970            Unit::CompositePackagingGlassReceptacleInFibreDrum => "Composite packaging, glass receptacle in fibre drum",
12971            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "Composite packaging, glass receptacle in fibreboard box ",
12972            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "Composite packaging, glass receptacle in expandable plastic pack",
12973            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "Composite packaging, glass receptacle in solid plastic pack",
12974            Unit::IntermediateBulkContainerPaperMultiWall => "Intermediate bulk container, paper, multi-wall ",
12975            Unit::BagLarge => "Bag, large ",
12976            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "Intermediate bulk container, paper, multi-wall, water resistant",
12977            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "Intermediate bulk container, rigid plastic, with structural equipment, solids",
12978            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "Intermediate bulk container, rigid plastic, freestanding, solids",
12979            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "Intermediate bulk container, rigid plastic, with structural equipment, pressurised",
12980            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "Intermediate bulk container, rigid plastic, freestanding, pressurised",
12981            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "Intermediate bulk container, rigid plastic, with structural equipment, liquids ",
12982            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "Intermediate bulk container, rigid plastic, freestanding, liquids",
12983            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "Intermediate bulk container, composite, rigid plastic, solids",
12984            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "Intermediate bulk container, composite, flexible plastic, solids",
12985            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "Intermediate bulk container, composite, rigid plastic, pressurised ",
12986            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "Intermediate bulk container, composite, flexible plastic, pressurised",
12987            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "Intermediate bulk container, composite, rigid plastic, liquids",
12988            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "Intermediate bulk container, composite, flexible plastic, liquids ",
12989            Unit::IntermediateBulkContainerComposite => "Intermediate bulk container, composite",
12990            Unit::IntermediateBulkContainerFibreboard => "Intermediate bulk container, fibreboard",
12991            Unit::IntermediateBulkContainerFlexible => "Intermediate bulk container, flexible",
12992            Unit::IntermediateBulkContainerMetalOtherThanSteel => "Intermediate bulk container, metal, other than steel",
12993            Unit::IntermediateBulkContainerNaturalWood => "Intermediate bulk container, natural wood",
12994            Unit::IntermediateBulkContainerPlywood => "Intermediate bulk container, plywood",
12995            Unit::IntermediateBulkContainerReconstitutedWood => "Intermediate bulk container, reconstituted wood",
12996            Unit::MutuallyDefined_Dup => "Mutually defined ",
12997        }
12998    }
12999}
13000
13001impl crate::FromCode for Unit {
13002    fn from_code(code: &str) -> Option<Self>
13003    where
13004        Self: Sized,
13005    {
13006        match code {
13007            "10" => Some(Unit::Group),
13008            "11" => Some(Unit::Outfit),
13009            "13" => Some(Unit::Ration),
13010            "14" => Some(Unit::Shot),
13011            "15" => Some(Unit::StickMilitary),
13012            "20" => Some(Unit::TwentyFootContainer),
13013            "21" => Some(Unit::FortyFootContainer),
13014            "22" => Some(Unit::DecilitrePerGram),
13015            "23" => Some(Unit::GramPerCubicCentimetre),
13016            "24" => Some(Unit::TheoreticalPound),
13017            "25" => Some(Unit::GramPerSquareCentimetre),
13018            "27" => Some(Unit::TheoreticalTon),
13019            "28" => Some(Unit::KilogramPerSquareMetre),
13020            "33" => Some(Unit::KilopascalSquareMetrePerGram),
13021            "34" => Some(Unit::KilopascalPerMillimetre),
13022            "35" => Some(Unit::MillilitrePerSquareCentimetreSecond),
13023            "37" => Some(Unit::OuncePerSquareFoot),
13024            "38" => Some(Unit::OuncePerSquareFootPer001inch),
13025            "40" => Some(Unit::MillilitrePerSecond),
13026            "41" => Some(Unit::MillilitrePerMinute),
13027            "56" => Some(Unit::Sitas),
13028            "57" => Some(Unit::Mesh),
13029            "58" => Some(Unit::NetKilogram),
13030            "59" => Some(Unit::PartPerMillion),
13031            "60" => Some(Unit::PercentWeight),
13032            "61" => Some(Unit::PartPerBillionUs),
13033            "74" => Some(Unit::Millipascal),
13034            "77" => Some(Unit::MilliInch),
13035            "80" => Some(Unit::PoundPerSquareInchAbsolute),
13036            "81" => Some(Unit::Henry),
13037            "85" => Some(Unit::FootPoundForce),
13038            "87" => Some(Unit::PoundPerCubicFoot),
13039            "89" => Some(Unit::Poise),
13040            "91" => Some(Unit::Stokes),
13041            "1I" => Some(Unit::FixedRate),
13042            "2A" => Some(Unit::RadianPerSecond),
13043            "2B" => Some(Unit::RadianPerSecondSquared),
13044            "2C" => Some(Unit::Roentgen),
13045            "2G" => Some(Unit::VoltAc),
13046            "2H" => Some(Unit::VoltDc),
13047            "2I" => Some(Unit::BritishThermalUnitInternationalTablePerHour),
13048            "2J" => Some(Unit::CubicCentimetrePerSecond),
13049            "2K" => Some(Unit::CubicFootPerHour),
13050            "2L" => Some(Unit::CubicFootPerMinute),
13051            "2M" => Some(Unit::CentimetrePerSecond),
13052            "2N" => Some(Unit::Decibel),
13053            "2P" => Some(Unit::Kilobyte),
13054            "2Q" => Some(Unit::Kilobecquerel),
13055            "2R" => Some(Unit::Kilocurie),
13056            "2U" => Some(Unit::Megagram),
13057            "2X" => Some(Unit::MetrePerMinute),
13058            "2Y" => Some(Unit::Milliroentgen),
13059            "2Z" => Some(Unit::Millivolt),
13060            "3B" => Some(Unit::Megajoule),
13061            "3C" => Some(Unit::Manmonth),
13062            "4C" => Some(Unit::Centistokes),
13063            "4G" => Some(Unit::Microlitre),
13064            "4H" => Some(Unit::MicrometreMicron),
13065            "4K" => Some(Unit::Milliampere),
13066            "4L" => Some(Unit::Megabyte),
13067            "4M" => Some(Unit::MilligramPerHour),
13068            "4N" => Some(Unit::Megabecquerel),
13069            "4O" => Some(Unit::Microfarad),
13070            "4P" => Some(Unit::NewtonPerMetre),
13071            "4Q" => Some(Unit::OunceInch),
13072            "4R" => Some(Unit::OunceFoot),
13073            "4T" => Some(Unit::Picofarad),
13074            "4U" => Some(Unit::PoundPerHour),
13075            "4W" => Some(Unit::TonUsPerHour),
13076            "4X" => Some(Unit::KilolitrePerHour),
13077            "5A" => Some(Unit::BarrelUsPerMinute),
13078            "5B" => Some(Unit::Batch),
13079            "5E" => Some(Unit::MmscfDay),
13080            "5J" => Some(Unit::HydraulicHorsePower),
13081            "A10" => Some(Unit::AmpereSquareMetrePerJouleSecond),
13082            "A11" => Some(Unit::Angstrom),
13083            "A12" => Some(Unit::AstronomicalUnit),
13084            "A13" => Some(Unit::Attojoule),
13085            "A14" => Some(Unit::Barn),
13086            "A15" => Some(Unit::BarnPerElectronvolt),
13087            "A16" => Some(Unit::BarnPerSteradianElectronvolt),
13088            "A17" => Some(Unit::BarnPerSteradian),
13089            "A18" => Some(Unit::BecquerelPerKilogram),
13090            "A19" => Some(Unit::BecquerelPerCubicMetre),
13091            "A2" => Some(Unit::AmperePerCentimetre),
13092            "A20" => {
13093                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine)
13094            }
13095            "A21" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine),
13096            "A22" => Some(Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine),
13097            "A23" => Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine),
13098            "A24" => Some(Unit::CandelaPerSquareMetre),
13099            "A26" => Some(Unit::CoulombMetre),
13100            "A27" => Some(Unit::CoulombMetreSquaredPerVolt),
13101            "A28" => Some(Unit::CoulombPerCubicCentimetre),
13102            "A29" => Some(Unit::CoulombPerCubicMetre),
13103            "A3" => Some(Unit::AmperePerMillimetre),
13104            "A30" => Some(Unit::CoulombPerCubicMillimetre),
13105            "A31" => Some(Unit::CoulombPerKilogramSecond),
13106            "A32" => Some(Unit::CoulombPerMole),
13107            "A33" => Some(Unit::CoulombPerSquareCentimetre),
13108            "A34" => Some(Unit::CoulombPerSquareMetre),
13109            "A35" => Some(Unit::CoulombPerSquareMillimetre),
13110            "A36" => Some(Unit::CubicCentimetrePerMole),
13111            "A37" => Some(Unit::CubicDecimetrePerMole),
13112            "A38" => Some(Unit::CubicMetrePerCoulomb),
13113            "A39" => Some(Unit::CubicMetrePerKilogram),
13114            "A4" => Some(Unit::AmperePerSquareCentimetre),
13115            "A40" => Some(Unit::CubicMetrePerMole),
13116            "A41" => Some(Unit::AmperePerSquareMetre),
13117            "A42" => Some(Unit::CuriePerKilogram),
13118            "A43" => Some(Unit::DeadweightTonnage),
13119            "A44" => Some(Unit::Decalitre),
13120            "A45" => Some(Unit::Decametre),
13121            "A47" => Some(Unit::Decitex),
13122            "A48" => Some(Unit::DegreeRankine),
13123            "A49" => Some(Unit::Denier),
13124            "A5" => Some(Unit::AmpereSquareMetre),
13125            "A53" => Some(Unit::Electronvolt),
13126            "A54" => Some(Unit::ElectronvoltPerMetre),
13127            "A55" => Some(Unit::ElectronvoltSquareMetre),
13128            "A56" => Some(Unit::ElectronvoltSquareMetrePerKilogram),
13129            "A59" => Some(Unit::_8PartCloudCover),
13130            "A6" => Some(Unit::AmperePerSquareMetreKelvinSquared),
13131            "A68" => Some(Unit::Exajoule),
13132            "A69" => Some(Unit::FaradPerMetre),
13133            "A7" => Some(Unit::AmperePerSquareMillimetre),
13134            "A70" => Some(Unit::Femtojoule),
13135            "A71" => Some(Unit::Femtometre),
13136            "A73" => Some(Unit::FootPerSecondSquared),
13137            "A74" => Some(Unit::FootPoundForcePerSecond),
13138            "A75" => Some(Unit::FreightTon),
13139            "A76" => Some(Unit::Gal),
13140            "A8" => Some(Unit::AmpereSecond),
13141            "A84" => Some(Unit::GigacoulombPerCubicMetre),
13142            "A85" => Some(Unit::Gigaelectronvolt),
13143            "A86" => Some(Unit::Gigahertz),
13144            "A87" => Some(Unit::Gigaohm),
13145            "A88" => Some(Unit::GigaohmMetre),
13146            "A89" => Some(Unit::Gigapascal),
13147            "A9" => Some(Unit::Rate),
13148            "A90" => Some(Unit::Gigawatt),
13149            "A91" => Some(Unit::Gon),
13150            "A93" => Some(Unit::GramPerCubicMetre),
13151            "A94" => Some(Unit::GramPerMole),
13152            "A95" => Some(Unit::Gray),
13153            "A96" => Some(Unit::GrayPerSecond),
13154            "A97" => Some(Unit::Hectopascal),
13155            "A98" => Some(Unit::HenryPerMetre),
13156            "A99" => Some(Unit::Bit),
13157            "AA" => Some(Unit::Ball),
13158            "AB" => Some(Unit::BulkPack),
13159            "ACR" => Some(Unit::Acre),
13160            "ACT" => Some(Unit::Activity),
13161            "AD" => Some(Unit::Byte),
13162            "AE" => Some(Unit::AmperePerMetre),
13163            "AH" => Some(Unit::AdditionalMinute),
13164            "AI" => Some(Unit::AverageMinutePerCall),
13165            "AK" => Some(Unit::Fathom),
13166            "AL" => Some(Unit::AccessLine),
13167            "AMH" => Some(Unit::AmpereHour),
13168            "AMP" => Some(Unit::Ampere),
13169            "ANN" => Some(Unit::Year),
13170            "APZ" => Some(Unit::TroyOunceOrApothecaryOunce),
13171            "AQ" => Some(Unit::AntiHemophilicFactorAhfUnit),
13172            "AS" => Some(Unit::Assortment),
13173            "ASM" => Some(Unit::AlcoholicStrengthByMass),
13174            "ASU" => Some(Unit::AlcoholicStrengthByVolume),
13175            "ATM" => Some(Unit::StandardAtmosphere),
13176            "AWG" => Some(Unit::AmericanWireGauge),
13177            "AY" => Some(Unit::Assembly),
13178            "AZ" => Some(Unit::BritishThermalUnitInternationalTablePerPound),
13179            "B1" => Some(Unit::BarrelUsPerDay),
13180            "B10" => Some(Unit::BitPerSecond),
13181            "B11" => Some(Unit::JoulePerKilogramKelvin),
13182            "B12" => Some(Unit::JoulePerMetre),
13183            "B13" => Some(Unit::JoulePerSquareMetre),
13184            "B14" => Some(Unit::JoulePerMetreToFourthPower),
13185            "B15" => Some(Unit::JoulePerMole),
13186            "B16" => Some(Unit::JoulePerMoleKelvin),
13187            "B17" => Some(Unit::Credit),
13188            "B18" => Some(Unit::JouleSecond),
13189            "B19" => Some(Unit::Digit),
13190            "B20" => Some(Unit::JouleSquareMetrePerKilogram),
13191            "B21" => Some(Unit::KelvinPerWatt),
13192            "B22" => Some(Unit::Kiloampere),
13193            "B23" => Some(Unit::KiloamperePerSquareMetre),
13194            "B24" => Some(Unit::KiloamperePerMetre),
13195            "B25" => Some(Unit::KilobecquerelPerKilogram),
13196            "B26" => Some(Unit::Kilocoulomb),
13197            "B27" => Some(Unit::KilocoulombPerCubicMetre),
13198            "B28" => Some(Unit::KilocoulombPerSquareMetre),
13199            "B29" => Some(Unit::Kiloelectronvolt),
13200            "B3" => Some(Unit::BattingPound),
13201            "B30" => Some(Unit::Gibibit),
13202            "B31" => Some(Unit::KilogramMetrePerSecond),
13203            "B32" => Some(Unit::KilogramMetreSquared),
13204            "B33" => Some(Unit::KilogramMetreSquaredPerSecond),
13205            "B34" => Some(Unit::KilogramPerCubicDecimetre),
13206            "B35" => Some(Unit::KilogramPerLitre),
13207            "B4" => Some(Unit::BarrelImperial),
13208            "B41" => Some(Unit::KilojoulePerKelvin),
13209            "B42" => Some(Unit::KilojoulePerKilogram),
13210            "B43" => Some(Unit::KilojoulePerKilogramKelvin),
13211            "B44" => Some(Unit::KilojoulePerMole),
13212            "B45" => Some(Unit::Kilomole),
13213            "B46" => Some(Unit::KilomolePerCubicMetre),
13214            "B47" => Some(Unit::Kilonewton),
13215            "B48" => Some(Unit::KilonewtonMetre),
13216            "B49" => Some(Unit::Kiloohm),
13217            "B50" => Some(Unit::KiloohmMetre),
13218            "B52" => Some(Unit::Kilosecond),
13219            "B53" => Some(Unit::Kilosiemens),
13220            "B54" => Some(Unit::KilosiemensPerMetre),
13221            "B55" => Some(Unit::KilovoltPerMetre),
13222            "B56" => Some(Unit::KiloweberPerMetre),
13223            "B57" => Some(Unit::LightYear),
13224            "B58" => Some(Unit::LitrePerMole),
13225            "B59" => Some(Unit::LumenHour),
13226            "B60" => Some(Unit::LumenPerSquareMetre),
13227            "B61" => Some(Unit::LumenPerWatt),
13228            "B62" => Some(Unit::LumenSecond),
13229            "B63" => Some(Unit::LuxHour),
13230            "B64" => Some(Unit::LuxSecond),
13231            "B66" => Some(Unit::MegaamperePerSquareMetre),
13232            "B67" => Some(Unit::MegabecquerelPerKilogram),
13233            "B68" => Some(Unit::Gigabit),
13234            "B69" => Some(Unit::MegacoulombPerCubicMetre),
13235            "B7" => Some(Unit::Cycle),
13236            "B70" => Some(Unit::MegacoulombPerSquareMetre),
13237            "B71" => Some(Unit::Megaelectronvolt),
13238            "B72" => Some(Unit::MegagramPerCubicMetre),
13239            "B73" => Some(Unit::Meganewton),
13240            "B74" => Some(Unit::MeganewtonMetre),
13241            "B75" => Some(Unit::Megaohm),
13242            "B76" => Some(Unit::MegaohmMetre),
13243            "B77" => Some(Unit::MegasiemensPerMetre),
13244            "B78" => Some(Unit::Megavolt),
13245            "B79" => Some(Unit::MegavoltPerMetre),
13246            "B8" => Some(Unit::JoulePerCubicMetre),
13247            "B80" => Some(Unit::GigabitPerSecond),
13248            "B81" => Some(Unit::ReciprocalMetreSquaredReciprocalSecond),
13249            "B82" => Some(Unit::InchPerLinearFoot),
13250            "B83" => Some(Unit::MetreToFourthPower),
13251            "B84" => Some(Unit::Microampere),
13252            "B85" => Some(Unit::Microbar),
13253            "B86" => Some(Unit::Microcoulomb),
13254            "B87" => Some(Unit::MicrocoulombPerCubicMetre),
13255            "B88" => Some(Unit::MicrocoulombPerSquareMetre),
13256            "B89" => Some(Unit::MicrofaradPerMetre),
13257            "B90" => Some(Unit::Microhenry),
13258            "B91" => Some(Unit::MicrohenryPerMetre),
13259            "B92" => Some(Unit::Micronewton),
13260            "B93" => Some(Unit::MicronewtonMetre),
13261            "B94" => Some(Unit::Microohm),
13262            "B95" => Some(Unit::MicroohmMetre),
13263            "B96" => Some(Unit::Micropascal),
13264            "B97" => Some(Unit::Microradian),
13265            "B98" => Some(Unit::Microsecond),
13266            "B99" => Some(Unit::Microsiemens),
13267            "BAR" => Some(Unit::BarUnitPressure),
13268            "BB" => Some(Unit::BaseBox),
13269            "BFT" => Some(Unit::BoardFoot),
13270            "BHP" => Some(Unit::BrakeHorsePower),
13271            "BIL" => Some(Unit::BillionEur),
13272            "BLD" => Some(Unit::DryBarrelUs),
13273            "BLL" => Some(Unit::BarrelUs),
13274            "BP" => Some(Unit::HundredBoardFoot),
13275            "BPM" => Some(Unit::BeatsPerMinute),
13276            "BQL" => Some(Unit::Becquerel),
13277            "BTU" => Some(Unit::BritishThermalUnitInternationalTable),
13278            "BUA" => Some(Unit::BushelUs),
13279            "BUI" => Some(Unit::BushelUk),
13280            "C0" => Some(Unit::Call),
13281            "C10" => Some(Unit::Millifarad),
13282            "C11" => Some(Unit::Milligal),
13283            "C12" => Some(Unit::MilligramPerMetre),
13284            "C13" => Some(Unit::Milligray),
13285            "C14" => Some(Unit::Millihenry),
13286            "C15" => Some(Unit::Millijoule),
13287            "C16" => Some(Unit::MillimetrePerSecond),
13288            "C17" => Some(Unit::MillimetreSquaredPerSecond),
13289            "C18" => Some(Unit::Millimole),
13290            "C19" => Some(Unit::MolePerKilogram),
13291            "C20" => Some(Unit::Millinewton),
13292            "C21" => Some(Unit::Kibibit),
13293            "C22" => Some(Unit::MillinewtonPerMetre),
13294            "C23" => Some(Unit::MilliohmMetre),
13295            "C24" => Some(Unit::MillipascalSecond),
13296            "C25" => Some(Unit::Milliradian),
13297            "C26" => Some(Unit::Millisecond),
13298            "C27" => Some(Unit::Millisiemens),
13299            "C28" => Some(Unit::Millisievert),
13300            "C29" => Some(Unit::Millitesla),
13301            "C3" => Some(Unit::MicrovoltPerMetre),
13302            "C30" => Some(Unit::MillivoltPerMetre),
13303            "C31" => Some(Unit::Milliwatt),
13304            "C32" => Some(Unit::MilliwattPerSquareMetre),
13305            "C33" => Some(Unit::Milliweber),
13306            "C34" => Some(Unit::Mole),
13307            "C35" => Some(Unit::MolePerCubicDecimetre),
13308            "C36" => Some(Unit::MolePerCubicMetre),
13309            "C37" => Some(Unit::Kilobit),
13310            "C38" => Some(Unit::MolePerLitre),
13311            "C39" => Some(Unit::Nanoampere),
13312            "C40" => Some(Unit::Nanocoulomb),
13313            "C41" => Some(Unit::Nanofarad),
13314            "C42" => Some(Unit::NanofaradPerMetre),
13315            "C43" => Some(Unit::Nanohenry),
13316            "C44" => Some(Unit::NanohenryPerMetre),
13317            "C45" => Some(Unit::Nanometre),
13318            "C46" => Some(Unit::NanoohmMetre),
13319            "C47" => Some(Unit::Nanosecond),
13320            "C48" => Some(Unit::Nanotesla),
13321            "C49" => Some(Unit::Nanowatt),
13322            "C50" => Some(Unit::Neper),
13323            "C51" => Some(Unit::NeperPerSecond),
13324            "C52" => Some(Unit::Picometre),
13325            "C53" => Some(Unit::NewtonMetreSecond),
13326            "C54" => Some(Unit::NewtonMetreSquaredPerKilogramSquared),
13327            "C55" => Some(Unit::NewtonPerSquareMetre),
13328            "C56" => Some(Unit::NewtonPerSquareMillimetre),
13329            "C57" => Some(Unit::NewtonSecond),
13330            "C58" => Some(Unit::NewtonSecondPerMetre),
13331            "C59" => Some(Unit::Octave),
13332            "C60" => Some(Unit::OhmCentimetre),
13333            "C61" => Some(Unit::OhmMetre),
13334            "C62" => Some(Unit::One),
13335            "C63" => Some(Unit::Parsec),
13336            "C64" => Some(Unit::PascalPerKelvin),
13337            "C65" => Some(Unit::PascalSecond),
13338            "C66" => Some(Unit::PascalSecondPerCubicMetre),
13339            "C67" => Some(Unit::PascalSecondPerMetre),
13340            "C68" => Some(Unit::Petajoule),
13341            "C69" => Some(Unit::Phon),
13342            "C7" => Some(Unit::Centipoise),
13343            "C70" => Some(Unit::Picoampere),
13344            "C71" => Some(Unit::Picocoulomb),
13345            "C72" => Some(Unit::PicofaradPerMetre),
13346            "C73" => Some(Unit::Picohenry),
13347            "C74" => Some(Unit::KilobitPerSecond),
13348            "C75" => Some(Unit::Picowatt),
13349            "C76" => Some(Unit::PicowattPerSquareMetre),
13350            "C78" => Some(Unit::PoundForce),
13351            "C79" => Some(Unit::KilovoltAmpereHour),
13352            "C8" => Some(Unit::MillicoulombPerKilogram),
13353            "C80" => Some(Unit::Rad),
13354            "C81" => Some(Unit::Radian),
13355            "C82" => Some(Unit::RadianSquareMetrePerMole),
13356            "C83" => Some(Unit::RadianSquareMetrePerKilogram),
13357            "C84" => Some(Unit::RadianPerMetre),
13358            "C85" => Some(Unit::ReciprocalAngstrom),
13359            "C86" => Some(Unit::ReciprocalCubicMetre),
13360            "C87" => Some(Unit::ReciprocalCubicMetrePerSecond),
13361            "C88" => Some(Unit::ReciprocalElectronVoltPerCubicMetre),
13362            "C89" => Some(Unit::ReciprocalHenry),
13363            "C9" => Some(Unit::CoilGroup),
13364            "C90" => Some(Unit::ReciprocalJoulePerCubicMetre),
13365            "C91" => Some(Unit::ReciprocalKelvinOrKelvinToPowerMinusOne),
13366            "C92" => Some(Unit::ReciprocalMetre),
13367            "C93" => Some(Unit::ReciprocalSquareMetre),
13368            "C94" => Some(Unit::ReciprocalMinute),
13369            "C95" => Some(Unit::ReciprocalMole),
13370            "C96" => Some(Unit::ReciprocalPascalOrPascalToPowerMinusOne),
13371            "C97" => Some(Unit::ReciprocalSecond),
13372            "C99" => Some(Unit::ReciprocalSecondPerMetreSquared),
13373            "CCT" => Some(Unit::CarryingCapacityInMetricTon),
13374            "CDL" => Some(Unit::Candela),
13375            "CEL" => Some(Unit::DegreeCelsius),
13376            "CEN" => Some(Unit::Hundred),
13377            "CG" => Some(Unit::Card),
13378            "CGM" => Some(Unit::Centigram),
13379            "CKG" => Some(Unit::CoulombPerKilogram),
13380            "CLF" => Some(Unit::HundredLeave),
13381            "CLT" => Some(Unit::Centilitre),
13382            "CMK" => Some(Unit::SquareCentimetre),
13383            "CMQ" => Some(Unit::CubicCentimetre),
13384            "CMT" => Some(Unit::Centimetre),
13385            "CNP" => Some(Unit::HundredPack),
13386            "CNT" => Some(Unit::CentalUk),
13387            "COU" => Some(Unit::Coulomb),
13388            "CTG" => Some(Unit::ContentGram),
13389            "CTM" => Some(Unit::MetricCarat),
13390            "CTN" => Some(Unit::ContentTonMetric),
13391            "CUR" => Some(Unit::Curie),
13392            "CWA" => Some(Unit::HundredPoundCwtHundredWeightUs),
13393            "CWI" => Some(Unit::HundredWeightUk),
13394            "D03" => Some(Unit::KilowattHourPerHour),
13395            "D04" => Some(Unit::LotUnitWeight),
13396            "D1" => Some(Unit::ReciprocalSecondPerSteradian),
13397            "D10" => Some(Unit::SiemensPerMetre),
13398            "D11" => Some(Unit::Mebibit),
13399            "D12" => Some(Unit::SiemensSquareMetrePerMole),
13400            "D13" => Some(Unit::Sievert),
13401            "D15" => Some(Unit::Sone),
13402            "D16" => Some(Unit::SquareCentimetrePerErg),
13403            "D17" => Some(Unit::SquareCentimetrePerSteradianErg),
13404            "D18" => Some(Unit::MetreKelvin),
13405            "D19" => Some(Unit::SquareMetreKelvinPerWatt),
13406            "D2" => Some(Unit::ReciprocalSecondPerSteradianMetreSquared),
13407            "D20" => Some(Unit::SquareMetrePerJoule),
13408            "D21" => Some(Unit::SquareMetrePerKilogram),
13409            "D22" => Some(Unit::SquareMetrePerMole),
13410            "D23" => Some(Unit::PenGramProtein),
13411            "D24" => Some(Unit::SquareMetrePerSteradian),
13412            "D25" => Some(Unit::SquareMetrePerSteradianJoule),
13413            "D26" => Some(Unit::SquareMetrePerVoltSecond),
13414            "D27" => Some(Unit::Steradian),
13415            "D29" => Some(Unit::Terahertz),
13416            "D30" => Some(Unit::Terajoule),
13417            "D31" => Some(Unit::Terawatt),
13418            "D32" => Some(Unit::TerawattHour),
13419            "D33" => Some(Unit::Tesla),
13420            "D34" => Some(Unit::Tex),
13421            "D36" => Some(Unit::Megabit),
13422            "D41" => Some(Unit::TonnePerCubicMetre),
13423            "D42" => Some(Unit::TropicalYear),
13424            "D43" => Some(Unit::UnifiedAtomicMassUnit),
13425            "D44" => Some(Unit::Var),
13426            "D45" => Some(Unit::VoltSquaredPerKelvinSquared),
13427            "D46" => Some(Unit::VoltAmpere),
13428            "D47" => Some(Unit::VoltPerCentimetre),
13429            "D48" => Some(Unit::VoltPerKelvin),
13430            "D49" => Some(Unit::MillivoltPerKelvin),
13431            "D5" => Some(Unit::KilogramPerSquareCentimetre),
13432            "D50" => Some(Unit::VoltPerMetre),
13433            "D51" => Some(Unit::VoltPerMillimetre),
13434            "D52" => Some(Unit::WattPerKelvin),
13435            "D53" => Some(Unit::WattPerMetreKelvin),
13436            "D54" => Some(Unit::WattPerSquareMetre),
13437            "D55" => Some(Unit::WattPerSquareMetreKelvin),
13438            "D56" => Some(Unit::WattPerSquareMetreKelvinToFourthPower),
13439            "D57" => Some(Unit::WattPerSteradian),
13440            "D58" => Some(Unit::WattPerSteradianSquareMetre),
13441            "D59" => Some(Unit::WeberPerMetre),
13442            "D6" => Some(Unit::RoentgenPerSecond),
13443            "D60" => Some(Unit::WeberPerMillimetre),
13444            "D61" => Some(Unit::MinuteUnitAngle),
13445            "D62" => Some(Unit::SecondUnitAngle),
13446            "D63" => Some(Unit::Book),
13447            "D65" => Some(Unit::Round),
13448            "D68" => Some(Unit::NumberWords),
13449            "D69" => Some(Unit::InchToFourthPower),
13450            "D73" => Some(Unit::JouleSquareMetre),
13451            "D74" => Some(Unit::KilogramPerMole),
13452            "D77" => Some(Unit::Megacoulomb),
13453            "D78" => Some(Unit::MegajoulePerSecond),
13454            "D80" => Some(Unit::Microwatt),
13455            "D81" => Some(Unit::Microtesla),
13456            "D82" => Some(Unit::Microvolt),
13457            "D83" => Some(Unit::MillinewtonMetre),
13458            "D85" => Some(Unit::MicrowattPerSquareMetre),
13459            "D86" => Some(Unit::Millicoulomb),
13460            "D87" => Some(Unit::MillimolePerKilogram),
13461            "D88" => Some(Unit::MillicoulombPerCubicMetre),
13462            "D89" => Some(Unit::MillicoulombPerSquareMetre),
13463            "D91" => Some(Unit::Rem),
13464            "D93" => Some(Unit::SecondPerCubicMetre),
13465            "D94" => Some(Unit::SecondPerCubicMetreRadian),
13466            "D95" => Some(Unit::JoulePerGram),
13467            "DAA" => Some(Unit::Decare),
13468            "DAD" => Some(Unit::TenDay),
13469            "DAY" => Some(Unit::Day),
13470            "DB" => Some(Unit::DryPound),
13471            "DBM" => Some(Unit::DecibelMilliwatts),
13472            "DBW" => Some(Unit::DecibelWatt),
13473            "DD" => Some(Unit::DegreeUnitAngle),
13474            "DEC" => Some(Unit::Decade),
13475            "DG" => Some(Unit::Decigram),
13476            "DJ" => Some(Unit::Decagram),
13477            "DLT" => Some(Unit::Decilitre),
13478            "DMA" => Some(Unit::CubicDecametre),
13479            "DMK" => Some(Unit::SquareDecimetre),
13480            "DMO" => Some(Unit::StandardKilolitre),
13481            "DMQ" => Some(Unit::CubicDecimetre),
13482            "DMT" => Some(Unit::Decimetre),
13483            "DN" => Some(Unit::DecinewtonMetre),
13484            "DPC" => Some(Unit::DozenPiece),
13485            "DPR" => Some(Unit::DozenPair),
13486            "DPT" => Some(Unit::DisplacementTonnage),
13487            "DRA" => Some(Unit::DramUs),
13488            "DRI" => Some(Unit::DramUk),
13489            "DRL" => Some(Unit::DozenRoll),
13490            "DT" => Some(Unit::DryTon),
13491            "DTN" => Some(Unit::Decitonne),
13492            "DWT" => Some(Unit::Pennyweight),
13493            "DZN" => Some(Unit::Dozen),
13494            "DZP" => Some(Unit::DozenPack),
13495            "E01" => Some(Unit::NewtonPerSquareCentimetre),
13496            "E07" => Some(Unit::MegawattHourPerHour),
13497            "E08" => Some(Unit::MegawattPerHertz),
13498            "E09" => Some(Unit::MilliampereHour),
13499            "E10" => Some(Unit::DegreeDay),
13500            "E12" => Some(Unit::Mille),
13501            "E14" => Some(Unit::KilocalorieInternationalTable),
13502            "E15" => Some(Unit::KilocalorieThermochemicalPerHour),
13503            "E16" => Some(Unit::MillionBtuItPerHour),
13504            "E17" => Some(Unit::CubicFootPerSecond),
13505            "E18" => Some(Unit::TonnePerHour),
13506            "E19" => Some(Unit::Ping),
13507            "E20" => Some(Unit::MegabitPerSecond),
13508            "E21" => Some(Unit::Shares),
13509            "E22" => Some(Unit::Teu),
13510            "E23" => Some(Unit::Tyre),
13511            "E25" => Some(Unit::ActiveUnit),
13512            "E27" => Some(Unit::Dose),
13513            "E28" => Some(Unit::AirDryTon),
13514            "E30" => Some(Unit::Strand),
13515            "E31" => Some(Unit::SquareMetrePerLitre),
13516            "E32" => Some(Unit::LitrePerHour),
13517            "E33" => Some(Unit::FootPerThousand),
13518            "E34" => Some(Unit::Gigabyte),
13519            "E35" => Some(Unit::Terabyte),
13520            "E36" => Some(Unit::Petabyte),
13521            "E37" => Some(Unit::Pixel),
13522            "E38" => Some(Unit::Megapixel),
13523            "E39" => Some(Unit::DotsPerInch),
13524            "E4" => Some(Unit::GrossKilogram),
13525            "E40" => Some(Unit::PartPerHundredThousand),
13526            "E41" => Some(Unit::KilogramForcePerSquareMillimetre),
13527            "E42" => Some(Unit::KilogramForcePerSquareCentimetre),
13528            "E43" => Some(Unit::JoulePerSquareCentimetre),
13529            "E44" => Some(Unit::KilogramForceMetrePerSquareCentimetre),
13530            "E45" => Some(Unit::Milliohm),
13531            "E46" => Some(Unit::KilowattHourPerCubicMetre),
13532            "E47" => Some(Unit::KilowattHourPerKelvin),
13533            "E48" => Some(Unit::ServiceUnit),
13534            "E49" => Some(Unit::WorkingDay),
13535            "E50" => Some(Unit::AccountingUnit),
13536            "E51" => Some(Unit::Job),
13537            "E52" => Some(Unit::RunFoot),
13538            "E53" => Some(Unit::Test),
13539            "E54" => Some(Unit::Trip),
13540            "E55" => Some(Unit::Use),
13541            "E56" => Some(Unit::Well),
13542            "E57" => Some(Unit::Zone),
13543            "E58" => Some(Unit::ExabitPerSecond),
13544            "E59" => Some(Unit::Exbibyte),
13545            "E60" => Some(Unit::Pebibyte),
13546            "E61" => Some(Unit::Tebibyte),
13547            "E62" => Some(Unit::Gibibyte),
13548            "E63" => Some(Unit::Mebibyte),
13549            "E64" => Some(Unit::Kibibyte),
13550            "E65" => Some(Unit::ExbibitPerMetre),
13551            "E66" => Some(Unit::ExbibitPerSquareMetre),
13552            "E67" => Some(Unit::ExbibitPerCubicMetre),
13553            "E68" => Some(Unit::GigabytePerSecond),
13554            "E69" => Some(Unit::GibibitPerMetre),
13555            "E70" => Some(Unit::GibibitPerSquareMetre),
13556            "E71" => Some(Unit::GibibitPerCubicMetre),
13557            "E72" => Some(Unit::KibibitPerMetre),
13558            "E73" => Some(Unit::KibibitPerSquareMetre),
13559            "E74" => Some(Unit::KibibitPerCubicMetre),
13560            "E75" => Some(Unit::MebibitPerMetre),
13561            "E76" => Some(Unit::MebibitPerSquareMetre),
13562            "E77" => Some(Unit::MebibitPerCubicMetre),
13563            "E78" => Some(Unit::Petabit),
13564            "E79" => Some(Unit::PetabitPerSecond),
13565            "E80" => Some(Unit::PebibitPerMetre),
13566            "E81" => Some(Unit::PebibitPerSquareMetre),
13567            "E82" => Some(Unit::PebibitPerCubicMetre),
13568            "E83" => Some(Unit::Terabit),
13569            "E84" => Some(Unit::TerabitPerSecond),
13570            "E85" => Some(Unit::TebibitPerMetre),
13571            "E86" => Some(Unit::TebibitPerCubicMetre),
13572            "E87" => Some(Unit::TebibitPerSquareMetre),
13573            "E88" => Some(Unit::BitPerMetre),
13574            "E89" => Some(Unit::BitPerSquareMetre),
13575            "E90" => Some(Unit::ReciprocalCentimetre),
13576            "E91" => Some(Unit::ReciprocalDay),
13577            "E92" => Some(Unit::CubicDecimetrePerHour),
13578            "E93" => Some(Unit::KilogramPerHour),
13579            "E94" => Some(Unit::KilomolePerSecond),
13580            "E95" => Some(Unit::MolePerSecond),
13581            "E96" => Some(Unit::DegreePerSecond),
13582            "E97" => Some(Unit::MillimetrePerDegreeCelciusMetre),
13583            "E98" => Some(Unit::DegreeCelsiusPerKelvin),
13584            "E99" => Some(Unit::HectopascalPerBar),
13585            "EA" => Some(Unit::Each),
13586            "EB" => Some(Unit::ElectronicMailBox),
13587            "EQ" => Some(Unit::EquivalentGallon),
13588            "F01" => Some(Unit::BitPerCubicMetre),
13589            "F02" => Some(Unit::KelvinPerKelvin),
13590            "F03" => Some(Unit::KilopascalPerBar),
13591            "F04" => Some(Unit::MillibarPerBar),
13592            "F05" => Some(Unit::MegapascalPerBar),
13593            "F06" => Some(Unit::PoisePerBar),
13594            "F07" => Some(Unit::PascalPerBar),
13595            "F08" => Some(Unit::MilliamperePerInch),
13596            "F10" => Some(Unit::KelvinPerHour),
13597            "F11" => Some(Unit::KelvinPerMinute),
13598            "F12" => Some(Unit::KelvinPerSecond),
13599            "F13" => Some(Unit::Slug),
13600            "F14" => Some(Unit::GramPerKelvin),
13601            "F15" => Some(Unit::KilogramPerKelvin),
13602            "F16" => Some(Unit::MilligramPerKelvin),
13603            "F17" => Some(Unit::PoundForcePerFoot),
13604            "F18" => Some(Unit::KilogramSquareCentimetre),
13605            "F19" => Some(Unit::KilogramSquareMillimetre),
13606            "F20" => Some(Unit::PoundInchSquared),
13607            "F21" => Some(Unit::PoundForceInch),
13608            "F22" => Some(Unit::PoundForceFootPerAmpere),
13609            "F23" => Some(Unit::GramPerCubicDecimetre),
13610            "F24" => Some(Unit::KilogramPerKilomol),
13611            "F25" => Some(Unit::GramPerHertz),
13612            "F26" => Some(Unit::GramPerDay),
13613            "F27" => Some(Unit::GramPerHour),
13614            "F28" => Some(Unit::GramPerMinute),
13615            "F29" => Some(Unit::GramPerSecond),
13616            "F30" => Some(Unit::KilogramPerDay),
13617            "F31" => Some(Unit::KilogramPerMinute),
13618            "F32" => Some(Unit::MilligramPerDay),
13619            "F33" => Some(Unit::MilligramPerMinute),
13620            "F34" => Some(Unit::MilligramPerSecond),
13621            "F35" => Some(Unit::GramPerDayKelvin),
13622            "F36" => Some(Unit::GramPerHourKelvin),
13623            "F37" => Some(Unit::GramPerMinuteKelvin),
13624            "F38" => Some(Unit::GramPerSecondKelvin),
13625            "F39" => Some(Unit::KilogramPerDayKelvin),
13626            "F40" => Some(Unit::KilogramPerHourKelvin),
13627            "F41" => Some(Unit::KilogramPerMinuteKelvin),
13628            "F42" => Some(Unit::KilogramPerSecondKelvin),
13629            "F43" => Some(Unit::MilligramPerDayKelvin),
13630            "F44" => Some(Unit::MilligramPerHourKelvin),
13631            "F45" => Some(Unit::MilligramPerMinuteKelvin),
13632            "F46" => Some(Unit::MilligramPerSecondKelvin),
13633            "F47" => Some(Unit::NewtonPerMillimetre),
13634            "F48" => Some(Unit::PoundForcePerInch),
13635            "F49" => Some(Unit::RodUnitDistance),
13636            "F50" => Some(Unit::MicrometrePerKelvin),
13637            "F51" => Some(Unit::CentimetrePerKelvin),
13638            "F52" => Some(Unit::MetrePerKelvin),
13639            "F53" => Some(Unit::MillimetrePerKelvin),
13640            "F54" => Some(Unit::MilliohmPerMetre),
13641            "F55" => Some(Unit::OhmPerMileStatuteMile),
13642            "F56" => Some(Unit::OhmPerKilometre),
13643            "F57" => Some(Unit::MilliamperePerPoundForcePerSquareInch),
13644            "F58" => Some(Unit::ReciprocalBar),
13645            "F59" => Some(Unit::MilliamperePerBar),
13646            "F60" => Some(Unit::DegreeCelsiusPerBar),
13647            "F61" => Some(Unit::KelvinPerBar),
13648            "F62" => Some(Unit::GramPerDayBar),
13649            "F63" => Some(Unit::GramPerHourBar),
13650            "F64" => Some(Unit::GramPerMinuteBar),
13651            "F65" => Some(Unit::GramPerSecondBar),
13652            "F66" => Some(Unit::KilogramPerDayBar),
13653            "F67" => Some(Unit::KilogramPerHourBar),
13654            "F68" => Some(Unit::KilogramPerMinuteBar),
13655            "F69" => Some(Unit::KilogramPerSecondBar),
13656            "F70" => Some(Unit::MilligramPerDayBar),
13657            "F71" => Some(Unit::MilligramPerHourBar),
13658            "F72" => Some(Unit::MilligramPerMinuteBar),
13659            "F73" => Some(Unit::MilligramPerSecondBar),
13660            "F74" => Some(Unit::GramPerBar),
13661            "F75" => Some(Unit::MilligramPerBar),
13662            "F76" => Some(Unit::MilliamperePerMillimetre),
13663            "F77" => Some(Unit::PascalSecondPerKelvin),
13664            "F78" => Some(Unit::InchWater),
13665            "F79" => Some(Unit::InchMercury),
13666            "F80" => Some(Unit::WaterHorsePower),
13667            "F81" => Some(Unit::BarPerKelvin),
13668            "F82" => Some(Unit::HectopascalPerKelvin),
13669            "F83" => Some(Unit::KilopascalPerKelvin),
13670            "F84" => Some(Unit::MillibarPerKelvin),
13671            "F85" => Some(Unit::MegapascalPerKelvin),
13672            "F86" => Some(Unit::PoisePerKelvin),
13673            "F87" => Some(Unit::VoltPerLitreMinute),
13674            "F88" => Some(Unit::NewtonCentimetre),
13675            "F89" => Some(Unit::NewtonMetrePerDegree),
13676            "F90" => Some(Unit::NewtonMetrePerAmpere),
13677            "F91" => Some(Unit::BarLitrePerSecond),
13678            "F92" => Some(Unit::BarCubicMetrePerSecond),
13679            "F93" => Some(Unit::HectopascalLitrePerSecond),
13680            "F94" => Some(Unit::HectopascalCubicMetrePerSecond),
13681            "F95" => Some(Unit::MillibarLitrePerSecond),
13682            "F96" => Some(Unit::MillibarCubicMetrePerSecond),
13683            "F97" => Some(Unit::MegapascalLitrePerSecond),
13684            "F98" => Some(Unit::MegapascalCubicMetrePerSecond),
13685            "F99" => Some(Unit::PascalLitrePerSecond),
13686            "FAH" => Some(Unit::DegreeFahrenheit),
13687            "FAR" => Some(Unit::Farad),
13688            "FBM" => Some(Unit::FibreMetre),
13689            "FC" => Some(Unit::ThousandCubicFoot),
13690            "FF" => Some(Unit::HundredCubicMetre),
13691            "FH" => Some(Unit::Micromole),
13692            "FIT" => Some(Unit::FailuresInTime),
13693            "FL" => Some(Unit::FlakeTon),
13694            "FNU" => Some(Unit::FormazinNephelometricUnit),
13695            "FOT" => Some(Unit::Foot),
13696            "FP" => Some(Unit::PoundPerSquareFoot),
13697            "FR" => Some(Unit::FootPerMinute),
13698            "FS" => Some(Unit::FootPerSecond),
13699            "FTK" => Some(Unit::SquareFoot),
13700            "FTQ" => Some(Unit::CubicFoot),
13701            "G01" => Some(Unit::PascalCubicMetrePerSecond),
13702            "G04" => Some(Unit::CentimetrePerBar),
13703            "G05" => Some(Unit::MetrePerBar),
13704            "G06" => Some(Unit::MillimetrePerBar),
13705            "G08" => Some(Unit::SquareInchPerSecond),
13706            "G09" => Some(Unit::SquareMetrePerSecondKelvin),
13707            "G10" => Some(Unit::StokesPerKelvin),
13708            "G11" => Some(Unit::GramPerCubicCentimetreBar),
13709            "G12" => Some(Unit::GramPerCubicDecimetreBar),
13710            "G13" => Some(Unit::GramPerLitreBar),
13711            "G14" => Some(Unit::GramPerCubicMetreBar),
13712            "G15" => Some(Unit::GramPerMillilitreBar),
13713            "G16" => Some(Unit::KilogramPerCubicCentimetreBar),
13714            "G17" => Some(Unit::KilogramPerLitreBar),
13715            "G18" => Some(Unit::KilogramPerCubicMetreBar),
13716            "G19" => Some(Unit::NewtonMetrePerKilogram),
13717            "G2" => Some(Unit::UsGallonPerMinute),
13718            "G20" => Some(Unit::PoundForceFootPerPound),
13719            "G21" => Some(Unit::CupUnitVolume),
13720            "G23" => Some(Unit::Peck),
13721            "G24" => Some(Unit::TablespoonUs),
13722            "G25" => Some(Unit::TeaspoonUs),
13723            "G26" => Some(Unit::Stere),
13724            "G27" => Some(Unit::CubicCentimetrePerKelvin),
13725            "G28" => Some(Unit::LitrePerKelvin),
13726            "G29" => Some(Unit::CubicMetrePerKelvin),
13727            "G3" => Some(Unit::ImperialGallonPerMinute),
13728            "G30" => Some(Unit::MillilitrePerKelvin),
13729            "G31" => Some(Unit::KilogramPerCubicCentimetre),
13730            "G32" => Some(Unit::OunceAvoirdupoisPerCubicYard),
13731            "G33" => Some(Unit::GramPerCubicCentimetreKelvin),
13732            "G34" => Some(Unit::GramPerCubicDecimetreKelvin),
13733            "G35" => Some(Unit::GramPerLitreKelvin),
13734            "G36" => Some(Unit::GramPerCubicMetreKelvin),
13735            "G37" => Some(Unit::GramPerMillilitreKelvin),
13736            "G38" => Some(Unit::KilogramPerCubicCentimetreKelvin),
13737            "G39" => Some(Unit::KilogramPerLitreKelvin),
13738            "G40" => Some(Unit::KilogramPerCubicMetreKelvin),
13739            "G41" => Some(Unit::SquareMetrePerSecondBar),
13740            "G42" => Some(Unit::MicrosiemensPerCentimetre),
13741            "G43" => Some(Unit::MicrosiemensPerMetre),
13742            "G44" => Some(Unit::NanosiemensPerCentimetre),
13743            "G45" => Some(Unit::NanosiemensPerMetre),
13744            "G46" => Some(Unit::StokesPerBar),
13745            "G47" => Some(Unit::CubicCentimetrePerDay),
13746            "G48" => Some(Unit::CubicCentimetrePerHour),
13747            "G49" => Some(Unit::CubicCentimetrePerMinute),
13748            "G50" => Some(Unit::GallonUsPerHour),
13749            "G51" => Some(Unit::LitrePerSecond),
13750            "G52" => Some(Unit::CubicMetrePerDay),
13751            "G53" => Some(Unit::CubicMetrePerMinute),
13752            "G54" => Some(Unit::MillilitrePerDay),
13753            "G55" => Some(Unit::MillilitrePerHour),
13754            "G56" => Some(Unit::CubicInchPerHour),
13755            "G57" => Some(Unit::CubicInchPerMinute),
13756            "G58" => Some(Unit::CubicInchPerSecond),
13757            "G59" => Some(Unit::MilliamperePerLitreMinute),
13758            "G60" => Some(Unit::VoltPerBar),
13759            "G61" => Some(Unit::CubicCentimetrePerDayKelvin),
13760            "G62" => Some(Unit::CubicCentimetrePerHourKelvin),
13761            "G63" => Some(Unit::CubicCentimetrePerMinuteKelvin),
13762            "G64" => Some(Unit::CubicCentimetrePerSecondKelvin),
13763            "G65" => Some(Unit::LitrePerDayKelvin),
13764            "G66" => Some(Unit::LitrePerHourKelvin),
13765            "G67" => Some(Unit::LitrePerMinuteKelvin),
13766            "G68" => Some(Unit::LitrePerSecondKelvin),
13767            "G69" => Some(Unit::CubicMetrePerDayKelvin),
13768            "G70" => Some(Unit::CubicMetrePerHourKelvin),
13769            "G71" => Some(Unit::CubicMetrePerMinuteKelvin),
13770            "G72" => Some(Unit::CubicMetrePerSecondKelvin),
13771            "G73" => Some(Unit::MillilitrePerDayKelvin),
13772            "G74" => Some(Unit::MillilitrePerHourKelvin),
13773            "G75" => Some(Unit::MillilitrePerMinuteKelvin),
13774            "G76" => Some(Unit::MillilitrePerSecondKelvin),
13775            "G77" => Some(Unit::MillimetreToFourthPower),
13776            "G78" => Some(Unit::CubicCentimetrePerDayBar),
13777            "G79" => Some(Unit::CubicCentimetrePerHourBar),
13778            "G80" => Some(Unit::CubicCentimetrePerMinuteBar),
13779            "G81" => Some(Unit::CubicCentimetrePerSecondBar),
13780            "G82" => Some(Unit::LitrePerDayBar),
13781            "G83" => Some(Unit::LitrePerHourBar),
13782            "G84" => Some(Unit::LitrePerMinuteBar),
13783            "G85" => Some(Unit::LitrePerSecondBar),
13784            "G86" => Some(Unit::CubicMetrePerDayBar),
13785            "G87" => Some(Unit::CubicMetrePerHourBar),
13786            "G88" => Some(Unit::CubicMetrePerMinuteBar),
13787            "G89" => Some(Unit::CubicMetrePerSecondBar),
13788            "G90" => Some(Unit::MillilitrePerDayBar),
13789            "G91" => Some(Unit::MillilitrePerHourBar),
13790            "G92" => Some(Unit::MillilitrePerMinuteBar),
13791            "G93" => Some(Unit::MillilitrePerSecondBar),
13792            "G94" => Some(Unit::CubicCentimetrePerBar),
13793            "G95" => Some(Unit::LitrePerBar),
13794            "G96" => Some(Unit::CubicMetrePerBar),
13795            "G97" => Some(Unit::MillilitrePerBar),
13796            "G98" => Some(Unit::MicrohenryPerKiloohm),
13797            "G99" => Some(Unit::MicrohenryPerOhm),
13798            "GB" => Some(Unit::GallonUsPerDay),
13799            "GBQ" => Some(Unit::Gigabecquerel),
13800            "GDW" => Some(Unit::GramDryWeight),
13801            "GE" => Some(Unit::PoundPerGallonUs),
13802            "GF" => Some(Unit::GramPerMetreGramPer100Centimetres),
13803            "GFI" => Some(Unit::GramFissileIsotope),
13804            "GGR" => Some(Unit::GreatGross),
13805            "GIA" => Some(Unit::GillUs),
13806            "GIC" => Some(Unit::GramIncludingContainer),
13807            "GII" => Some(Unit::GillUk),
13808            "GIP" => Some(Unit::GramIncludingInnerPackaging),
13809            "GJ" => Some(Unit::GramPerMillilitre),
13810            "GL" => Some(Unit::GramPerLitre),
13811            "GLD" => Some(Unit::DryGallonUs),
13812            "GLI" => Some(Unit::GallonUk),
13813            "GLL" => Some(Unit::GallonUs),
13814            "GM" => Some(Unit::GramPerSquareMetre),
13815            "GO" => Some(Unit::MilligramPerSquareMetre),
13816            "GP" => Some(Unit::MilligramPerCubicMetre),
13817            "GQ" => Some(Unit::MicrogramPerCubicMetre),
13818            "GRM" => Some(Unit::Gram),
13819            "GRN" => Some(Unit::Grain),
13820            "GRO" => Some(Unit::Gross),
13821            "GV" => Some(Unit::Gigajoule),
13822            "GWH" => Some(Unit::GigawattHour),
13823            "H03" => Some(Unit::HenryPerKiloohm),
13824            "H04" => Some(Unit::HenryPerOhm),
13825            "H05" => Some(Unit::MillihenryPerKiloohm),
13826            "H06" => Some(Unit::MillihenryPerOhm),
13827            "H07" => Some(Unit::PascalSecondPerBar),
13828            "H08" => Some(Unit::Microbecquerel),
13829            "H09" => Some(Unit::ReciprocalYear),
13830            "H10" => Some(Unit::ReciprocalHour),
13831            "H11" => Some(Unit::ReciprocalMonth),
13832            "H12" => Some(Unit::DegreeCelsiusPerHour),
13833            "H13" => Some(Unit::DegreeCelsiusPerMinute),
13834            "H14" => Some(Unit::DegreeCelsiusPerSecond),
13835            "H15" => Some(Unit::SquareCentimetrePerGram),
13836            "H16" => Some(Unit::SquareDecametre),
13837            "H18" => Some(Unit::SquareHectometre),
13838            "H19" => Some(Unit::CubicHectometre),
13839            "H20" => Some(Unit::CubicKilometre),
13840            "H21" => Some(Unit::Blank),
13841            "H22" => Some(Unit::VoltSquareInchPerPoundForce),
13842            "H23" => Some(Unit::VoltPerInch),
13843            "H24" => Some(Unit::VoltPerMicrosecond),
13844            "H25" => Some(Unit::PercentPerKelvin),
13845            "H26" => Some(Unit::OhmPerMetre),
13846            "H27" => Some(Unit::DegreePerMetre),
13847            "H28" => Some(Unit::MicrofaradPerKilometre),
13848            "H29" => Some(Unit::MicrogramPerLitre),
13849            "H30" => Some(Unit::SquareMicrometreSquareMicron),
13850            "H31" => Some(Unit::AmperePerKilogram),
13851            "H32" => Some(Unit::AmpereSquaredSecond),
13852            "H33" => Some(Unit::FaradPerKilometre),
13853            "H34" => Some(Unit::HertzMetre),
13854            "H35" => Some(Unit::KelvinMetrePerWatt),
13855            "H36" => Some(Unit::MegaohmPerKilometre),
13856            "H37" => Some(Unit::MegaohmPerMetre),
13857            "H38" => Some(Unit::Megaampere),
13858            "H39" => Some(Unit::MegahertzKilometre),
13859            "H40" => Some(Unit::NewtonPerAmpere),
13860            "H41" => Some(Unit::NewtonMetreWattToPowerMinus05),
13861            "H42" => Some(Unit::PascalPerMetre),
13862            "H43" => Some(Unit::SiemensPerCentimetre),
13863            "H44" => Some(Unit::Teraohm),
13864            "H45" => Some(Unit::VoltSecondPerMetre),
13865            "H46" => Some(Unit::VoltPerSecond),
13866            "H47" => Some(Unit::WattPerCubicMetre),
13867            "H48" => Some(Unit::Attofarad),
13868            "H49" => Some(Unit::CentimetrePerHour),
13869            "H50" => Some(Unit::ReciprocalCubicCentimetre),
13870            "H51" => Some(Unit::DecibelPerKilometre),
13871            "H52" => Some(Unit::DecibelPerMetre),
13872            "H53" => Some(Unit::KilogramPerBar),
13873            "H54" => Some(Unit::KilogramPerCubicDecimetreKelvin),
13874            "H55" => Some(Unit::KilogramPerCubicDecimetreBar),
13875            "H56" => Some(Unit::KilogramPerSquareMetreSecond),
13876            "H57" => Some(Unit::InchPerTwoPiRadiant),
13877            "H58" => Some(Unit::MetrePerVoltSecond),
13878            "H59" => Some(Unit::SquareMetrePerNewton),
13879            "H60" => Some(Unit::CubicMetrePerCubicMetre),
13880            "H61" => Some(Unit::MillisiemensPerCentimetre),
13881            "H62" => Some(Unit::MillivoltPerMinute),
13882            "H63" => Some(Unit::MilligramPerSquareCentimetre),
13883            "H64" => Some(Unit::MilligramPerGram),
13884            "H65" => Some(Unit::MillilitrePerCubicMetre),
13885            "H66" => Some(Unit::MillimetrePerYear),
13886            "H67" => Some(Unit::MillimetrePerHour),
13887            "H68" => Some(Unit::MillimolePerGram),
13888            "H69" => Some(Unit::PicopascalPerKilometre),
13889            "H70" => Some(Unit::Picosecond),
13890            "H71" => Some(Unit::PercentPerMonth),
13891            "H72" => Some(Unit::PercentPerHectobar),
13892            "H73" => Some(Unit::PercentPerDecakelvin),
13893            "H74" => Some(Unit::WattPerMetre),
13894            "H75" => Some(Unit::Decapascal),
13895            "H76" => Some(Unit::GramPerMillimetre),
13896            "H77" => Some(Unit::ModuleWidth),
13897            "H79" => Some(Unit::FrenchGauge),
13898            "H80" => Some(Unit::RackUnit),
13899            "H81" => Some(Unit::MillimetrePerMinute),
13900            "H82" => Some(Unit::BigPoint),
13901            "H83" => Some(Unit::LitrePerKilogram),
13902            "H84" => Some(Unit::GramMillimetre),
13903            "H85" => Some(Unit::ReciprocalWeek),
13904            "H87" => Some(Unit::Piece),
13905            "H88" => Some(Unit::MegaohmKilometre),
13906            "H89" => Some(Unit::PercentPerOhm),
13907            "H90" => Some(Unit::PercentPerDegree),
13908            "H91" => Some(Unit::PercentPerTenThousand),
13909            "H92" => Some(Unit::PercentPerOneHundredThousand),
13910            "H93" => Some(Unit::PercentPerHundred),
13911            "H94" => Some(Unit::PercentPerThousand),
13912            "H95" => Some(Unit::PercentPerVolt),
13913            "H96" => Some(Unit::PercentPerBar),
13914            "H98" => Some(Unit::PercentPerInch),
13915            "H99" => Some(Unit::PercentPerMetre),
13916            "HA" => Some(Unit::Hank),
13917            "HAD" => Some(Unit::PieceDay),
13918            "HBA" => Some(Unit::Hectobar),
13919            "HBX" => Some(Unit::HundredBoxes),
13920            "HC" => Some(Unit::HundredCount),
13921            "HDW" => Some(Unit::HundredKilogramDryWeight),
13922            "HEA" => Some(Unit::Head),
13923            "HGM" => Some(Unit::Hectogram),
13924            "HH" => Some(Unit::HundredCubicFoot),
13925            "HIU" => Some(Unit::HundredInternationalUnit),
13926            "HKM" => Some(Unit::HundredKilogramNetMass),
13927            "HLT" => Some(Unit::Hectolitre),
13928            "HM" => Some(Unit::MilePerHourStatuteMile),
13929            "HMO" => Some(Unit::PieceMonth),
13930            "HMQ" => Some(Unit::MillionCubicMetre),
13931            "HMT" => Some(Unit::Hectometre),
13932            "HPA" => Some(Unit::HectolitrePureAlcohol),
13933            "HTZ" => Some(Unit::Hertz),
13934            "HUR" => Some(Unit::Hour),
13935            "HWE" => Some(Unit::PieceWeek),
13936            "IA" => Some(Unit::InchPoundPoundInch),
13937            "IE" => Some(Unit::Person),
13938            "INH" => Some(Unit::Inch),
13939            "INK" => Some(Unit::SquareInch),
13940            "INQ" => Some(Unit::CubicInch),
13941            "ISD" => Some(Unit::InternationalSugarDegree),
13942            "IU" => Some(Unit::InchPerSecond),
13943            "IUG" => Some(Unit::InternationalUnitPerGram),
13944            "IV" => Some(Unit::InchPerSecondSquared),
13945            "J10" => Some(Unit::PercentPerMillimetre),
13946            "J12" => Some(Unit::PerMillePerPsi),
13947            "J13" => Some(Unit::DegreeApi),
13948            "J14" => Some(Unit::DegreeBaumeOriginScale),
13949            "J15" => Some(Unit::DegreeBaumeUsHeavy),
13950            "J16" => Some(Unit::DegreeBaumeUsLight),
13951            "J17" => Some(Unit::DegreeBalling),
13952            "J18" => Some(Unit::DegreeBrix),
13953            "J19" => Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical),
13954            "J2" => Some(Unit::JoulePerKilogram),
13955            "J20" => Some(Unit::DegreeFahrenheitPerKelvin),
13956            "J21" => Some(Unit::DegreeFahrenheitPerBar),
13957            "J22" => {
13958                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable)
13959            }
13960            "J23" => Some(Unit::DegreeFahrenheitPerHour),
13961            "J24" => Some(Unit::DegreeFahrenheitPerMinute),
13962            "J25" => Some(Unit::DegreeFahrenheitPerSecond),
13963            "J26" => Some(Unit::ReciprocalDegreeFahrenheit),
13964            "J27" => Some(Unit::DegreeOechsle),
13965            "J28" => Some(Unit::DegreeRankinePerHour),
13966            "J29" => Some(Unit::DegreeRankinePerMinute),
13967            "J30" => Some(Unit::DegreeRankinePerSecond),
13968            "J31" => Some(Unit::DegreeTwaddell),
13969            "J32" => Some(Unit::Micropoise),
13970            "J33" => Some(Unit::MicrogramPerKilogram),
13971            "J34" => Some(Unit::MicrogramPerCubicMetreKelvin),
13972            "J35" => Some(Unit::MicrogramPerCubicMetreBar),
13973            "J36" => Some(Unit::MicrolitrePerLitre),
13974            "J38" => Some(Unit::Baud),
13975            "J39" => Some(Unit::BritishThermalUnitMean),
13976            "J40" => Some(
13977                Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
13978            ),
13979            "J41" => Some(
13980                Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
13981            ),
13982            "J42" => Some(
13983                Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
13984            ),
13985            "J43" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit),
13986            "J44" => Some(Unit::BritishThermalUnitInternationalTablePerMinute),
13987            "J45" => Some(Unit::BritishThermalUnitInternationalTablePerSecond),
13988            "J46" => {
13989                Some(Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit)
13990            }
13991            "J47" => Some(Unit::BritishThermalUnitThermochemicalPerHour),
13992            "J48" => {
13993                Some(Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit)
13994            }
13995            "J49" => {
13996                Some(Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit)
13997            }
13998            "J50" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit),
13999            "J51" => Some(Unit::BritishThermalUnitThermochemicalPerMinute),
14000            "J52" => Some(Unit::BritishThermalUnitThermochemicalPerSecond),
14001            "J53" => Some(Unit::CoulombSquareMetrePerKilogram),
14002            "J54" => Some(Unit::Megabaud),
14003            "J55" => Some(Unit::WattSecond),
14004            "J56" => Some(Unit::BarPerBar),
14005            "J57" => Some(Unit::BarrelUkPetroleum),
14006            "J58" => Some(Unit::BarrelUkPetroleumPerMinute),
14007            "J59" => Some(Unit::BarrelUkPetroleumPerDay),
14008            "J60" => Some(Unit::BarrelUkPetroleumPerHour),
14009            "J61" => Some(Unit::BarrelUkPetroleumPerSecond),
14010            "J62" => Some(Unit::BarrelUsPetroleumPerHour),
14011            "J63" => Some(Unit::BarrelUsPetroleumPerSecond),
14012            "J64" => Some(Unit::BushelUkPerDay),
14013            "J65" => Some(Unit::BushelUkPerHour),
14014            "J66" => Some(Unit::BushelUkPerMinute),
14015            "J67" => Some(Unit::BushelUkPerSecond),
14016            "J68" => Some(Unit::BushelUsDryPerDay),
14017            "J69" => Some(Unit::BushelUsDryPerHour),
14018            "J70" => Some(Unit::BushelUsDryPerMinute),
14019            "J71" => Some(Unit::BushelUsDryPerSecond),
14020            "J72" => Some(Unit::CentinewtonMetre),
14021            "J73" => Some(Unit::CentipoisePerKelvin),
14022            "J74" => Some(Unit::CentipoisePerBar),
14023            "J75" => Some(Unit::CalorieMean),
14024            "J76" => Some(Unit::CalorieInternationalTablePerGramDegreeCelsius),
14025            "J78" => Some(Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius),
14026            "J79" => Some(Unit::CalorieThermochemicalPerGramDegreeCelsius),
14027            "J81" => Some(Unit::CalorieThermochemicalPerMinute),
14028            "J82" => Some(Unit::CalorieThermochemicalPerSecond),
14029            "J83" => Some(Unit::Clo),
14030            "J84" => Some(Unit::CentimetrePerSecondKelvin),
14031            "J85" => Some(Unit::CentimetrePerSecondBar),
14032            "J87" => Some(Unit::CubicCentimetrePerCubicMetre),
14033            "J90" => Some(Unit::CubicDecimetrePerDay),
14034            "J91" => Some(Unit::CubicDecimetrePerCubicMetre),
14035            "J92" => Some(Unit::CubicDecimetrePerMinute),
14036            "J93" => Some(Unit::CubicDecimetrePerSecond),
14037            "J95" => Some(Unit::OunceUkFluidPerDay),
14038            "J96" => Some(Unit::OunceUkFluidPerHour),
14039            "J97" => Some(Unit::OunceUkFluidPerMinute),
14040            "J98" => Some(Unit::OunceUkFluidPerSecond),
14041            "J99" => Some(Unit::OunceUsFluidPerDay),
14042            "JE" => Some(Unit::JoulePerKelvin),
14043            "JK" => Some(Unit::MegajoulePerKilogram),
14044            "JM" => Some(Unit::MegajoulePerCubicMetre),
14045            "JNT" => Some(Unit::PipelineJoint),
14046            "JOU" => Some(Unit::Joule),
14047            "JPS" => Some(Unit::HundredMetre),
14048            "JWL" => Some(Unit::NumberJewels),
14049            "K1" => Some(Unit::KilowattDemand),
14050            "K10" => Some(Unit::OunceUsFluidPerHour),
14051            "K11" => Some(Unit::OunceUsFluidPerMinute),
14052            "K12" => Some(Unit::OunceUsFluidPerSecond),
14053            "K13" => Some(Unit::FootPerDegreeFahrenheit),
14054            "K14" => Some(Unit::FootPerHour),
14055            "K15" => Some(Unit::FootPoundForcePerHour),
14056            "K16" => Some(Unit::FootPoundForcePerMinute),
14057            "K17" => Some(Unit::FootPerPsi),
14058            "K18" => Some(Unit::FootPerSecondDegreeFahrenheit),
14059            "K19" => Some(Unit::FootPerSecondPsi),
14060            "K2" => Some(Unit::KilovoltAmpereReactiveDemand),
14061            "K20" => Some(Unit::ReciprocalCubicFoot),
14062            "K21" => Some(Unit::CubicFootPerDegreeFahrenheit),
14063            "K22" => Some(Unit::CubicFootPerDay),
14064            "K23" => Some(Unit::CubicFootPerPsi),
14065            "K26" => Some(Unit::GallonUkPerDay),
14066            "K27" => Some(Unit::GallonUkPerHour),
14067            "K28" => Some(Unit::GallonUkPerSecond),
14068            "K3" => Some(Unit::KilovoltAmpereReactiveHour),
14069            "K30" => Some(Unit::GallonUsLiquidPerSecond),
14070            "K31" => Some(Unit::GramForcePerSquareCentimetre),
14071            "K32" => Some(Unit::GillUkPerDay),
14072            "K33" => Some(Unit::GillUkPerHour),
14073            "K34" => Some(Unit::GillUkPerMinute),
14074            "K35" => Some(Unit::GillUkPerSecond),
14075            "K36" => Some(Unit::GillUsPerDay),
14076            "K37" => Some(Unit::GillUsPerHour),
14077            "K38" => Some(Unit::GillUsPerMinute),
14078            "K39" => Some(Unit::GillUsPerSecond),
14079            "K40" => Some(Unit::StandardAccelerationFreeFall),
14080            "K41" => Some(Unit::GrainPerGallonUs),
14081            "K42" => Some(Unit::HorsepowerBoiler),
14082            "K43" => Some(Unit::HorsepowerElectric),
14083            "K45" => Some(Unit::InchPerDegreeFahrenheit),
14084            "K46" => Some(Unit::InchPerPsi),
14085            "K47" => Some(Unit::InchPerSecondDegreeFahrenheit),
14086            "K48" => Some(Unit::InchPerSecondPsi),
14087            "K49" => Some(Unit::ReciprocalCubicInch),
14088            "K50" => Some(Unit::Kilobaud),
14089            "K51" => Some(Unit::KilocalorieMean),
14090            "K52" => Some(Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius),
14091            "K53" => Some(Unit::KilocalorieThermochemical),
14092            "K54" => Some(Unit::KilocalorieThermochemicalPerMinute),
14093            "K55" => Some(Unit::KilocalorieThermochemicalPerSecond),
14094            "K58" => Some(Unit::KilomolePerHour),
14095            "K59" => Some(Unit::KilomolePerCubicMetreKelvin),
14096            "K6" => Some(Unit::Kilolitre),
14097            "K60" => Some(Unit::KilomolePerCubicMetreBar),
14098            "K61" => Some(Unit::KilomolePerMinute),
14099            "K62" => Some(Unit::LitrePerLitre),
14100            "K63" => Some(Unit::ReciprocalLitre),
14101            "K64" => Some(Unit::PoundAvoirdupoisPerDegreeFahrenheit),
14102            "K65" => Some(Unit::PoundAvoirdupoisSquareFoot),
14103            "K66" => Some(Unit::PoundAvoirdupoisPerDay),
14104            "K67" => Some(Unit::PoundPerFootHour),
14105            "K68" => Some(Unit::PoundPerFootSecond),
14106            "K69" => Some(Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit),
14107            "K70" => Some(Unit::PoundAvoirdupoisPerCubicFootPsi),
14108            "K71" => Some(Unit::PoundAvoirdupoisPerGallonUk),
14109            "K73" => Some(Unit::PoundAvoirdupoisPerHourDegreeFahrenheit),
14110            "K74" => Some(Unit::PoundAvoirdupoisPerHourPsi),
14111            "K75" => Some(Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit),
14112            "K76" => Some(Unit::PoundAvoirdupoisPerCubicInchPsi),
14113            "K77" => Some(Unit::PoundAvoirdupoisPerPsi),
14114            "K78" => Some(Unit::PoundAvoirdupoisPerMinute),
14115            "K79" => Some(Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit),
14116            "K80" => Some(Unit::PoundAvoirdupoisPerMinutePsi),
14117            "K81" => Some(Unit::PoundAvoirdupoisPerSecond),
14118            "K82" => Some(Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit),
14119            "K83" => Some(Unit::PoundAvoirdupoisPerSecondPsi),
14120            "K84" => Some(Unit::PoundPerCubicYard),
14121            "K85" => Some(Unit::PoundForcePerSquareFoot),
14122            "K86" => Some(Unit::PoundForcePerSquareInchDegreeFahrenheit),
14123            "K87" => Some(Unit::PsiCubicInchPerSecond),
14124            "K88" => Some(Unit::PsiLitrePerSecond),
14125            "K89" => Some(Unit::PsiCubicMetrePerSecond),
14126            "K90" => Some(Unit::PsiCubicYardPerSecond),
14127            "K91" => Some(Unit::PoundForceSecondPerSquareFoot),
14128            "K92" => Some(Unit::PoundForceSecondPerSquareInch),
14129            "K93" => Some(Unit::ReciprocalPsi),
14130            "K94" => Some(Unit::QuartUkLiquidPerDay),
14131            "K95" => Some(Unit::QuartUkLiquidPerHour),
14132            "K96" => Some(Unit::QuartUkLiquidPerMinute),
14133            "K97" => Some(Unit::QuartUkLiquidPerSecond),
14134            "K98" => Some(Unit::QuartUsLiquidPerDay),
14135            "K99" => Some(Unit::QuartUsLiquidPerHour),
14136            "KA" => Some(Unit::Cake),
14137            "KAT" => Some(Unit::Katal),
14138            "KB" => Some(Unit::Kilocharacter),
14139            "KBA" => Some(Unit::Kilobar),
14140            "KCC" => Some(Unit::KilogramCholineChloride),
14141            "KDW" => Some(Unit::KilogramDrainedNetWeight),
14142            "KEL" => Some(Unit::Kelvin),
14143            "KGM" => Some(Unit::Kilogram),
14144            "KGS" => Some(Unit::KilogramPerSecond),
14145            "KHY" => Some(Unit::KilogramHydrogenPeroxide),
14146            "KHZ" => Some(Unit::Kilohertz),
14147            "KI" => Some(Unit::KilogramPerMillimetreWidth),
14148            "KIC" => Some(Unit::KilogramIncludingContainer),
14149            "KIP" => Some(Unit::KilogramIncludingInnerPackaging),
14150            "KJ" => Some(Unit::Kilosegment),
14151            "KJO" => Some(Unit::Kilojoule),
14152            "KL" => Some(Unit::KilogramPerMetre),
14153            "KLK" => Some(Unit::LacticDryMaterialPercentage),
14154            "KLX" => Some(Unit::Kilolux),
14155            "KMA" => Some(Unit::KilogramMethylamine),
14156            "KMH" => Some(Unit::KilometrePerHour),
14157            "KMK" => Some(Unit::SquareKilometre),
14158            "KMQ" => Some(Unit::KilogramPerCubicMetre),
14159            "KMT" => Some(Unit::Kilometre),
14160            "KNI" => Some(Unit::KilogramNitrogen),
14161            "KNM" => Some(Unit::KilonewtonPerSquareMetre),
14162            "KNS" => Some(Unit::KilogramNamedSubstance),
14163            "KNT" => Some(Unit::Knot),
14164            "KO" => Some(Unit::MilliequivalenceCausticPotashPerGramProduct),
14165            "KPA" => Some(Unit::Kilopascal),
14166            "KPH" => Some(Unit::KilogramPotassiumHydroxideCausticPotash),
14167            "KPO" => Some(Unit::KilogramPotassiumOxide),
14168            "KPP" => Some(Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride),
14169            "KR" => Some(Unit::Kiloroentgen),
14170            "KSD" => Some(Unit::KilogramSubstance90Dry),
14171            "KSH" => Some(Unit::KilogramSodiumHydroxideCausticSoda),
14172            "KT" => Some(Unit::Kit),
14173            "KTN" => Some(Unit::Kilotonne),
14174            "KUR" => Some(Unit::KilogramUranium),
14175            "KVA" => Some(Unit::KilovoltAmpere),
14176            "KVR" => Some(Unit::Kilovar),
14177            "KVT" => Some(Unit::Kilovolt),
14178            "KW" => Some(Unit::KilogramPerMillimetre),
14179            "KWH" => Some(Unit::KilowattHour),
14180            "KWN" => Some(Unit::KilowattHourPerNormalizedCubicMetre),
14181            "KWO" => Some(Unit::KilogramTungstenTrioxide),
14182            "KWS" => Some(Unit::KilowattHourPerStandardCubicMetre),
14183            "KWT" => Some(Unit::Kilowatt),
14184            "KWY" => Some(Unit::KilowattYear),
14185            "KX" => Some(Unit::MillilitrePerKilogram),
14186            "L10" => Some(Unit::QuartUsLiquidPerMinute),
14187            "L11" => Some(Unit::QuartUsLiquidPerSecond),
14188            "L12" => Some(Unit::MetrePerSecondKelvin),
14189            "L13" => Some(Unit::MetrePerSecondBar),
14190            "L14" => Some(Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable),
14191            "L15" => Some(Unit::MillipascalSecondPerKelvin),
14192            "L16" => Some(Unit::MillipascalSecondPerBar),
14193            "L17" => Some(Unit::MilligramPerCubicMetreKelvin),
14194            "L18" => Some(Unit::MilligramPerCubicMetreBar),
14195            "L19" => Some(Unit::MillilitrePerLitre),
14196            "L2" => Some(Unit::LitrePerMinute),
14197            "L20" => Some(Unit::ReciprocalCubicMillimetre),
14198            "L21" => Some(Unit::CubicMillimetrePerCubicMetre),
14199            "L23" => Some(Unit::MolePerHour),
14200            "L24" => Some(Unit::MolePerKilogramKelvin),
14201            "L25" => Some(Unit::MolePerKilogramBar),
14202            "L26" => Some(Unit::MolePerLitreKelvin),
14203            "L27" => Some(Unit::MolePerLitreBar),
14204            "L28" => Some(Unit::MolePerCubicMetreKelvin),
14205            "L29" => Some(Unit::MolePerCubicMetreBar),
14206            "L30" => Some(Unit::MolePerMinute),
14207            "L31" => Some(Unit::MilliroentgenAequivalentMen),
14208            "L32" => Some(Unit::NanogramPerKilogram),
14209            "L33" => Some(Unit::OunceAvoirdupoisPerDay),
14210            "L34" => Some(Unit::OunceAvoirdupoisPerHour),
14211            "L35" => Some(Unit::OunceAvoirdupoisPerMinute),
14212            "L36" => Some(Unit::OunceAvoirdupoisPerSecond),
14213            "L37" => Some(Unit::OunceAvoirdupoisPerGallonUk),
14214            "L38" => Some(Unit::OunceAvoirdupoisPerGallonUs),
14215            "L39" => Some(Unit::OunceAvoirdupoisPerCubicInch),
14216            "L40" => Some(Unit::OunceAvoirdupoisForce),
14217            "L41" => Some(Unit::OunceAvoirdupoisForceInch),
14218            "L42" => Some(Unit::PicosiemensPerMetre),
14219            "L43" => Some(Unit::PeckUk),
14220            "L44" => Some(Unit::PeckUkPerDay),
14221            "L45" => Some(Unit::PeckUkPerHour),
14222            "L46" => Some(Unit::PeckUkPerMinute),
14223            "L47" => Some(Unit::PeckUkPerSecond),
14224            "L48" => Some(Unit::PeckUsDryPerDay),
14225            "L49" => Some(Unit::PeckUsDryPerHour),
14226            "L50" => Some(Unit::PeckUsDryPerMinute),
14227            "L51" => Some(Unit::PeckUsDryPerSecond),
14228            "L52" => Some(Unit::PsiPerPsi),
14229            "L53" => Some(Unit::PintUkPerDay),
14230            "L54" => Some(Unit::PintUkPerHour),
14231            "L55" => Some(Unit::PintUkPerMinute),
14232            "L56" => Some(Unit::PintUkPerSecond),
14233            "L57" => Some(Unit::PintUsLiquidPerDay),
14234            "L58" => Some(Unit::PintUsLiquidPerHour),
14235            "L59" => Some(Unit::PintUsLiquidPerMinute),
14236            "L60" => Some(Unit::PintUsLiquidPerSecond),
14237            "L63" => Some(Unit::SlugPerDay),
14238            "L64" => Some(Unit::SlugPerFootSecond),
14239            "L65" => Some(Unit::SlugPerCubicFoot),
14240            "L66" => Some(Unit::SlugPerHour),
14241            "L67" => Some(Unit::SlugPerMinute),
14242            "L68" => Some(Unit::SlugPerSecond),
14243            "L69" => Some(Unit::TonnePerKelvin),
14244            "L70" => Some(Unit::TonnePerBar),
14245            "L71" => Some(Unit::TonnePerDay),
14246            "L72" => Some(Unit::TonnePerDayKelvin),
14247            "L73" => Some(Unit::TonnePerDayBar),
14248            "L74" => Some(Unit::TonnePerHourKelvin),
14249            "L75" => Some(Unit::TonnePerHourBar),
14250            "L76" => Some(Unit::TonnePerCubicMetreKelvin),
14251            "L77" => Some(Unit::TonnePerCubicMetreBar),
14252            "L78" => Some(Unit::TonnePerMinute),
14253            "L79" => Some(Unit::TonnePerMinuteKelvin),
14254            "L80" => Some(Unit::TonnePerMinuteBar),
14255            "L81" => Some(Unit::TonnePerSecond),
14256            "L82" => Some(Unit::TonnePerSecondKelvin),
14257            "L83" => Some(Unit::TonnePerSecondBar),
14258            "L84" => Some(Unit::TonUkShipping),
14259            "L85" => Some(Unit::TonLongPerDay),
14260            "L86" => Some(Unit::TonUsShipping),
14261            "L87" => Some(Unit::TonShortPerDegreeFahrenheit),
14262            "L88" => Some(Unit::TonShortPerDay),
14263            "L89" => Some(Unit::TonShortPerHourDegreeFahrenheit),
14264            "L90" => Some(Unit::TonShortPerHourPsi),
14265            "L91" => Some(Unit::TonShortPerPsi),
14266            "L92" => Some(Unit::TonUkLongPerCubicYard),
14267            "L93" => Some(Unit::TonUsShortPerCubicYard),
14268            "L94" => Some(Unit::TonForceUsShort),
14269            "L95" => Some(Unit::CommonYear),
14270            "L96" => Some(Unit::SiderealYear),
14271            "L98" => Some(Unit::YardPerDegreeFahrenheit),
14272            "L99" => Some(Unit::YardPerPsi),
14273            "LA" => Some(Unit::PoundPerCubicInch),
14274            "LAC" => Some(Unit::LactoseExcessPercentage),
14275            "LBR" => Some(Unit::Pound),
14276            "LBT" => Some(Unit::TroyPoundUs),
14277            "LD" => Some(Unit::LitrePerDay),
14278            "LEF" => Some(Unit::Leaf),
14279            "LF" => Some(Unit::LinearFoot),
14280            "LH" => Some(Unit::LabourHour),
14281            "LK" => Some(Unit::Link),
14282            "LM" => Some(Unit::LinearMetre),
14283            "LN" => Some(Unit::Length),
14284            "LO" => Some(Unit::LotUnitProcurement),
14285            "LP" => Some(Unit::LiquidPound),
14286            "LPA" => Some(Unit::LitrePureAlcohol),
14287            "LR" => Some(Unit::Layer),
14288            "LS" => Some(Unit::LumpSum),
14289            "LTN" => Some(Unit::TonUkOrLongTonUs),
14290            "LTR" => Some(Unit::Litre),
14291            "LUB" => Some(Unit::MetricTonLubricatingOil),
14292            "LUM" => Some(Unit::Lumen),
14293            "LUX" => Some(Unit::Lux),
14294            "LY" => Some(Unit::LinearYard),
14295            "M1" => Some(Unit::MilligramPerLitre),
14296            "M10" => Some(Unit::ReciprocalCubicYard),
14297            "M11" => Some(Unit::CubicYardPerDegreeFahrenheit),
14298            "M12" => Some(Unit::CubicYardPerDay),
14299            "M13" => Some(Unit::CubicYardPerHour),
14300            "M14" => Some(Unit::CubicYardPerPsi),
14301            "M15" => Some(Unit::CubicYardPerMinute),
14302            "M16" => Some(Unit::CubicYardPerSecond),
14303            "M17" => Some(Unit::KilohertzMetre),
14304            "M18" => Some(Unit::GigahertzMetre),
14305            "M19" => Some(Unit::Beaufort),
14306            "M20" => Some(Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne),
14307            "M21" => Some(Unit::ReciprocalKilovoltAmpereReciprocalHour),
14308            "M22" => Some(Unit::MillilitrePerSquareCentimetreMinute),
14309            "M23" => Some(Unit::NewtonPerCentimetre),
14310            "M24" => Some(Unit::OhmKilometre),
14311            "M25" => Some(Unit::PercentPerDegreeCelsius),
14312            "M26" => Some(Unit::GigaohmPerMetre),
14313            "M27" => Some(Unit::MegahertzMetre),
14314            "M29" => Some(Unit::KilogramPerKilogram),
14315            "M30" => Some(Unit::ReciprocalVoltAmpereReciprocalSecond),
14316            "M31" => Some(Unit::KilogramPerKilometre),
14317            "M32" => Some(Unit::PascalSecondPerLitre),
14318            "M33" => Some(Unit::MillimolePerLitre),
14319            "M34" => Some(Unit::NewtonMetrePerSquareMetre),
14320            "M35" => Some(Unit::MillivoltAmpere),
14321            "M36" => Some(Unit::_30DayMonth),
14322            "M37" => Some(Unit::Actual360),
14323            "M38" => Some(Unit::KilometrePerSecondSquared),
14324            "M39" => Some(Unit::CentimetrePerSecondSquared),
14325            "M4" => Some(Unit::MonetaryValue),
14326            "M40" => Some(Unit::YardPerSecondSquared),
14327            "M41" => Some(Unit::MillimetrePerSecondSquared),
14328            "M42" => Some(Unit::MileStatuteMilePerSecondSquared),
14329            "M43" => Some(Unit::Mil),
14330            "M44" => Some(Unit::Revolution),
14331            "M45" => Some(Unit::DegreeUnitAnglePerSecondSquared),
14332            "M46" => Some(Unit::RevolutionPerMinute),
14333            "M47" => Some(Unit::CircularMil),
14334            "M48" => Some(Unit::SquareMileBasedOnUSSurveyFoot),
14335            "M49" => Some(Unit::ChainBasedOnUSSurveyFoot),
14336            "M5" => Some(Unit::Microcurie),
14337            "M50" => Some(Unit::Furlong),
14338            "M51" => Some(Unit::FootUSSurvey),
14339            "M52" => Some(Unit::MileBasedOnUSSurveyFoot),
14340            "M53" => Some(Unit::MetrePerPascal),
14341            "M55" => Some(Unit::MetrePerRadiant),
14342            "M56" => Some(Unit::Shake),
14343            "M57" => Some(Unit::MilePerMinute),
14344            "M58" => Some(Unit::MilePerSecond),
14345            "M59" => Some(Unit::MetrePerSecondPascal),
14346            "M60" => Some(Unit::MetrePerHour),
14347            "M61" => Some(Unit::InchPerYear),
14348            "M62" => Some(Unit::KilometrePerSecond),
14349            "M63" => Some(Unit::InchPerMinute),
14350            "M64" => Some(Unit::YardPerSecond),
14351            "M65" => Some(Unit::YardPerMinute),
14352            "M66" => Some(Unit::YardPerHour),
14353            "M67" => Some(Unit::AcreFootBasedOnUSSurveyFoot),
14354            "M68" => Some(Unit::Cord128Ft3),
14355            "M69" => Some(Unit::CubicMileUkStatute),
14356            "M7" => Some(Unit::MicroInch),
14357            "M70" => Some(Unit::TonRegister),
14358            "M71" => Some(Unit::CubicMetrePerPascal),
14359            "M72" => Some(Unit::Bel),
14360            "M73" => Some(Unit::KilogramPerCubicMetrePascal),
14361            "M74" => Some(Unit::KilogramPerPascal),
14362            "M75" => Some(Unit::KilopoundForce),
14363            "M76" => Some(Unit::Poundal),
14364            "M77" => Some(Unit::KilogramMetrePerSecondSquared),
14365            "M78" => Some(Unit::Pond),
14366            "M79" => Some(Unit::SquareFootPerHour),
14367            "M80" => Some(Unit::StokesPerPascal),
14368            "M81" => Some(Unit::SquareCentimetrePerSecond),
14369            "M82" => Some(Unit::SquareMetrePerSecondPascal),
14370            "M83" => Some(Unit::Denier_Dup),
14371            "M84" => Some(Unit::PoundPerYard),
14372            "M85" => Some(Unit::TonAssay),
14373            "M86" => Some(Unit::Pfund),
14374            "M87" => Some(Unit::KilogramPerSecondPascal),
14375            "M88" => Some(Unit::TonnePerMonth),
14376            "M89" => Some(Unit::TonnePerYear),
14377            "M9" => Some(Unit::MillionBtuPer1000CubicFoot),
14378            "M90" => Some(Unit::KilopoundPerHour),
14379            "M91" => Some(Unit::PoundPerPound),
14380            "M92" => Some(Unit::PoundForceFoot),
14381            "M93" => Some(Unit::NewtonMetrePerRadian),
14382            "M94" => Some(Unit::KilogramMetre),
14383            "M95" => Some(Unit::PoundalFoot),
14384            "M96" => Some(Unit::PoundalInch),
14385            "M97" => Some(Unit::DyneMetre),
14386            "M98" => Some(Unit::KilogramCentimetrePerSecond),
14387            "M99" => Some(Unit::GramCentimetrePerSecond),
14388            "MAH" => Some(Unit::MegavoltAmpereReactiveHour),
14389            "MAL" => Some(Unit::Megalitre),
14390            "MAM" => Some(Unit::Megametre),
14391            "MAR" => Some(Unit::Megavar),
14392            "MAW" => Some(Unit::Megawatt),
14393            "MBE" => Some(Unit::ThousandStandardBrickEquivalent),
14394            "MBF" => Some(Unit::ThousandBoardFoot),
14395            "MBR" => Some(Unit::Millibar),
14396            "MC" => Some(Unit::Microgram),
14397            "MCU" => Some(Unit::Millicurie),
14398            "MD" => Some(Unit::AirDryMetricTon),
14399            "MGM" => Some(Unit::Milligram),
14400            "MHZ" => Some(Unit::Megahertz),
14401            "MIK" => Some(Unit::SquareMileStatuteMile),
14402            "MIL" => Some(Unit::Thousand),
14403            "MIN" => Some(Unit::MinuteUnitTime),
14404            "MIO" => Some(Unit::Million),
14405            "MIU" => Some(Unit::MillionInternationalUnit),
14406            "MKD" => Some(Unit::SquareMetreDay),
14407            "MKM" => Some(Unit::SquareMetreMonth),
14408            "MKW" => Some(Unit::SquareMetreWeek),
14409            "MLD" => Some(Unit::Milliard),
14410            "MLT" => Some(Unit::Millilitre),
14411            "MMK" => Some(Unit::SquareMillimetre),
14412            "MMQ" => Some(Unit::CubicMillimetre),
14413            "MMT" => Some(Unit::Millimetre),
14414            "MND" => Some(Unit::KilogramDryWeight),
14415            "MNJ" => Some(Unit::MegaJoulePerNormalisedCubicMetre),
14416            "MON" => Some(Unit::Month),
14417            "MPA" => Some(Unit::Megapascal),
14418            "MQD" => Some(Unit::CubicMetreDay),
14419            "MQH" => Some(Unit::CubicMetrePerHour),
14420            "MQM" => Some(Unit::CubicMetreMonth),
14421            "MQS" => Some(Unit::CubicMetrePerSecond),
14422            "MQW" => Some(Unit::CubicMetreWeek),
14423            "MRD" => Some(Unit::MetreDay),
14424            "MRM" => Some(Unit::MetreMonth),
14425            "MRW" => Some(Unit::MetreWeek),
14426            "MSK" => Some(Unit::MetrePerSecondSquared),
14427            "MTK" => Some(Unit::SquareMetre),
14428            "MTQ" => Some(Unit::CubicMetre),
14429            "MTR" => Some(Unit::Metre),
14430            "MTS" => Some(Unit::MetrePerSecond),
14431            "MTZ" => Some(Unit::Milihertz),
14432            "MVA" => Some(Unit::MegavoltAmpere),
14433            "MWH" => Some(Unit::MegawattHour1000KwH),
14434            "N1" => Some(Unit::PenCalorie),
14435            "N10" => Some(Unit::PoundFootPerSecond),
14436            "N11" => Some(Unit::PoundInchPerSecond),
14437            "N12" => Some(Unit::Pferdestaerke),
14438            "N13" => Some(Unit::CentimetreMercury0Oc),
14439            "N14" => Some(Unit::CentimetreWater4Oc),
14440            "N15" => Some(Unit::FootWater392Of),
14441            "N16" => Some(Unit::InchMercury32Of),
14442            "N17" => Some(Unit::InchMercury60Of),
14443            "N18" => Some(Unit::InchWater392Of),
14444            "N19" => Some(Unit::InchWater60Of),
14445            "N20" => Some(Unit::KipPerSquareInch),
14446            "N21" => Some(Unit::PoundalPerSquareFoot),
14447            "N22" => Some(Unit::OunceAvoirdupoisPerSquareInch),
14448            "N23" => Some(Unit::ConventionalMetreWater),
14449            "N24" => Some(Unit::GramPerSquareMillimetre),
14450            "N25" => Some(Unit::PoundPerSquareYard),
14451            "N26" => Some(Unit::PoundalPerSquareInch),
14452            "N27" => Some(Unit::FootToFourthPower),
14453            "N28" => Some(Unit::CubicDecimetrePerKilogram),
14454            "N29" => Some(Unit::CubicFootPerPound),
14455            "N3" => Some(Unit::PrintPoint),
14456            "N30" => Some(Unit::CubicInchPerPound),
14457            "N31" => Some(Unit::KilonewtonPerMetre),
14458            "N32" => Some(Unit::PoundalPerInch),
14459            "N33" => Some(Unit::PoundForcePerYard),
14460            "N34" => Some(Unit::PoundalSecondPerSquareFoot),
14461            "N35" => Some(Unit::PoisePerPascal),
14462            "N36" => Some(Unit::NewtonSecondPerSquareMetre),
14463            "N37" => Some(Unit::KilogramPerMetreSecond),
14464            "N38" => Some(Unit::KilogramPerMetreMinute),
14465            "N39" => Some(Unit::KilogramPerMetreDay),
14466            "N40" => Some(Unit::KilogramPerMetreHour),
14467            "N41" => Some(Unit::GramPerCentimetreSecond),
14468            "N42" => Some(Unit::PoundalSecondPerSquareInch),
14469            "N43" => Some(Unit::PoundPerFootMinute),
14470            "N44" => Some(Unit::PoundPerFootDay),
14471            "N45" => Some(Unit::CubicMetrePerSecondPascal),
14472            "N46" => Some(Unit::FootPoundal),
14473            "N47" => Some(Unit::InchPoundal),
14474            "N48" => Some(Unit::WattPerSquareCentimetre),
14475            "N49" => Some(Unit::WattPerSquareInch),
14476            "N50" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootHour),
14477            "N51" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootHour),
14478            "N52" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootMinute),
14479            "N53" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootSecond),
14480            "N54" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootSecond),
14481            "N55" => Some(Unit::BritishThermalUnitInternationalTablePerSquareInchSecond),
14482            "N56" => Some(Unit::CalorieThermochemicalPerSquareCentimetreMinute),
14483            "N57" => Some(Unit::CalorieThermochemicalPerSquareCentimetreSecond),
14484            "N58" => Some(Unit::BritishThermalUnitInternationalTablePerCubicFoot),
14485            "N59" => Some(Unit::BritishThermalUnitThermochemicalPerCubicFoot),
14486            "N60" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit),
14487            "N61" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit),
14488            "N62" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeRankine),
14489            "N63" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeRankine),
14490            "N64" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine),
14491            "N65" => Some(Unit::KilocalorieInternationalTablePerGramKelvin),
14492            "N66" => Some(Unit::BritishThermalUnit39Of),
14493            "N67" => Some(Unit::BritishThermalUnit59Of),
14494            "N68" => Some(Unit::BritishThermalUnit60Of),
14495            "N69" => Some(Unit::Calorie20Oc),
14496            "N70" => Some(Unit::Quad1015Btuit),
14497            "N71" => Some(Unit::ThermEc),
14498            "N72" => Some(Unit::ThermUS),
14499            "N73" => Some(Unit::BritishThermalUnitThermochemicalPerPound),
14500            "N74" => {
14501                Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit)
14502            }
14503            "N75" => Some(Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit),
14504            "N76" => {
14505                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit)
14506            }
14507            "N77" => {
14508                Some(Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit)
14509            }
14510            "N78" => Some(Unit::KilowattPerSquareMetreKelvin),
14511            "N79" => Some(Unit::KelvinPerPascal),
14512            "N80" => Some(Unit::WattPerMetreDegreeCelsius),
14513            "N81" => Some(Unit::KilowattPerMetreKelvin),
14514            "N82" => Some(Unit::KilowattPerMetreDegreeCelsius),
14515            "N83" => Some(Unit::MetrePerDegreeCelciusMetre),
14516            "N84" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable),
14517            "N85" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical),
14518            "N86" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable),
14519            "N87" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical),
14520            "N88" => Some(
14521                Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
14522            ),
14523            "N89" => {
14524                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch)
14525            }
14526            "N90" => Some(Unit::Kilofarad),
14527            "N91" => Some(Unit::ReciprocalJoule),
14528            "N92" => Some(Unit::Picosiemens),
14529            "N93" => Some(Unit::AmperePerPascal),
14530            "N94" => Some(Unit::Franklin),
14531            "N95" => Some(Unit::AmpereMinute),
14532            "N96" => Some(Unit::Biot),
14533            "N97" => Some(Unit::Gilbert),
14534            "N98" => Some(Unit::VoltPerPascal),
14535            "N99" => Some(Unit::Picovolt),
14536            "nan" => Some(Unit::MilligramPerKilogram),
14537            "NAR" => Some(Unit::NumberArticles),
14538            "NCL" => Some(Unit::NumberCells),
14539            "NEW" => Some(Unit::Newton),
14540            "NF" => Some(Unit::Message),
14541            "NIL" => Some(Unit::Nil),
14542            "NIU" => Some(Unit::NumberInternationalUnits),
14543            "NL" => Some(Unit::Load),
14544            "NM3" => Some(Unit::NormalisedCubicMetre),
14545            "NMI" => Some(Unit::NauticalMile),
14546            "NMP" => Some(Unit::NumberPacks),
14547            "NPT" => Some(Unit::NumberParts),
14548            "NT" => Some(Unit::NetTon),
14549            "NTU" => Some(Unit::NephelometricTurbidityUnit),
14550            "NU" => Some(Unit::NewtonMetre),
14551            "NX" => Some(Unit::PartPerThousand),
14552            "OA" => Some(Unit::Panel),
14553            "ODE" => Some(Unit::OzoneDepletionEquivalent),
14554            "ODG" => Some(Unit::OdsGrams),
14555            "ODK" => Some(Unit::OdsKilograms),
14556            "ODM" => Some(Unit::OdsMilligrams),
14557            "OHM" => Some(Unit::Ohm),
14558            "ON" => Some(Unit::OuncePerSquareYard),
14559            "ONZ" => Some(Unit::OunceAvoirdupois),
14560            "OPM" => Some(Unit::OscillationsPerMinute),
14561            "OT" => Some(Unit::OvertimeHour),
14562            "OZA" => Some(Unit::FluidOunceUs),
14563            "OZI" => Some(Unit::FluidOunceUk),
14564            "P1" => Some(Unit::Percent),
14565            "P10" => Some(Unit::CoulombPerMetre),
14566            "P11" => Some(Unit::Kiloweber),
14567            "P12" => Some(Unit::Gamma),
14568            "P13" => Some(Unit::Kilotesla),
14569            "P14" => Some(Unit::JoulePerSecond),
14570            "P15" => Some(Unit::JoulePerMinute),
14571            "P16" => Some(Unit::JoulePerHour),
14572            "P17" => Some(Unit::JoulePerDay),
14573            "P18" => Some(Unit::KilojoulePerSecond),
14574            "P19" => Some(Unit::KilojoulePerMinute),
14575            "P2" => Some(Unit::PoundPerFoot),
14576            "P20" => Some(Unit::KilojoulePerHour),
14577            "P21" => Some(Unit::KilojoulePerDay),
14578            "P22" => Some(Unit::Nanoohm),
14579            "P23" => Some(Unit::OhmCircularMilPerFoot),
14580            "P24" => Some(Unit::Kilohenry),
14581            "P25" => Some(Unit::LumenPerSquareFoot),
14582            "P26" => Some(Unit::Phot),
14583            "P27" => Some(Unit::Footcandle),
14584            "P28" => Some(Unit::CandelaPerSquareInch),
14585            "P29" => Some(Unit::Footlambert),
14586            "P30" => Some(Unit::Lambert),
14587            "P31" => Some(Unit::Stilb),
14588            "P32" => Some(Unit::CandelaPerSquareFoot),
14589            "P33" => Some(Unit::Kilocandela),
14590            "P34" => Some(Unit::Millicandela),
14591            "P35" => Some(Unit::HefnerKerze),
14592            "P36" => Some(Unit::InternationalCandle),
14593            "P37" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFoot),
14594            "P38" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFoot),
14595            "P39" => Some(Unit::CalorieThermochemicalPerSquareCentimetre),
14596            "P40" => Some(Unit::Langley),
14597            "P41" => Some(Unit::DecadeLogarithmic),
14598            "P42" => Some(Unit::PascalSquaredSecond),
14599            "P43" => Some(Unit::BelPerMetre),
14600            "P44" => Some(Unit::PoundMole),
14601            "P45" => Some(Unit::PoundMolePerSecond),
14602            "P46" => Some(Unit::PoundMolePerMinute),
14603            "P47" => Some(Unit::KilomolePerKilogram),
14604            "P48" => Some(Unit::PoundMolePerPound),
14605            "P49" => Some(Unit::NewtonSquareMetrePerAmpere),
14606            "P5" => Some(Unit::FivePack),
14607            "P50" => Some(Unit::WeberMetre),
14608            "P51" => Some(Unit::MolPerKilogramPascal),
14609            "P52" => Some(Unit::MolPerCubicMetrePascal),
14610            "P53" => Some(Unit::UnitPole),
14611            "P54" => Some(Unit::MilligrayPerSecond),
14612            "P55" => Some(Unit::MicrograyPerSecond),
14613            "P56" => Some(Unit::NanograyPerSecond),
14614            "P57" => Some(Unit::GrayPerMinute),
14615            "P58" => Some(Unit::MilligrayPerMinute),
14616            "P59" => Some(Unit::MicrograyPerMinute),
14617            "P60" => Some(Unit::NanograyPerMinute),
14618            "P61" => Some(Unit::GrayPerHour),
14619            "P62" => Some(Unit::MilligrayPerHour),
14620            "P63" => Some(Unit::MicrograyPerHour),
14621            "P64" => Some(Unit::NanograyPerHour),
14622            "P65" => Some(Unit::SievertPerSecond),
14623            "P66" => Some(Unit::MillisievertPerSecond),
14624            "P67" => Some(Unit::MicrosievertPerSecond),
14625            "P68" => Some(Unit::NanosievertPerSecond),
14626            "P69" => Some(Unit::RemPerSecond),
14627            "P70" => Some(Unit::SievertPerHour),
14628            "P71" => Some(Unit::MillisievertPerHour),
14629            "P72" => Some(Unit::MicrosievertPerHour),
14630            "P73" => Some(Unit::NanosievertPerHour),
14631            "P74" => Some(Unit::SievertPerMinute),
14632            "P75" => Some(Unit::MillisievertPerMinute),
14633            "P76" => Some(Unit::MicrosievertPerMinute),
14634            "P77" => Some(Unit::NanosievertPerMinute),
14635            "P78" => Some(Unit::ReciprocalSquareInch),
14636            "P79" => Some(Unit::PascalSquareMetrePerKilogram),
14637            "P80" => Some(Unit::MillipascalPerMetre),
14638            "P81" => Some(Unit::KilopascalPerMetre),
14639            "P82" => Some(Unit::HectopascalPerMetre),
14640            "P83" => Some(Unit::StandardAtmospherePerMetre),
14641            "P84" => Some(Unit::TechnicalAtmospherePerMetre),
14642            "P85" => Some(Unit::TorrPerMetre),
14643            "P86" => Some(Unit::PsiPerInch),
14644            "P87" => Some(Unit::CubicMetrePerSecondSquareMetre),
14645            "P88" => Some(Unit::Rhe),
14646            "P89" => Some(Unit::PoundForceFootPerInch),
14647            "P90" => Some(Unit::PoundForceInchPerInch),
14648            "P91" => Some(Unit::Perm0Oc),
14649            "P92" => Some(Unit::Perm23Oc),
14650            "P93" => Some(Unit::BytePerSecond),
14651            "P94" => Some(Unit::KilobytePerSecond),
14652            "P95" => Some(Unit::MegabytePerSecond),
14653            "P96" => Some(Unit::ReciprocalVolt),
14654            "P97" => Some(Unit::ReciprocalRadian),
14655            "P98" => Some(Unit::PascalToPowerSumStoichiometricNumbers),
14656            "P99" => Some(Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers),
14657            "PAL" => Some(Unit::Pascal),
14658            "PD" => Some(Unit::Pad),
14659            "PFL" => Some(Unit::ProofLitre),
14660            "PGL" => Some(Unit::ProofGallon),
14661            "PI" => Some(Unit::Pitch),
14662            "PLA" => Some(Unit::DegreePlato),
14663            "PO" => Some(Unit::PoundPerInchLength),
14664            "PQ" => Some(Unit::PagePerInch),
14665            "PR" => Some(Unit::Pair),
14666            "PS" => Some(Unit::PoundForcePerSquareInch),
14667            "PTD" => Some(Unit::DryPintUs),
14668            "PTI" => Some(Unit::PintUk),
14669            "PTL" => Some(Unit::LiquidPintUs),
14670            "PTN" => Some(Unit::Portion),
14671            "Q10" => Some(Unit::JoulePerTesla),
14672            "Q11" => Some(Unit::Erlang),
14673            "Q12" => Some(Unit::Octet),
14674            "Q13" => Some(Unit::OctetPerSecond),
14675            "Q14" => Some(Unit::Shannon),
14676            "Q15" => Some(Unit::Hartley),
14677            "Q16" => Some(Unit::NaturalUnitInformation),
14678            "Q17" => Some(Unit::ShannonPerSecond),
14679            "Q18" => Some(Unit::HartleyPerSecond),
14680            "Q19" => Some(Unit::NaturalUnitInformationPerSecond),
14681            "Q20" => Some(Unit::SecondPerKilogramm),
14682            "Q21" => Some(Unit::WattSquareMetre),
14683            "Q22" => Some(Unit::SecondPerRadianCubicMetre),
14684            "Q23" => Some(Unit::WeberToPowerMinusOne),
14685            "Q24" => Some(Unit::ReciprocalInch),
14686            "Q25" => Some(Unit::Dioptre),
14687            "Q26" => Some(Unit::OnePerOne),
14688            "Q27" => Some(Unit::NewtonMetrePerMetre),
14689            "Q28" => Some(Unit::KilogramPerSquareMetrePascalSecond),
14690            "Q29" => Some(Unit::MicrogramPerHectogram),
14691            "Q3" => Some(Unit::Meal),
14692            "Q30" => Some(Unit::PhPotentialHydrogen),
14693            "Q31" => Some(Unit::KilojoulePerGram),
14694            "Q32" => Some(Unit::Femtolitre),
14695            "Q33" => Some(Unit::Picolitre),
14696            "Q34" => Some(Unit::Nanolitre),
14697            "Q35" => Some(Unit::MegawattsPerMinute),
14698            "Q36" => Some(Unit::SquareMetrePerCubicMetre),
14699            "Q37" => Some(Unit::StandardCubicMetrePerDay),
14700            "Q38" => Some(Unit::StandardCubicMetrePerHour),
14701            "Q39" => Some(Unit::NormalizedCubicMetrePerDay),
14702            "Q40" => Some(Unit::NormalizedCubicMetrePerHour),
14703            "Q41" => Some(Unit::JoulePerNormalisedCubicMetre),
14704            "Q42" => Some(Unit::JoulePerStandardCubicMetre),
14705            "QA" => Some(Unit::PageFacsimile),
14706            "QAN" => Some(Unit::QuarterAYear),
14707            "QB" => Some(Unit::PageHardcopy),
14708            "QR" => Some(Unit::Quire),
14709            "QTD" => Some(Unit::DryQuartUs),
14710            "QTI" => Some(Unit::QuartUk),
14711            "QTL" => Some(Unit::LiquidQuartUs),
14712            "QTR" => Some(Unit::QuarterUk),
14713            "R1" => Some(Unit::Pica),
14714            "R9" => Some(Unit::ThousandCubicMetre),
14715            "RH" => Some(Unit::RunningOrOperatingHour),
14716            "RM" => Some(Unit::Ream),
14717            "ROM" => Some(Unit::Room),
14718            "RP" => Some(Unit::PoundPerReam),
14719            "RPM" => Some(Unit::RevolutionsPerMinute),
14720            "RPS" => Some(Unit::RevolutionsPerSecond),
14721            "RT" => Some(Unit::RevenueTonMile),
14722            "S3" => Some(Unit::SquareFootPerSecond),
14723            "S4" => Some(Unit::SquareMetrePerSecond),
14724            "SAN" => Some(Unit::HalfYear6Months),
14725            "SCO" => Some(Unit::Score),
14726            "SCR" => Some(Unit::Scruple),
14727            "SEC" => Some(Unit::SecondUnitTime),
14728            "SET" => Some(Unit::Set),
14729            "SG" => Some(Unit::Segment),
14730            "SIE" => Some(Unit::Siemens),
14731            "SM3" => Some(Unit::StandardCubicMetre),
14732            "SMI" => Some(Unit::MileStatuteMile),
14733            "SQ" => Some(Unit::Square),
14734            "SQR" => Some(Unit::SquareRoofing),
14735            "SR" => Some(Unit::Strip),
14736            "STC" => Some(Unit::Stick),
14737            "STI" => Some(Unit::StoneUk),
14738            "STK" => Some(Unit::StickCigarette),
14739            "STL" => Some(Unit::StandardLitre),
14740            "STN" => Some(Unit::TonUsOrShortTonUkUs),
14741            "STW" => Some(Unit::Straw),
14742            "SW" => Some(Unit::Skein),
14743            "SX" => Some(Unit::Shipment),
14744            "SYR" => Some(Unit::Syringe),
14745            "T0" => Some(Unit::TelecommunicationLineInService),
14746            "T3" => Some(Unit::ThousandPiece),
14747            "TAH" => Some(Unit::KiloampereHourThousandAmpereHour),
14748            "TAN" => Some(Unit::TotalAcidNumber),
14749            "TI" => Some(Unit::ThousandSquareInch),
14750            "TIC" => Some(Unit::MetricTonIncludingContainer),
14751            "TIP" => Some(Unit::MetricTonIncludingInnerPackaging),
14752            "TKM" => Some(Unit::TonneKilometre),
14753            "TMS" => Some(Unit::KilogramImportedMeatLessOffal),
14754            "TNE" => Some(Unit::TonneMetricTon),
14755            "TP" => Some(Unit::TenPack),
14756            "TPI" => Some(Unit::TeethPerInch),
14757            "TPR" => Some(Unit::TenPair),
14758            "TQD" => Some(Unit::ThousandCubicMetrePerDay),
14759            "TRL" => Some(Unit::TrillionEur),
14760            "TST" => Some(Unit::TenSet),
14761            "TTS" => Some(Unit::TenThousandSticks),
14762            "U1" => Some(Unit::Treatment),
14763            "U2" => Some(Unit::Tablet),
14764            "UB" => Some(Unit::TelecommunicationLineInServiceAverage),
14765            "UC" => Some(Unit::TelecommunicationPort),
14766            "VA" => Some(Unit::VoltAmperePerKilogram),
14767            "VLT" => Some(Unit::Volt),
14768            "VP" => Some(Unit::PercentVolume),
14769            "W2" => Some(Unit::WetKilo),
14770            "WA" => Some(Unit::WattPerKilogram),
14771            "WB" => Some(Unit::WetPound),
14772            "WCD" => Some(Unit::Cord),
14773            "WE" => Some(Unit::WetTon),
14774            "WEB" => Some(Unit::Weber),
14775            "WEE" => Some(Unit::Week),
14776            "WG" => Some(Unit::WineGallon),
14777            "WHR" => Some(Unit::WattHour),
14778            "WM" => Some(Unit::WorkingMonth),
14779            "WSD" => Some(Unit::Standard),
14780            "WTT" => Some(Unit::Watt),
14781            "X1" => Some(Unit::GuntersChain),
14782            "YDK" => Some(Unit::SquareYard),
14783            "YDQ" => Some(Unit::CubicYard),
14784            "YRD" => Some(Unit::Yard),
14785            "Z11" => Some(Unit::HangingContainer),
14786            "Z9" => Some(Unit::Nanomole),
14787            "ZP" => Some(Unit::Page),
14788            "ZZ" => Some(Unit::MutuallyDefined),
14789            "X1A" => Some(Unit::DrumSteel),
14790            "X1B" => Some(Unit::DrumAluminium),
14791            "X1D" => Some(Unit::DrumPlywood),
14792            "X1F" => Some(Unit::ContainerFlexible),
14793            "X1G" => Some(Unit::DrumFibre),
14794            "X1W" => Some(Unit::DrumWooden),
14795            "X2C" => Some(Unit::BarrelWooden),
14796            "X3A" => Some(Unit::JerricanSteel),
14797            "X3H" => Some(Unit::JerricanPlastic),
14798            "X43" => Some(Unit::BagSuperBulk),
14799            "X44" => Some(Unit::BagPolybag),
14800            "X4A" => Some(Unit::BoxSteel),
14801            "X4B" => Some(Unit::BoxAluminium),
14802            "X4C" => Some(Unit::BoxNaturalWood),
14803            "X4D" => Some(Unit::BoxPlywood),
14804            "X4F" => Some(Unit::BoxReconstitutedWood),
14805            "X4G" => Some(Unit::BoxFibreboard),
14806            "X4H" => Some(Unit::BoxPlastic),
14807            "X5H" => Some(Unit::BagWovenPlastic),
14808            "X5L" => Some(Unit::BagTextile),
14809            "X5M" => Some(Unit::BagPaper),
14810            "X6H" => Some(Unit::CompositePackagingPlasticReceptacle),
14811            "X6P" => Some(Unit::CompositePackagingGlassReceptacle),
14812            "X7A" => Some(Unit::CaseCar),
14813            "X7B" => Some(Unit::CaseWooden),
14814            "X8A" => Some(Unit::PalletWooden),
14815            "X8B" => Some(Unit::CrateWooden),
14816            "X8C" => Some(Unit::BundleWooden),
14817            "XAA" => Some(Unit::IntermediateBulkContainerRigidPlastic),
14818            "XAB" => Some(Unit::ReceptacleFibre),
14819            "XAC" => Some(Unit::ReceptaclePaper),
14820            "XAD" => Some(Unit::ReceptacleWooden),
14821            "XAE" => Some(Unit::Aerosol),
14822            "XAF" => Some(Unit::PalletModularCollars80cms60cms),
14823            "XAG" => Some(Unit::PalletShrinkwrapped),
14824            "XAH" => Some(Unit::Pallet100cms110cms),
14825            "XAI" => Some(Unit::Clamshell),
14826            "XAJ" => Some(Unit::Cone),
14827            "XAL" => Some(Unit::Ball_Dup),
14828            "XAM" => Some(Unit::AmpouleNonProtected),
14829            "XAP" => Some(Unit::AmpouleProtected),
14830            "XAT" => Some(Unit::Atomizer),
14831            "XAV" => Some(Unit::Capsule),
14832            "XB4" => Some(Unit::Belt),
14833            "XBA" => Some(Unit::Barrel),
14834            "XBB" => Some(Unit::Bobbin),
14835            "XBC" => Some(Unit::BottlecrateBottlerack),
14836            "XBD" => Some(Unit::Board),
14837            "XBE" => Some(Unit::Bundle),
14838            "XBF" => Some(Unit::BalloonNonProtected),
14839            "XBG" => Some(Unit::Bag),
14840            "XBH" => Some(Unit::Bunch),
14841            "XBI" => Some(Unit::Bin),
14842            "XBJ" => Some(Unit::Bucket),
14843            "XBK" => Some(Unit::Basket),
14844            "XBL" => Some(Unit::BaleCompressed),
14845            "XBM" => Some(Unit::Basin),
14846            "XBN" => Some(Unit::BaleNonCompressed),
14847            "XBO" => Some(Unit::BottleNonProtectedCylindrical),
14848            "XBP" => Some(Unit::BalloonProtected),
14849            "XBQ" => Some(Unit::BottleProtectedCylindrical),
14850            "XBR" => Some(Unit::Bar),
14851            "XBS" => Some(Unit::BottleNonProtectedBulbous),
14852            "XBT" => Some(Unit::Bolt),
14853            "XBU" => Some(Unit::Butt),
14854            "XBV" => Some(Unit::BottleProtectedBulbous),
14855            "XBW" => Some(Unit::BoxForLiquids),
14856            "XBX" => Some(Unit::Box),
14857            "XBY" => Some(Unit::BoardInBundleBunchTruss),
14858            "XBZ" => Some(Unit::BarsInBundleBunchTruss),
14859            "XCA" => Some(Unit::CanRectangular),
14860            "XCB" => Some(Unit::CrateBeer),
14861            "XCC" => Some(Unit::Churn),
14862            "XCD" => Some(Unit::CanWithHandleAndSpout),
14863            "XCE" => Some(Unit::Creel),
14864            "XCF" => Some(Unit::Coffer),
14865            "XCG" => Some(Unit::Cage),
14866            "XCH" => Some(Unit::Chest),
14867            "XCI" => Some(Unit::Canister),
14868            "XCJ" => Some(Unit::Coffin),
14869            "XCK" => Some(Unit::Cask),
14870            "XCL" => Some(Unit::Coil),
14871            "XCM" => Some(Unit::Card_Dup),
14872            "XCN" => Some(Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment),
14873            "XCO" => Some(Unit::CarboyNonProtected),
14874            "XCP" => Some(Unit::CarboyProtected),
14875            "XCQ" => Some(Unit::Cartridge),
14876            "XCR" => Some(Unit::Crate),
14877            "XCS" => Some(Unit::Case),
14878            "XCT" => Some(Unit::Carton),
14879            "XCU" => Some(Unit::Cup),
14880            "XCV" => Some(Unit::Cover),
14881            "XCW" => Some(Unit::CageRoll),
14882            "XCX" => Some(Unit::CanCylindrical),
14883            "XCY" => Some(Unit::Cylinder),
14884            "XCZ" => Some(Unit::Canvas),
14885            "XDA" => Some(Unit::CrateMultipleLayerPlastic),
14886            "XDB" => Some(Unit::CrateMultipleLayerWooden),
14887            "XDC" => Some(Unit::CrateMultipleLayerCardboard),
14888            "XDG" => Some(Unit::CageCommonwealthHandlingEquipmentPoolChep),
14889            "XDH" => Some(Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox),
14890            "XDI" => Some(Unit::DrumIron),
14891            "XDJ" => Some(Unit::DemijohnNonProtected),
14892            "XDK" => Some(Unit::CrateBulkCardboard),
14893            "XDL" => Some(Unit::CrateBulkPlastic),
14894            "XDM" => Some(Unit::CrateBulkWooden),
14895            "XDN" => Some(Unit::Dispenser),
14896            "XDP" => Some(Unit::DemijohnProtected),
14897            "XDR" => Some(Unit::Drum),
14898            "XDS" => Some(Unit::TrayOneLayerNoCoverPlastic),
14899            "XDT" => Some(Unit::TrayOneLayerNoCoverWooden),
14900            "XDU" => Some(Unit::TrayOneLayerNoCoverPolystyrene),
14901            "XDV" => Some(Unit::TrayOneLayerNoCoverCardboard),
14902            "XDW" => Some(Unit::TrayTwoLayersNoCoverPlasticTray),
14903            "XDX" => Some(Unit::TrayTwoLayersNoCoverWooden),
14904            "XDY" => Some(Unit::TrayTwoLayersNoCoverCardboard),
14905            "XEC" => Some(Unit::BagPlastic),
14906            "XED" => Some(Unit::CaseWithPalletBase),
14907            "XEE" => Some(Unit::CaseWithPalletBaseWooden),
14908            "XEF" => Some(Unit::CaseWithPalletBaseCardboard),
14909            "XEG" => Some(Unit::CaseWithPalletBasePlastic),
14910            "XEH" => Some(Unit::CaseWithPalletBaseMetal),
14911            "XEI" => Some(Unit::CaseIsothermic),
14912            "XEN" => Some(Unit::Envelope),
14913            "XFB" => Some(Unit::Flexibag),
14914            "XFC" => Some(Unit::CrateFruit),
14915            "XFD" => Some(Unit::CrateFramed),
14916            "XFE" => Some(Unit::Flexitank),
14917            "XFI" => Some(Unit::Firkin),
14918            "XFL" => Some(Unit::Flask),
14919            "XFO" => Some(Unit::Footlocker),
14920            "XFP" => Some(Unit::Filmpack),
14921            "XFR" => Some(Unit::Frame),
14922            "XFT" => Some(Unit::Foodtainer),
14923            "XFW" => Some(Unit::CartFlatbed),
14924            "XFX" => Some(Unit::BagFlexibleContainer),
14925            "XGB" => Some(Unit::BottleGas),
14926            "XGI" => Some(Unit::Girder),
14927            "XGL" => Some(Unit::ContainerGallon),
14928            "XGR" => Some(Unit::ReceptacleGlass),
14929            "XGU" => Some(Unit::TrayContainingHorizontallyStackedFlatItems),
14930            "XGY" => Some(Unit::BagGunny),
14931            "XGZ" => Some(Unit::GirdersInBundleBunchTruss),
14932            "XHA" => Some(Unit::BasketWithHandlePlastic),
14933            "XHB" => Some(Unit::BasketWithHandleWooden),
14934            "XHC" => Some(Unit::BasketWithHandleCardboard),
14935            "XHG" => Some(Unit::Hogshead),
14936            "XHN" => Some(Unit::Hanger),
14937            "XHR" => Some(Unit::Hamper),
14938            "XIA" => Some(Unit::PackageDisplayWooden),
14939            "XIB" => Some(Unit::PackageDisplayCardboard),
14940            "XIC" => Some(Unit::PackageDisplayPlastic),
14941            "XID" => Some(Unit::PackageDisplayMetal),
14942            "XIE" => Some(Unit::PackageShow),
14943            "XIF" => Some(Unit::PackageFlow),
14944            "XIG" => Some(Unit::PackagePaperWrapped),
14945            "XIH" => Some(Unit::DrumPlastic),
14946            "XIK" => Some(Unit::PackageCardboardWithBottleGripHoles),
14947            "XIL" => Some(Unit::TrayRigidLiddedStackableCenTs144822002),
14948            "XIN" => Some(Unit::Ingot),
14949            "XIZ" => Some(Unit::IngotsInBundleBunchTruss),
14950            "XJB" => Some(Unit::BagJumbo),
14951            "XJC" => Some(Unit::JerricanRectangular),
14952            "XJG" => Some(Unit::Jug),
14953            "XJR" => Some(Unit::Jar),
14954            "XJT" => Some(Unit::Jutebag),
14955            "XJY" => Some(Unit::JerricanCylindrical),
14956            "XKG" => Some(Unit::Keg),
14957            "XKI" => Some(Unit::Kit_Dup),
14958            "XLE" => Some(Unit::Luggage),
14959            "XLG" => Some(Unit::Log),
14960            "XLT" => Some(Unit::Lot),
14961            "XLU" => Some(Unit::Lug),
14962            "XLV" => Some(Unit::Liftvan),
14963            "XLZ" => Some(Unit::LogsInBundleBunchTruss),
14964            "XMA" => Some(Unit::CrateMetal),
14965            "XMB" => Some(Unit::BagMultiply),
14966            "XMC" => Some(Unit::CrateMilk),
14967            "XME" => Some(Unit::ContainerMetal),
14968            "XMR" => Some(Unit::ReceptacleMetal),
14969            "XMS" => Some(Unit::SackMultiWall),
14970            "XMT" => Some(Unit::Mat),
14971            "XMW" => Some(Unit::ReceptaclePlasticWrapped),
14972            "XMX" => Some(Unit::Matchbox),
14973            "XNA" => Some(Unit::NotAvailable),
14974            "XNE" => Some(Unit::UnpackedOrUnpackaged),
14975            "XNF" => Some(Unit::UnpackedOrUnpackagedSingleUnit),
14976            "XNG" => Some(Unit::UnpackedOrUnpackagedMultipleUnits),
14977            "XNS" => Some(Unit::Nest),
14978            "XNT" => Some(Unit::Net),
14979            "XNU" => Some(Unit::NetTubePlastic),
14980            "XNV" => Some(Unit::NetTubeTextile),
14981            "XO1" => Some(Unit::TwoSidedCageOnWheelsWithFixingStrap),
14982            "XO2" => Some(Unit::Trolley),
14983            "XO3" => Some(Unit::OnewayPalletIso012EuroPallet),
14984            "XO4" => Some(Unit::OnewayPalletIso111EuroPallet),
14985            "XO5" => Some(Unit::OnewayPalletIso221EuroPallet),
14986            "XO6" => Some(Unit::PalletWithExceptionalDimensions),
14987            "XO7" => Some(Unit::WoodenPallet40CmX80Cm),
14988            "XO8" => Some(Unit::PlasticPalletSrs60CmX80Cm),
14989            "XO9" => Some(Unit::PlasticPalletSrs80CmX120Cm),
14990            "XOA" => Some(Unit::PalletChep40CmX60Cm),
14991            "XOB" => Some(Unit::PalletChep80CmX120Cm),
14992            "XOC" => Some(Unit::PalletChep100CmX120Cm),
14993            "XOD" => Some(Unit::PalletAs40681993),
14994            "XOE" => Some(Unit::PalletIsoT11),
14995            "XOF" => Some(Unit::PlatformUnspecifiedWeightOrDimension),
14996            "XOG" => Some(Unit::PalletIso012EuroPallet),
14997            "XOH" => Some(Unit::PalletIso111EuroPallet),
14998            "XOI" => Some(Unit::PalletIso221EuroPallet),
14999            "XOJ" => Some(Unit::_14EuroPallet),
15000            "XOK" => Some(Unit::Block),
15001            "XOL" => Some(Unit::_18EuroPallet),
15002            "XOM" => Some(Unit::SyntheticPalletIso1),
15003            "XON" => Some(Unit::SyntheticPalletIso2),
15004            "XOP" => Some(Unit::WholesalerPallet),
15005            "XOQ" => Some(Unit::Pallet80X100Cm),
15006            "XOR" => Some(Unit::Pallet60X100Cm),
15007            "XOS" => Some(Unit::OnewayPallet),
15008            "XOT" => Some(Unit::Octabin),
15009            "XOU" => Some(Unit::ContainerOuter),
15010            "XOV" => Some(Unit::ReturnablePallet),
15011            "XOW" => Some(Unit::LargeBagPalletSized),
15012            "XOX" => Some(Unit::AWheeledPalletWithRaisedRim81X67X135),
15013            "XOY" => Some(Unit::AWheeledPalletWithRaisedRim81X72X135),
15014            "XOZ" => Some(Unit::WheeledPalletWithRaisedRim81X60X16),
15015            "XP1" => Some(Unit::ChepPallet60CmX80Cm),
15016            "XP2" => Some(Unit::Pan),
15017            "XP3" => Some(Unit::LprPallet60CmX80Cm),
15018            "XP4" => Some(Unit::LprPallet80CmX120Cm),
15019            "XPA" => Some(Unit::Packet),
15020            "XPB" => Some(Unit::PalletBoxCombinedOpenEndedBoxAndPallet),
15021            "XPC" => Some(Unit::Parcel),
15022            "XPD" => Some(Unit::PalletModularCollars80cms100cms),
15023            "XPE" => Some(Unit::PalletModularCollars80cms120cms),
15024            "XPF" => Some(Unit::Pen),
15025            "XPG" => Some(Unit::Plate),
15026            "XPH" => Some(Unit::Pitcher),
15027            "XPI" => Some(Unit::Pipe),
15028            "XPJ" => Some(Unit::Punnet),
15029            "XPK" => Some(Unit::Package),
15030            "XPL" => Some(Unit::Pail),
15031            "XPN" => Some(Unit::Plank),
15032            "XPO" => Some(Unit::Pouch),
15033            "XPP" => Some(Unit::Piece_Dup),
15034            "XPR" => Some(Unit::ReceptaclePlastic),
15035            "XPT" => Some(Unit::Pot),
15036            "XPU" => Some(Unit::Tray),
15037            "XPV" => Some(Unit::PipesInBundleBunchTruss),
15038            "XPX" => Some(Unit::Pallet),
15039            "XPY" => Some(Unit::PlatesInBundleBunchTruss),
15040            "XPZ" => Some(Unit::PlanksInBundleBunchTruss),
15041            "XQA" => Some(Unit::DrumSteelNonRemovableHead),
15042            "XQB" => Some(Unit::DrumSteelRemovableHead),
15043            "XQC" => Some(Unit::DrumAluminiumNonRemovableHead),
15044            "XQD" => Some(Unit::DrumAluminiumRemovableHead),
15045            "XQF" => Some(Unit::DrumPlasticNonRemovableHead),
15046            "XQG" => Some(Unit::DrumPlasticRemovableHead),
15047            "XQH" => Some(Unit::BarrelWoodenBungType),
15048            "XQJ" => Some(Unit::BarrelWoodenRemovableHead),
15049            "XQK" => Some(Unit::JerricanSteelNonRemovableHead),
15050            "XQL" => Some(Unit::JerricanSteelRemovableHead),
15051            "XQM" => Some(Unit::JerricanPlasticNonRemovableHead),
15052            "XQN" => Some(Unit::JerricanPlasticRemovableHead),
15053            "XQP" => Some(Unit::BoxWoodenNaturalWoodOrdinary),
15054            "XQQ" => Some(Unit::BoxWoodenNaturalWoodWithSiftProofWalls),
15055            "XQR" => Some(Unit::BoxPlasticExpanded),
15056            "XQS" => Some(Unit::BoxPlasticSolid),
15057            "XRD" => Some(Unit::Rod),
15058            "XRG" => Some(Unit::Ring),
15059            "XRJ" => Some(Unit::RackClothingHanger),
15060            "XRK" => Some(Unit::Rack),
15061            "XRL" => Some(Unit::Reel),
15062            "XRO" => Some(Unit::Roll),
15063            "XRT" => Some(Unit::Rednet),
15064            "XRZ" => Some(Unit::RodsInBundleBunchTruss),
15065            "XSA" => Some(Unit::Sack),
15066            "XSB" => Some(Unit::Slab),
15067            "XSC" => Some(Unit::CrateShallow),
15068            "XSD" => Some(Unit::Spindle),
15069            "XSE" => Some(Unit::SeaChest),
15070            "XSH" => Some(Unit::Sachet),
15071            "XSI" => Some(Unit::Skid),
15072            "XSK" => Some(Unit::CaseSkeleton),
15073            "XSL" => Some(Unit::Slipsheet),
15074            "XSM" => Some(Unit::Sheetmetal),
15075            "XSO" => Some(Unit::Spool),
15076            "XSP" => Some(Unit::SheetPlasticWrapping),
15077            "XSS" => Some(Unit::CaseSteel),
15078            "XST" => Some(Unit::Sheet),
15079            "XSU" => Some(Unit::Suitcase),
15080            "XSV" => Some(Unit::EnvelopeSteel),
15081            "XSW" => Some(Unit::Shrinkwrapped),
15082            "XSX" => Some(Unit::Set_Dup),
15083            "XSY" => Some(Unit::Sleeve),
15084            "XSZ" => Some(Unit::SheetsInBundleBunchTruss),
15085            "XT1" => Some(Unit::Tablet_Dup),
15086            "XTB" => Some(Unit::Tub),
15087            "XTC" => Some(Unit::TeaChest),
15088            "XTD" => Some(Unit::TubeCollapsible),
15089            "XTE" => Some(Unit::Tyre_Dup),
15090            "XTG" => Some(Unit::TankContainerGeneric),
15091            "XTI" => Some(Unit::Tierce),
15092            "XTK" => Some(Unit::TankRectangular),
15093            "XTL" => Some(Unit::TubWithLid),
15094            "XTN" => Some(Unit::Tin),
15095            "XTO" => Some(Unit::Tun),
15096            "XTR" => Some(Unit::Trunk),
15097            "XTS" => Some(Unit::Truss),
15098            "XTT" => Some(Unit::BagTote),
15099            "XTU" => Some(Unit::Tube),
15100            "XTV" => Some(Unit::TubeWithNozzle),
15101            "XTW" => Some(Unit::PalletTriwall),
15102            "XTY" => Some(Unit::TankCylindrical),
15103            "XTZ" => Some(Unit::TubesInBundleBunchTruss),
15104            "XUC" => Some(Unit::Uncaged),
15105            "XUN" => Some(Unit::Unit),
15106            "XVA" => Some(Unit::Vat),
15107            "XVG" => Some(Unit::BulkGasAt1031MbarAnd15C),
15108            "XVI" => Some(Unit::Vial),
15109            "XVK" => Some(Unit::Vanpack),
15110            "XVL" => Some(Unit::BulkLiquid),
15111            "XVN" => Some(Unit::Vehicle),
15112            "XVO" => Some(Unit::BulkSolidLargeParticlesNodules),
15113            "XVP" => Some(Unit::VacuumPacked),
15114            "XVQ" => Some(Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure),
15115            "XVR" => Some(Unit::BulkSolidGranularParticlesGrains),
15116            "XVS" => Some(Unit::BulkScrapMetal),
15117            "XVY" => Some(Unit::BulkSolidFineParticlesPowders),
15118            "XWA" => Some(Unit::IntermediateBulkContainer),
15119            "XWB" => Some(Unit::Wickerbottle),
15120            "XWC" => Some(Unit::IntermediateBulkContainerSteel),
15121            "XWD" => Some(Unit::IntermediateBulkContainerAluminium),
15122            "XWF" => Some(Unit::IntermediateBulkContainerMetal),
15123            "XWG" => Some(Unit::IntermediateBulkContainerSteelPressurised10Kpa),
15124            "XWH" => Some(Unit::IntermediateBulkContainerAluminiumPressurised10Kpa),
15125            "XWJ" => Some(Unit::IntermediateBulkContainerMetalPressure10Kpa),
15126            "XWK" => Some(Unit::IntermediateBulkContainerSteelLiquid),
15127            "XWL" => Some(Unit::IntermediateBulkContainerAluminiumLiquid),
15128            "XWM" => Some(Unit::IntermediateBulkContainerMetalLiquid),
15129            "XWN" => Some(Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner),
15130            "XWP" => Some(Unit::IntermediateBulkContainerWovenPlasticCoated),
15131            "XWQ" => Some(Unit::IntermediateBulkContainerWovenPlasticWithLiner),
15132            "XWR" => Some(Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner),
15133            "XWS" => Some(Unit::IntermediateBulkContainerPlasticFilm),
15134            "XWT" => Some(Unit::IntermediateBulkContainerTextileWithOutCoatLiner),
15135            "XWU" => Some(Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner),
15136            "XWV" => Some(Unit::IntermediateBulkContainerTextileCoated),
15137            "XWW" => Some(Unit::IntermediateBulkContainerTextileWithLiner),
15138            "XWX" => Some(Unit::IntermediateBulkContainerTextileCoatedAndLiner),
15139            "XWY" => Some(Unit::IntermediateBulkContainerPlywoodWithInnerLiner),
15140            "XWZ" => Some(Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner),
15141            "XXA" => Some(Unit::BagWovenPlasticWithoutInnerCoatLiner),
15142            "XXB" => Some(Unit::BagWovenPlasticSiftProof),
15143            "XXC" => Some(Unit::BagWovenPlasticWaterResistant),
15144            "XXD" => Some(Unit::BagPlasticsFilm),
15145            "XXF" => Some(Unit::BagTextileWithoutInnerCoatLiner),
15146            "XXG" => Some(Unit::BagTextileSiftProof),
15147            "XXH" => Some(Unit::BagTextileWaterResistant),
15148            "XXJ" => Some(Unit::BagPaperMultiWall),
15149            "XXK" => Some(Unit::BagPaperMultiWallWaterResistant),
15150            "XYA" => Some(Unit::CompositePackagingPlasticReceptacleInSteelDrum),
15151            "XYB" => Some(Unit::CompositePackagingPlasticReceptacleInSteelCrateBox),
15152            "XYC" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumDrum),
15153            "XYD" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumCrate),
15154            "XYF" => Some(Unit::CompositePackagingPlasticReceptacleInWoodenBox),
15155            "XYG" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodDrum),
15156            "XYH" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodBox),
15157            "XYJ" => Some(Unit::CompositePackagingPlasticReceptacleInFibreDrum),
15158            "XYK" => Some(Unit::CompositePackagingPlasticReceptacleInFibreboardBox),
15159            "XYL" => Some(Unit::CompositePackagingPlasticReceptacleInPlasticDrum),
15160            "XYM" => Some(Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox),
15161            "XYN" => Some(Unit::CompositePackagingGlassReceptacleInSteelDrum),
15162            "XYP" => Some(Unit::CompositePackagingGlassReceptacleInSteelCrateBox),
15163            "XYQ" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumDrum),
15164            "XYR" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumCrate),
15165            "XYS" => Some(Unit::CompositePackagingGlassReceptacleInWoodenBox),
15166            "XYT" => Some(Unit::CompositePackagingGlassReceptacleInPlywoodDrum),
15167            "XYV" => Some(Unit::CompositePackagingGlassReceptacleInWickerworkHamper),
15168            "XYW" => Some(Unit::CompositePackagingGlassReceptacleInFibreDrum),
15169            "XYX" => Some(Unit::CompositePackagingGlassReceptacleInFibreboardBox),
15170            "XYY" => Some(Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack),
15171            "XYZ" => Some(Unit::CompositePackagingGlassReceptacleInSolidPlasticPack),
15172            "XZA" => Some(Unit::IntermediateBulkContainerPaperMultiWall),
15173            "XZB" => Some(Unit::BagLarge),
15174            "XZC" => Some(Unit::IntermediateBulkContainerPaperMultiWallWaterResistant),
15175            "XZD" => Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids),
15176            "XZF" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids),
15177            "XZG" => {
15178                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised)
15179            }
15180            "XZH" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised),
15181            "XZJ" => {
15182                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids)
15183            }
15184            "XZK" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids),
15185            "XZL" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticSolids),
15186            "XZM" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids),
15187            "XZN" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised),
15188            "XZP" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised),
15189            "XZQ" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids),
15190            "XZR" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids),
15191            "XZS" => Some(Unit::IntermediateBulkContainerComposite),
15192            "XZT" => Some(Unit::IntermediateBulkContainerFibreboard),
15193            "XZU" => Some(Unit::IntermediateBulkContainerFlexible),
15194            "XZV" => Some(Unit::IntermediateBulkContainerMetalOtherThanSteel),
15195            "XZW" => Some(Unit::IntermediateBulkContainerNaturalWood),
15196            "XZX" => Some(Unit::IntermediateBulkContainerPlywood),
15197            "XZY" => Some(Unit::IntermediateBulkContainerReconstitutedWood),
15198            "XZZ" => Some(Unit::MutuallyDefined_Dup),
15199            _ => None,
15200        }
15201    }
15202}