numru-units 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ module Numru
2
+ module Units
3
+ VERSION = "1.9.0"
4
+ end
5
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'numru/units/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "numru-units"
8
+ spec.version = Numru::Units::VERSION
9
+ spec.authors = ["Eizi Toyoda","Takeshi Horinouchi"]
10
+ spec.email = ["eriko@gfd-dennou.org"]
11
+ spec.summary = %q{Class to handle units of physical quantities}
12
+ spec.description = %q{This is a class to handle units of physical quantities. It covers most functionality of UNIDATA's UDUNITS Library, however, with a more sophisticated handling of string expressions. See the documentation for more infomation.}
13
+ spec.homepage = 'http://www.gfd-dennou.org/arch/ruby/products/numru-units/'
14
+ spec.licenses = ["Takeshi Horinouchi", "GFD Dennou Club"]
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ #spec.extra_rdoc_files = ['./doc/units.rd']
18
+ #spec.extra_rdoc_files = spec.files.grep(%r{^(doc)/})
19
+ #spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ #spec.add_development_dependency "bundler", "~> 1.7"
24
+ #spec.add_development_dependency "rake", "~> 10.0"
25
+ end
@@ -1,10 +1,8 @@
1
1
  all: units.rb
2
2
 
3
3
  units.rb: units.racc
4
- racc -E -l units.racc -o tmp.rb
5
- (ruby -n -e 'if /^class Units/; print("module NumRu\n",$$_); elsif /end\s*#\s*class\s*Units/; print($$_,"end # module NumRu\n"); else print $$_; end' tmp.rb > units.rb)
4
+ racc units.racc -o units.rb
6
5
  (( echo ; echo '####################' ; echo 'if $$0 == __FILE__' ; tail -n +2 test.rb | ruby -p -e 'print " "' ; echo 'end' ) >> units.rb)
7
- @rm tmp.rb
8
6
 
9
7
  test: units.rb
10
8
  ruby test.rb
@@ -13,8 +11,8 @@ backup: units.shar
13
11
  scp units.shar toyoda@www.gfd-dennou.org:tmp/
14
12
  scp units.shar toyoda@pandora0.sytes.net:tmp/
15
13
 
16
- RSRCS = rules.rb node.rb namenode.rb utab.rb numbernode.rb timenode.rb \
17
- pownode.rb mulnode.rb shiftnode.rb lex.rb
14
+ RSRCS = rules.rb version.rb node.rb namenode.rb utab.rb numbernode.rb \
15
+ timenode.rb pownode.rb mulnode.rb shiftnode.rb lex.rb
18
16
 
19
17
  utab.rb: makeutab.rb dcunits.txt
20
18
  ruby makeutab.rb dcunits.txt > $@.tmp
@@ -1,9 +1,24 @@
1
+ # Unit description table
2
+ #
3
+ # Each line consitsts of
4
+ #
5
+ # name mode definition
6
+ #
7
+ # Here, mode is S, P, or N:
8
+ #
9
+ # S: the unit is in the sigular form only (does not take the plural form),
10
+ # and it can be prefixed. (such as A --> mA etc.)
11
+ # P: the unit can take the plural form (such as second --> seconds).
12
+ # Prefixes are not allowed.
13
+ # N: same as S, but the unit cannot be prefixed (thus it is used only
14
+ # in the original form).
15
+ #
1
16
  s S
2
17
  second P s
3
18
  m S
4
19
  metre P m
5
20
  meter P metre
6
- kg S
21
+ kg N
7
22
  kilogram P kg
8
23
  A S
9
24
  ampere P A
@@ -18,6 +33,8 @@ rad S
18
33
  radian P rad
19
34
  sr S
20
35
  steradian P sr
36
+ cd S
37
+ candela P cd
21
38
  #
22
39
  # --- standard named units ---
23
40
  #
@@ -75,9 +92,9 @@ pi N 3.141592653589793238462
75
92
  #
76
93
  # --- nondimensional units ---
77
94
  #
78
- percent S 1e-2
79
- % S 1e-2
80
- permil S 1e-3
95
+ percent P 1e-2
96
+ % N 1e-2
97
+ permil N 1e-3
81
98
  #
82
99
  # --- length ---
83
100
  #
@@ -113,7 +130,7 @@ hour P 60 min
113
130
  hr S 60 min
114
131
  h S 60 min
115
132
  day P 24 hour
116
- d S 24 hour
133
+ d N 24 hour
117
134
  Julian_year P 365.25 day
118
135
  common_year P 365 day
119
136
  #
@@ -210,3 +227,7 @@ conventional_mercury S gravity 13595.10 kg/m3
210
227
  mercury S conventional_mercury
211
228
  Hg S mercury
212
229
  hg S mercury
230
+ #
231
+ # --- meteorological ---
232
+ #
233
+ gpm N m
data/src/lex.rb CHANGED
@@ -108,7 +108,7 @@ def next_token
108
108
  end
109
109
 
110
110
  if :TIME_SEEN === @lexstat \
111
- and @copy.sub!(%r{^UTC[ \t]*}, '') then
111
+ and @copy.sub!(%r{^(UTC|Z)[ \t]*}, '') then
112
112
  @lexstat = nil
113
113
  return [:ZONE, 0]
114
114
  end
@@ -1,4 +1,4 @@
1
- class Units
1
+ class NumRu::Units
2
2
 
3
3
  token INT ERR SHIFT SPACE MULTIPLY DIVIDE EXPONENT REAL NAME DATE TIME ZONE
4
4
  options no_result_var
@@ -7,7 +7,7 @@ rule
7
7
 
8
8
  unit_spec:
9
9
  /* { yyaccept; } */ /* <-- to acccept empty unit_spec */
10
- | origin_exp { yyaccept; }
10
+ | origin_exp { val[0] }
11
11
  | error { yyerrok }
12
12
  ;
13
13
 
@@ -1,4 +1,4 @@
1
- require 'units' # Use require "numru/units" after installation.
1
+ require './units' # Use require "numru/units" after installation.
2
2
  include NumRu
3
3
 
4
4
  def assert(test, seikai)
@@ -8,7 +8,7 @@ end
8
8
 
9
9
  puts "=== reduce1 ==="
10
10
 
11
- assert Units.new('').reduce1.to_s, ""
11
+ assert Units.new('').reduce1.to_s, "1"
12
12
  assert Units.new('m').reduce1.to_s, "m"
13
13
  assert Units.new('3').reduce1.to_s, "3"
14
14
  assert Units.new('3.14').reduce1.to_s, "3.14"
@@ -75,25 +75,25 @@ assert Units.new('((a.b)^2 a4 b @ now)^2 @ 273.15').reduce4.to_s,
75
75
  assert Units.new('km2').reduce4.to_s, "km2"
76
76
  assert Units.new('hours.hour').reduce4.to_s, "hour2"
77
77
  assert Units.new('(10)^2').reduce4.to_s, "100"
78
- assert Units.new('100/10').reduce4.to_s, "10.0"
79
- assert Units.new('(10)^2/100').reduce4.to_s, "1.0"
78
+ assert Units.new('100/10').reduce4.to_s, "10"
79
+ assert Units.new('(10)^2/100').reduce4.to_s, "1"
80
80
 
81
81
  puts "=== reduce5 ==="
82
82
 
83
83
  assert Units.new('km2').reduce5.to_s, "1000000 m2"
84
- assert Units.new('(10)^2/100').reduce5.to_s, "1.0"
84
+ assert Units.new('(10)^2/100').reduce5.to_s, "1"
85
85
 
86
86
  assert Units.new('hPa').reduce5.to_s, "100 kg.m-1 s-2"
87
- assert Units.new('mb').reduce5.to_s, "100.0 kg.m-1 s-2"
87
+ assert Units.new('mb').reduce5.to_s, "100 kg.m-1 s-2"
88
88
 
89
- assert Units.new('hPa/mb').reduce5.to_s, "1.0"
89
+ assert Units.new('hPa/mb').reduce5.to_s, "1"
90
90
 
91
91
  assert Units.new('(K @ 273.15)@ 10').reduce5.to_s, "(K @ 283.15)"
92
92
 
93
93
  puts "=== APPLICATIONS ==="
94
94
 
95
95
  assert Units.new('km @ 2').convert(3, Units.new('m @ 100')), 4900
96
- assert Units.new('degree_F').convert(32, Units.new('K')).to_s, "273.15"
96
+ assert Units.new('degree_F').convert(32, Units.new('K')).to_s, ((32+459.67)*(1.8**-1)).to_s
97
97
 
98
98
  u1 = Units.new('m/s')
99
99
  u2 = Units.new('mm/s')
@@ -1,4 +1,4 @@
1
- class Units
1
+ class NumRu::Units
2
2
 
3
3
  token INT ERR SHIFT SPACE MULTIPLY DIVIDE EXPONENT REAL NAME DATE TIME ZONE
4
4
  options no_result_var
@@ -7,7 +7,7 @@ rule
7
7
 
8
8
  unit_spec:
9
9
  /* { yyaccept; } */ /* <-- to acccept empty unit_spec */
10
- | origin_exp { yyaccept; }
10
+ | origin_exp { val[0] }
11
11
  | error { yyerrok }
12
12
  ;
13
13
 
@@ -63,6 +63,8 @@ require 'date'
63
63
 
64
64
  ---- inner
65
65
 
66
+ VERSION = "1.9"
67
+
66
68
  =begin
67
69
  = class Node
68
70
  Node is a parent class for classes of parse tree node.
@@ -353,7 +355,7 @@ UDEFS = {
353
355
  "astronomical_unit" => "1.49597870e11 m",
354
356
  "astronomical_units" => "1.49597870e11 m", "atm" => "atmosphere",
355
357
  "atmosphere" => "101325 Pa", "bar" => "1e6 dyn.cm-2",
356
- "cal" => "calorie", "calorie" => "4.18605 J",
358
+ "cal" => "calorie", "calorie" => "4.18605 J", "candela" => "cd",
357
359
  "celsius" => "K @ 273.15", "centigrade" => "K @ 273.15",
358
360
  "century" => "100 year", "chain" => "22 yard",
359
361
  "common_year" => "365 day",
@@ -375,30 +377,30 @@ UDEFS = {
375
377
  "fahrenheit" => "degree_F", "farad" => "coulomb/volt",
376
378
  "feet" => "foot", "fermi" => "1.0e-15 m", "foot" => "12 inch",
377
379
  "force" => "9.80665 m.s-2", "ft" => "foot", "g" => "kg/1000",
378
- "gal" => "cm s-2", "gauss" => "T / 10000", "gram" => "kg/1000",
379
- "gravity" => "9.806650 meter/second2", "h" => "60 min",
380
- "hectare" => "100 are", "hertz" => "Hz", "hg" => "mercury",
381
- "horse_power" => "75 m kilogram-force / s", "hour" => "60 min",
382
- "hr" => "60 min", "in" => "inch", "inch" => "2.54 cm",
383
- "joule" => "J", "kelvin" => "K", "kgf" => "kilogram-force",
384
- "kilogram" => "kg", "knot" => "nautical_mile / hour",
385
- "kph" => "km / hour", "lb" => "pound",
386
- "light_speed" => "299792458 m/s", "light_year" => "9.46e15 m",
387
- "light_years" => "9.46e15 m", "litre" => "1.0e-3 m3",
388
- "lm" => "cd.sr", "lx" => "lm.m-2", "ly" => "light_year",
389
- "mb" => "bar / 1000", "mercury" => "conventional_mercury",
390
- "meter" => "metre", "metre" => "m", "mgal" => "cm s-2 / 1000",
391
- "micron" => "1.0e-6 m", "mile" => "1760 yard",
392
- "millibar" => "bar / 1000", "min" => "60 s", "minute" => "60 s",
393
- "minute_angle" => "pi.rad/180/60", "mole" => "mol",
394
- "mon" => "month", "month" => "6 pentad", "mph" => "mile / hour",
395
- "nautical_mile" => "1852 m", "nautical_miles" => "1852 m",
396
- "newton" => "N", "ohm" => "V/A", "ounce" => "pound / 16",
397
- "oz" => "ounce", "parsec" => "3.0857e16 m", "pascal" => "Pa",
398
- "pc" => "parsec", "percent" => "1e-2", "permil" => "1e-3",
399
- "pi" => "3.141592653589793238462", "poise" => "dyn s / cm2",
400
- "pound" => "453.6 g", "psi" => "pound-force / inch2",
401
- "radian" => "rad", "second" => "s",
380
+ "gal" => "cm s-2", "gauss" => "T / 10000", "gpm" => "m",
381
+ "gram" => "kg/1000", "gravity" => "9.806650 meter/second2",
382
+ "h" => "60 min", "hectare" => "100 are", "hertz" => "Hz",
383
+ "hg" => "mercury", "horse_power" => "75 m kilogram-force / s",
384
+ "hour" => "60 min", "hr" => "60 min", "in" => "inch",
385
+ "inch" => "2.54 cm", "joule" => "J", "kelvin" => "K",
386
+ "kgf" => "kilogram-force", "kilogram" => "kg",
387
+ "knot" => "nautical_mile / hour", "kph" => "km / hour",
388
+ "lb" => "pound", "light_speed" => "299792458 m/s",
389
+ "light_year" => "9.46e15 m", "light_years" => "9.46e15 m",
390
+ "litre" => "1.0e-3 m3", "lm" => "cd.sr", "lx" => "lm.m-2",
391
+ "ly" => "light_year", "mb" => "bar / 1000",
392
+ "mercury" => "conventional_mercury", "meter" => "metre",
393
+ "metre" => "m", "mgal" => "cm s-2 / 1000", "micron" => "1.0e-6 m",
394
+ "mile" => "1760 yard", "millibar" => "bar / 1000", "min" => "60 s",
395
+ "minute" => "60 s", "minute_angle" => "pi.rad/180/60",
396
+ "mole" => "mol", "mon" => "month", "month" => "6 pentad",
397
+ "mph" => "mile / hour", "nautical_mile" => "1852 m",
398
+ "nautical_miles" => "1852 m", "newton" => "N", "ohm" => "V/A",
399
+ "ounce" => "pound / 16", "oz" => "ounce", "parsec" => "3.0857e16 m",
400
+ "pascal" => "Pa", "pc" => "parsec", "percent" => "1e-2",
401
+ "permil" => "1e-3", "pi" => "3.141592653589793238462",
402
+ "poise" => "dyn s / cm2", "pound" => "453.6 g",
403
+ "psi" => "pound-force / inch2", "radian" => "rad", "second" => "s",
402
404
  "second_angle" => "pi.rad/180/60/60", "steradian" => "sr",
403
405
  "stokes" => "cm2 / s", "t" => "ton", "tesla" => "Wb.m-2",
404
406
  "ton" => "1000 kg", "tonne" => "ton", "torr" => "133.322 Pa",
@@ -406,7 +408,7 @@ UDEFS = {
406
408
  "yd" => "yard", "year" => "12 month", "yr" => "year",
407
409
  }
408
410
  UALIASES = {
409
- "Celsiuses" => [0, "Celsius"], "E%" => [18, "%"], "EA" => [18, "A"],
411
+ "Celsiuses" => [0, "Celsius"], "EA" => [18, "A"],
410
412
  "EAu" => [18, "Au"], "EBq" => [18, "Bq"], "EC" => [18, "C"],
411
413
  "EF" => [18, "F"], "EG" => [18, "G"], "EGal" => [18, "Gal"],
412
414
  "EGy" => [18, "Gy"], "EH" => [18, "H"], "EHg" => [18, "Hg"],
@@ -416,9 +418,9 @@ UALIASES = {
416
418
  "ESv" => [18, "Sv"], "ET" => [18, "T"], "EV" => [18, "V"],
417
419
  "EW" => [18, "W"], "EWb" => [18, "Wb"], "Ea" => [18, "a"],
418
420
  "Eac" => [18, "ac"], "Eatm" => [18, "atm"], "Ebar" => [18, "bar"],
419
- "Ecal" => [18, "cal"],
421
+ "Ecal" => [18, "cal"], "Ecd" => [18, "cd"],
420
422
  "Econventional_mercury" => [18, "conventional_mercury"],
421
- "Ed" => [18, "d"], "EdegC" => [18, "degC"], "EdegF" => [18, "degF"],
423
+ "EdegC" => [18, "degC"], "EdegF" => [18, "degF"],
422
424
  "Edeg_C" => [18, "deg_C"], "Edeg_F" => [18, "deg_F"],
423
425
  "EdegreeC" => [18, "degreeC"], "EdegreeF" => [18, "degreeF"],
424
426
  "Edegree_C" => [18, "degree_C"], "Edegree_E" => [18, "degree_E"],
@@ -437,17 +439,15 @@ UALIASES = {
437
439
  "Eerg" => [18, "erg"], "Eforce" => [18, "force"], "Eg" => [18, "g"],
438
440
  "Egravity" => [18, "gravity"], "Eh" => [18, "h"],
439
441
  "Ehg" => [18, "hg"], "Ehr" => [18, "hr"], "Ein" => [18, "in"],
440
- "Ekg" => [18, "kg"], "Ekgf" => [18, "kgf"], "Ekph" => [18, "kph"],
441
- "Elb" => [18, "lb"], "Elm" => [18, "lm"], "Elx" => [18, "lx"],
442
- "Ely" => [18, "ly"], "Em" => [18, "m"], "Emb" => [18, "mb"],
442
+ "Ekgf" => [18, "kgf"], "Ekph" => [18, "kph"], "Elb" => [18, "lb"],
443
+ "Elm" => [18, "lm"], "Elx" => [18, "lx"], "Ely" => [18, "ly"],
444
+ "Em" => [18, "m"], "Emb" => [18, "mb"],
443
445
  "Emercury" => [18, "mercury"], "Emgal" => [18, "mgal"],
444
446
  "Emin" => [18, "min"], "Emol" => [18, "mol"], "Emon" => [18, "mon"],
445
447
  "Emph" => [18, "mph"], "Eohm" => [18, "ohm"], "Eoz" => [18, "oz"],
446
- "Epc" => [18, "pc"], "Epercent" => [18, "percent"],
447
- "Epermil" => [18, "permil"], "Epsi" => [18, "psi"],
448
- "Erad" => [18, "rad"], "Es" => [18, "s"], "Esr" => [18, "sr"],
449
- "Et" => [18, "t"], "Eyr" => [18, "yr"],
450
- "Fahrenheits" => [0, "Fahrenheit"], "G%" => [9, "%"],
448
+ "Epc" => [18, "pc"], "Epsi" => [18, "psi"], "Erad" => [18, "rad"],
449
+ "Es" => [18, "s"], "Esr" => [18, "sr"], "Et" => [18, "t"],
450
+ "Eyr" => [18, "yr"], "Fahrenheits" => [0, "Fahrenheit"],
451
451
  "GA" => [9, "A"], "GAu" => [9, "Au"], "GBq" => [9, "Bq"],
452
452
  "GC" => [9, "C"], "GF" => [9, "F"], "GG" => [9, "G"],
453
453
  "GGal" => [9, "Gal"], "GGy" => [9, "Gy"], "GH" => [9, "H"],
@@ -457,9 +457,9 @@ UALIASES = {
457
457
  "GSt" => [9, "St"], "GSv" => [9, "Sv"], "GT" => [9, "T"],
458
458
  "GV" => [9, "V"], "GW" => [9, "W"], "GWb" => [9, "Wb"],
459
459
  "Ga" => [9, "a"], "Gac" => [9, "ac"], "Gatm" => [9, "atm"],
460
- "Gbar" => [9, "bar"], "Gcal" => [9, "cal"],
460
+ "Gbar" => [9, "bar"], "Gcal" => [9, "cal"], "Gcd" => [9, "cd"],
461
461
  "Gconventional_mercury" => [9, "conventional_mercury"],
462
- "Gd" => [9, "d"], "GdegC" => [9, "degC"], "GdegF" => [9, "degF"],
462
+ "GdegC" => [9, "degC"], "GdegF" => [9, "degF"],
463
463
  "Gdeg_C" => [9, "deg_C"], "Gdeg_F" => [9, "deg_F"],
464
464
  "GdegreeC" => [9, "degreeC"], "GdegreeF" => [9, "degreeF"],
465
465
  "Gdegree_C" => [9, "degree_C"], "Gdegree_E" => [9, "degree_E"],
@@ -476,29 +476,28 @@ UALIASES = {
476
476
  "Gdegrees_west" => [9, "degrees_west"], "Gdyn" => [9, "dyn"],
477
477
  "Gerg" => [9, "erg"], "Gforce" => [9, "force"], "Gg" => [9, "g"],
478
478
  "Ggravity" => [9, "gravity"], "Gh" => [9, "h"], "Ghg" => [9, "hg"],
479
- "Ghr" => [9, "hr"], "Gin" => [9, "in"], "Gkg" => [9, "kg"],
480
- "Gkgf" => [9, "kgf"], "Gkph" => [9, "kph"], "Glb" => [9, "lb"],
481
- "Glm" => [9, "lm"], "Glx" => [9, "lx"], "Gly" => [9, "ly"],
482
- "Gm" => [9, "m"], "Gmb" => [9, "mb"], "Gmercury" => [9, "mercury"],
479
+ "Ghr" => [9, "hr"], "Gin" => [9, "in"], "Gkgf" => [9, "kgf"],
480
+ "Gkph" => [9, "kph"], "Glb" => [9, "lb"], "Glm" => [9, "lm"],
481
+ "Glx" => [9, "lx"], "Gly" => [9, "ly"], "Gm" => [9, "m"],
482
+ "Gmb" => [9, "mb"], "Gmercury" => [9, "mercury"],
483
483
  "Gmgal" => [9, "mgal"], "Gmin" => [9, "min"], "Gmol" => [9, "mol"],
484
484
  "Gmon" => [9, "mon"], "Gmph" => [9, "mph"], "Gohm" => [9, "ohm"],
485
- "Goz" => [9, "oz"], "Gpc" => [9, "pc"],
486
- "Gpercent" => [9, "percent"], "Gpermil" => [9, "permil"],
487
- "Gpsi" => [9, "psi"], "Grad" => [9, "rad"], "Gs" => [9, "s"],
488
- "Gsr" => [9, "sr"], "Gt" => [9, "t"], "Gyr" => [9, "yr"],
489
- "Julians_year" => [0, "Julian_year"], "M%" => [6, "%"],
490
- "MA" => [6, "A"], "MAu" => [6, "Au"], "MBq" => [6, "Bq"],
491
- "MC" => [6, "C"], "MF" => [6, "F"], "MG" => [6, "G"],
492
- "MGal" => [6, "Gal"], "MGy" => [6, "Gy"], "MH" => [6, "H"],
493
- "MHg" => [6, "Hg"], "MHz" => [6, "Hz"], "MJ" => [6, "J"],
494
- "MK" => [6, "K"], "ML" => [6, "L"], "MN" => [6, "N"],
495
- "MP" => [6, "P"], "MPa" => [6, "Pa"], "MS" => [6, "S"],
496
- "MSt" => [6, "St"], "MSv" => [6, "Sv"], "MT" => [6, "T"],
497
- "MV" => [6, "V"], "MW" => [6, "W"], "MWb" => [6, "Wb"],
498
- "Ma" => [6, "a"], "Mac" => [6, "ac"], "Matm" => [6, "atm"],
499
- "Mbar" => [6, "bar"], "Mcal" => [6, "cal"],
485
+ "Goz" => [9, "oz"], "Gpc" => [9, "pc"], "Gpsi" => [9, "psi"],
486
+ "Grad" => [9, "rad"], "Gs" => [9, "s"], "Gsr" => [9, "sr"],
487
+ "Gt" => [9, "t"], "Gyr" => [9, "yr"],
488
+ "Julians_year" => [0, "Julian_year"], "MA" => [6, "A"],
489
+ "MAu" => [6, "Au"], "MBq" => [6, "Bq"], "MC" => [6, "C"],
490
+ "MF" => [6, "F"], "MG" => [6, "G"], "MGal" => [6, "Gal"],
491
+ "MGy" => [6, "Gy"], "MH" => [6, "H"], "MHg" => [6, "Hg"],
492
+ "MHz" => [6, "Hz"], "MJ" => [6, "J"], "MK" => [6, "K"],
493
+ "ML" => [6, "L"], "MN" => [6, "N"], "MP" => [6, "P"],
494
+ "MPa" => [6, "Pa"], "MS" => [6, "S"], "MSt" => [6, "St"],
495
+ "MSv" => [6, "Sv"], "MT" => [6, "T"], "MV" => [6, "V"],
496
+ "MW" => [6, "W"], "MWb" => [6, "Wb"], "Ma" => [6, "a"],
497
+ "Mac" => [6, "ac"], "Matm" => [6, "atm"], "Mbar" => [6, "bar"],
498
+ "Mcal" => [6, "cal"], "Mcd" => [6, "cd"],
500
499
  "Mconventional_mercury" => [6, "conventional_mercury"],
501
- "Md" => [6, "d"], "MdegC" => [6, "degC"], "MdegF" => [6, "degF"],
500
+ "MdegC" => [6, "degC"], "MdegF" => [6, "degF"],
502
501
  "Mdeg_C" => [6, "deg_C"], "Mdeg_F" => [6, "deg_F"],
503
502
  "MdegreeC" => [6, "degreeC"], "MdegreeF" => [6, "degreeF"],
504
503
  "Mdegree_C" => [6, "degree_C"], "Mdegree_E" => [6, "degree_E"],
@@ -515,29 +514,28 @@ UALIASES = {
515
514
  "Mdegrees_west" => [6, "degrees_west"], "Mdyn" => [6, "dyn"],
516
515
  "Merg" => [6, "erg"], "Mforce" => [6, "force"], "Mg" => [6, "g"],
517
516
  "Mgravity" => [6, "gravity"], "Mh" => [6, "h"], "Mhg" => [6, "hg"],
518
- "Mhr" => [6, "hr"], "Min" => [6, "in"], "Mkg" => [6, "kg"],
519
- "Mkgf" => [6, "kgf"], "Mkph" => [6, "kph"], "Mlb" => [6, "lb"],
520
- "Mlm" => [6, "lm"], "Mlx" => [6, "lx"], "Mly" => [6, "ly"],
521
- "Mm" => [6, "m"], "Mmb" => [6, "mb"], "Mmercury" => [6, "mercury"],
517
+ "Mhr" => [6, "hr"], "Min" => [6, "in"], "Mkgf" => [6, "kgf"],
518
+ "Mkph" => [6, "kph"], "Mlb" => [6, "lb"], "Mlm" => [6, "lm"],
519
+ "Mlx" => [6, "lx"], "Mly" => [6, "ly"], "Mm" => [6, "m"],
520
+ "Mmb" => [6, "mb"], "Mmercury" => [6, "mercury"],
522
521
  "Mmgal" => [6, "mgal"], "Mmin" => [6, "min"], "Mmol" => [6, "mol"],
523
522
  "Mmon" => [6, "mon"], "Mmph" => [6, "mph"], "Mohm" => [6, "ohm"],
524
- "Moz" => [6, "oz"], "Mpc" => [6, "pc"],
525
- "Mpercent" => [6, "percent"], "Mpermil" => [6, "permil"],
526
- "Mpsi" => [6, "psi"], "Mrad" => [6, "rad"], "Ms" => [6, "s"],
527
- "Msr" => [6, "sr"], "Mt" => [6, "t"], "Myr" => [6, "yr"],
528
- "P%" => [15, "%"], "PA" => [15, "A"], "PAu" => [15, "Au"],
529
- "PBq" => [15, "Bq"], "PC" => [15, "C"], "PF" => [15, "F"],
530
- "PG" => [15, "G"], "PGal" => [15, "Gal"], "PGy" => [15, "Gy"],
531
- "PH" => [15, "H"], "PHg" => [15, "Hg"], "PHz" => [15, "Hz"],
532
- "PJ" => [15, "J"], "PK" => [15, "K"], "PL" => [15, "L"],
533
- "PN" => [15, "N"], "PP" => [15, "P"], "PPa" => [15, "Pa"],
534
- "PS" => [15, "S"], "PSt" => [15, "St"], "PSv" => [15, "Sv"],
535
- "PT" => [15, "T"], "PV" => [15, "V"], "PW" => [15, "W"],
536
- "PWb" => [15, "Wb"], "Pa" => [15, "a"], "Pac" => [15, "ac"],
537
- "Pascals" => [0, "Pascal"], "Patm" => [15, "atm"],
538
- "Pbar" => [15, "bar"], "Pcal" => [15, "cal"],
523
+ "Moz" => [6, "oz"], "Mpc" => [6, "pc"], "Mpsi" => [6, "psi"],
524
+ "Mrad" => [6, "rad"], "Ms" => [6, "s"], "Msr" => [6, "sr"],
525
+ "Mt" => [6, "t"], "Myr" => [6, "yr"], "PA" => [15, "A"],
526
+ "PAu" => [15, "Au"], "PBq" => [15, "Bq"], "PC" => [15, "C"],
527
+ "PF" => [15, "F"], "PG" => [15, "G"], "PGal" => [15, "Gal"],
528
+ "PGy" => [15, "Gy"], "PH" => [15, "H"], "PHg" => [15, "Hg"],
529
+ "PHz" => [15, "Hz"], "PJ" => [15, "J"], "PK" => [15, "K"],
530
+ "PL" => [15, "L"], "PN" => [15, "N"], "PP" => [15, "P"],
531
+ "PPa" => [15, "Pa"], "PS" => [15, "S"], "PSt" => [15, "St"],
532
+ "PSv" => [15, "Sv"], "PT" => [15, "T"], "PV" => [15, "V"],
533
+ "PW" => [15, "W"], "PWb" => [15, "Wb"], "Pa" => [15, "a"],
534
+ "Pac" => [15, "ac"], "Pascals" => [0, "Pascal"],
535
+ "Patm" => [15, "atm"], "Pbar" => [15, "bar"], "Pcal" => [15, "cal"],
536
+ "Pcd" => [15, "cd"],
539
537
  "Pconventional_mercury" => [15, "conventional_mercury"],
540
- "Pd" => [15, "d"], "PdegC" => [15, "degC"], "PdegF" => [15, "degF"],
538
+ "PdegC" => [15, "degC"], "PdegF" => [15, "degF"],
541
539
  "Pdeg_C" => [15, "deg_C"], "Pdeg_F" => [15, "deg_F"],
542
540
  "PdegreeC" => [15, "degreeC"], "PdegreeF" => [15, "degreeF"],
543
541
  "Pdegree_C" => [15, "degree_C"], "Pdegree_E" => [15, "degree_E"],
@@ -556,28 +554,27 @@ UALIASES = {
556
554
  "Perg" => [15, "erg"], "Pforce" => [15, "force"], "Pg" => [15, "g"],
557
555
  "Pgravity" => [15, "gravity"], "Ph" => [15, "h"],
558
556
  "Phg" => [15, "hg"], "Phr" => [15, "hr"], "Pin" => [15, "in"],
559
- "Pkg" => [15, "kg"], "Pkgf" => [15, "kgf"], "Pkph" => [15, "kph"],
560
- "Plb" => [15, "lb"], "Plm" => [15, "lm"], "Plx" => [15, "lx"],
561
- "Ply" => [15, "ly"], "Pm" => [15, "m"], "Pmb" => [15, "mb"],
557
+ "Pkgf" => [15, "kgf"], "Pkph" => [15, "kph"], "Plb" => [15, "lb"],
558
+ "Plm" => [15, "lm"], "Plx" => [15, "lx"], "Ply" => [15, "ly"],
559
+ "Pm" => [15, "m"], "Pmb" => [15, "mb"],
562
560
  "Pmercury" => [15, "mercury"], "Pmgal" => [15, "mgal"],
563
561
  "Pmin" => [15, "min"], "Pmol" => [15, "mol"], "Pmon" => [15, "mon"],
564
562
  "Pmph" => [15, "mph"], "Pohm" => [15, "ohm"], "Poz" => [15, "oz"],
565
- "Ppc" => [15, "pc"], "Ppercent" => [15, "percent"],
566
- "Ppermil" => [15, "permil"], "Ppsi" => [15, "psi"],
567
- "Prad" => [15, "rad"], "Ps" => [15, "s"], "Psr" => [15, "sr"],
568
- "Pt" => [15, "t"], "Pyr" => [15, "yr"], "T%" => [12, "%"],
569
- "TA" => [12, "A"], "TAu" => [12, "Au"], "TBq" => [12, "Bq"],
570
- "TC" => [12, "C"], "TF" => [12, "F"], "TG" => [12, "G"],
571
- "TGal" => [12, "Gal"], "TGy" => [12, "Gy"], "TH" => [12, "H"],
572
- "THg" => [12, "Hg"], "THz" => [12, "Hz"], "TJ" => [12, "J"],
573
- "TK" => [12, "K"], "TL" => [12, "L"], "TN" => [12, "N"],
574
- "TP" => [12, "P"], "TPa" => [12, "Pa"], "TS" => [12, "S"],
575
- "TSt" => [12, "St"], "TSv" => [12, "Sv"], "TT" => [12, "T"],
576
- "TV" => [12, "V"], "TW" => [12, "W"], "TWb" => [12, "Wb"],
577
- "Ta" => [12, "a"], "Tac" => [12, "ac"], "Tatm" => [12, "atm"],
578
- "Tbar" => [12, "bar"], "Tcal" => [12, "cal"],
563
+ "Ppc" => [15, "pc"], "Ppsi" => [15, "psi"], "Prad" => [15, "rad"],
564
+ "Ps" => [15, "s"], "Psr" => [15, "sr"], "Pt" => [15, "t"],
565
+ "Pyr" => [15, "yr"], "TA" => [12, "A"], "TAu" => [12, "Au"],
566
+ "TBq" => [12, "Bq"], "TC" => [12, "C"], "TF" => [12, "F"],
567
+ "TG" => [12, "G"], "TGal" => [12, "Gal"], "TGy" => [12, "Gy"],
568
+ "TH" => [12, "H"], "THg" => [12, "Hg"], "THz" => [12, "Hz"],
569
+ "TJ" => [12, "J"], "TK" => [12, "K"], "TL" => [12, "L"],
570
+ "TN" => [12, "N"], "TP" => [12, "P"], "TPa" => [12, "Pa"],
571
+ "TS" => [12, "S"], "TSt" => [12, "St"], "TSv" => [12, "Sv"],
572
+ "TT" => [12, "T"], "TV" => [12, "V"], "TW" => [12, "W"],
573
+ "TWb" => [12, "Wb"], "Ta" => [12, "a"], "Tac" => [12, "ac"],
574
+ "Tatm" => [12, "atm"], "Tbar" => [12, "bar"], "Tcal" => [12, "cal"],
575
+ "Tcd" => [12, "cd"],
579
576
  "Tconventional_mercury" => [12, "conventional_mercury"],
580
- "Td" => [12, "d"], "TdegC" => [12, "degC"], "TdegF" => [12, "degF"],
577
+ "TdegC" => [12, "degC"], "TdegF" => [12, "degF"],
581
578
  "Tdeg_C" => [12, "deg_C"], "Tdeg_F" => [12, "deg_F"],
582
579
  "TdegreeC" => [12, "degreeC"], "TdegreeF" => [12, "degreeF"],
583
580
  "Tdegree_C" => [12, "degree_C"], "Tdegree_E" => [12, "degree_E"],
@@ -596,35 +593,34 @@ UALIASES = {
596
593
  "Terg" => [12, "erg"], "Tforce" => [12, "force"], "Tg" => [12, "g"],
597
594
  "Tgravity" => [12, "gravity"], "Th" => [12, "h"],
598
595
  "Thg" => [12, "hg"], "Thr" => [12, "hr"], "Tin" => [12, "in"],
599
- "Tkg" => [12, "kg"], "Tkgf" => [12, "kgf"], "Tkph" => [12, "kph"],
600
- "Tlb" => [12, "lb"], "Tlm" => [12, "lm"], "Tlx" => [12, "lx"],
601
- "Tly" => [12, "ly"], "Tm" => [12, "m"], "Tmb" => [12, "mb"],
596
+ "Tkgf" => [12, "kgf"], "Tkph" => [12, "kph"], "Tlb" => [12, "lb"],
597
+ "Tlm" => [12, "lm"], "Tlx" => [12, "lx"], "Tly" => [12, "ly"],
598
+ "Tm" => [12, "m"], "Tmb" => [12, "mb"],
602
599
  "Tmercury" => [12, "mercury"], "Tmgal" => [12, "mgal"],
603
600
  "Tmin" => [12, "min"], "Tmol" => [12, "mol"], "Tmon" => [12, "mon"],
604
601
  "Tmph" => [12, "mph"], "Tohm" => [12, "ohm"], "Toz" => [12, "oz"],
605
- "Tpc" => [12, "pc"], "Tpercent" => [12, "percent"],
606
- "Tpermil" => [12, "permil"], "Tpsi" => [12, "psi"],
607
- "Trad" => [12, "rad"], "Ts" => [12, "s"], "Tsr" => [12, "sr"],
608
- "Tt" => [12, "t"], "Tyr" => [12, "yr"], "a%" => [-18, "%"],
609
- "aA" => [-18, "A"], "aAu" => [-18, "Au"], "aBq" => [-18, "Bq"],
610
- "aC" => [-18, "C"], "aF" => [-18, "F"], "aG" => [-18, "G"],
611
- "aGal" => [-18, "Gal"], "aGy" => [-18, "Gy"], "aH" => [-18, "H"],
612
- "aHg" => [-18, "Hg"], "aHz" => [-18, "Hz"], "aJ" => [-18, "J"],
613
- "aK" => [-18, "K"], "aL" => [-18, "L"], "aN" => [-18, "N"],
614
- "aP" => [-18, "P"], "aPa" => [-18, "Pa"], "aS" => [-18, "S"],
615
- "aSt" => [-18, "St"], "aSv" => [-18, "Sv"], "aT" => [-18, "T"],
616
- "aV" => [-18, "V"], "aW" => [-18, "W"], "aWb" => [-18, "Wb"],
617
- "aa" => [-18, "a"], "aac" => [-18, "ac"], "aatm" => [-18, "atm"],
618
- "abar" => [-18, "bar"], "acal" => [-18, "cal"],
602
+ "Tpc" => [12, "pc"], "Tpsi" => [12, "psi"], "Trad" => [12, "rad"],
603
+ "Ts" => [12, "s"], "Tsr" => [12, "sr"], "Tt" => [12, "t"],
604
+ "Tyr" => [12, "yr"], "aA" => [-18, "A"], "aAu" => [-18, "Au"],
605
+ "aBq" => [-18, "Bq"], "aC" => [-18, "C"], "aF" => [-18, "F"],
606
+ "aG" => [-18, "G"], "aGal" => [-18, "Gal"], "aGy" => [-18, "Gy"],
607
+ "aH" => [-18, "H"], "aHg" => [-18, "Hg"], "aHz" => [-18, "Hz"],
608
+ "aJ" => [-18, "J"], "aK" => [-18, "K"], "aL" => [-18, "L"],
609
+ "aN" => [-18, "N"], "aP" => [-18, "P"], "aPa" => [-18, "Pa"],
610
+ "aS" => [-18, "S"], "aSt" => [-18, "St"], "aSv" => [-18, "Sv"],
611
+ "aT" => [-18, "T"], "aV" => [-18, "V"], "aW" => [-18, "W"],
612
+ "aWb" => [-18, "Wb"], "aa" => [-18, "a"], "aac" => [-18, "ac"],
613
+ "aatm" => [-18, "atm"], "abar" => [-18, "bar"],
614
+ "acal" => [-18, "cal"], "acd" => [-18, "cd"],
619
615
  "aconventional_mercury" => [-18, "conventional_mercury"],
620
- "acres" => [0, "acre"], "ad" => [-18, "d"],
621
- "adegC" => [-18, "degC"], "adegF" => [-18, "degF"],
622
- "adeg_C" => [-18, "deg_C"], "adeg_F" => [-18, "deg_F"],
623
- "adegreeC" => [-18, "degreeC"], "adegreeF" => [-18, "degreeF"],
624
- "adegree_C" => [-18, "degree_C"], "adegree_E" => [-18, "degree_E"],
625
- "adegree_F" => [-18, "degree_F"], "adegree_N" => [-18, "degree_N"],
626
- "adegree_R" => [-18, "degree_R"], "adegree_S" => [-18, "degree_S"],
627
- "adegree_W" => [-18, "degree_W"], "adegree_c" => [-18, "degree_c"],
616
+ "acres" => [0, "acre"], "adegC" => [-18, "degC"],
617
+ "adegF" => [-18, "degF"], "adeg_C" => [-18, "deg_C"],
618
+ "adeg_F" => [-18, "deg_F"], "adegreeC" => [-18, "degreeC"],
619
+ "adegreeF" => [-18, "degreeF"], "adegree_C" => [-18, "degree_C"],
620
+ "adegree_E" => [-18, "degree_E"], "adegree_F" => [-18, "degree_F"],
621
+ "adegree_N" => [-18, "degree_N"], "adegree_R" => [-18, "degree_R"],
622
+ "adegree_S" => [-18, "degree_S"], "adegree_W" => [-18, "degree_W"],
623
+ "adegree_c" => [-18, "degree_c"],
628
624
  "adegree_east" => [-18, "degree_east"],
629
625
  "adegree_f" => [-18, "degree_f"],
630
626
  "adegree_north" => [-18, "degree_north"],
@@ -637,7 +633,7 @@ UALIASES = {
637
633
  "aerg" => [-18, "erg"], "aforce" => [-18, "force"],
638
634
  "ag" => [-18, "g"], "agravity" => [-18, "gravity"],
639
635
  "ah" => [-18, "h"], "ahg" => [-18, "hg"], "ahr" => [-18, "hr"],
640
- "ain" => [-18, "in"], "akg" => [-18, "kg"], "akgf" => [-18, "kgf"],
636
+ "ain" => [-18, "in"], "akgf" => [-18, "kgf"],
641
637
  "akph" => [-18, "kph"], "alb" => [-18, "lb"], "alm" => [-18, "lm"],
642
638
  "alx" => [-18, "lx"], "aly" => [-18, "ly"], "am" => [-18, "m"],
643
639
  "amb" => [-18, "mb"], "amercury" => [-18, "mercury"],
@@ -648,11 +644,10 @@ UALIASES = {
648
644
  "angulars_degree" => [0, "angular_degree"],
649
645
  "angulars_minute" => [0, "angular_minute"],
650
646
  "angulars_second" => [0, "angular_second"], "aohm" => [-18, "ohm"],
651
- "aoz" => [-18, "oz"], "apc" => [-18, "pc"],
652
- "apercent" => [-18, "percent"], "apermil" => [-18, "permil"],
653
- "apsi" => [-18, "psi"], "arad" => [-18, "rad"],
654
- "ares" => [0, "are"], "as" => [-18, "s"], "asr" => [-18, "sr"],
655
- "at" => [-18, "t"], "atmospheres" => [0, "atmosphere"],
647
+ "aoz" => [-18, "oz"], "apc" => [-18, "pc"], "apsi" => [-18, "psi"],
648
+ "arad" => [-18, "rad"], "ares" => [0, "are"], "as" => [-18, "s"],
649
+ "asr" => [-18, "sr"], "at" => [-18, "t"],
650
+ "atmospheres" => [0, "atmosphere"],
656
651
  "attoCelsius" => [-18, "Celsius"],
657
652
  "attoFahrenheit" => [-18, "Fahrenheit"],
658
653
  "attoJulian_year" => [-18, "Julian_year"],
@@ -662,7 +657,8 @@ UALIASES = {
662
657
  "attoangular_minute" => [-18, "angular_minute"],
663
658
  "attoangular_second" => [-18, "angular_second"],
664
659
  "attoare" => [-18, "are"], "attoatmosphere" => [-18, "atmosphere"],
665
- "attocalorie" => [-18, "calorie"], "attocelsius" => [-18, "celsius"],
660
+ "attocalorie" => [-18, "calorie"], "attocandela" => [-18, "candela"],
661
+ "attocelsius" => [-18, "celsius"],
666
662
  "attocentigrade" => [-18, "centigrade"],
667
663
  "attocentury" => [-18, "century"], "attochain" => [-18, "chain"],
668
664
  "attocommon_year" => [-18, "common_year"],
@@ -685,9 +681,9 @@ UALIASES = {
685
681
  "attomole" => [-18, "mole"], "attomonth" => [-18, "month"],
686
682
  "attonewton" => [-18, "newton"], "attoounce" => [-18, "ounce"],
687
683
  "attoparsec" => [-18, "parsec"], "attopascal" => [-18, "pascal"],
688
- "attopentad" => [-18, "pentad"], "attopoise" => [-18, "poise"],
689
- "attopound" => [-18, "pound"], "attoradian" => [-18, "radian"],
690
- "attosecond" => [-18, "second"],
684
+ "attopentad" => [-18, "pentad"], "attopercent" => [-18, "percent"],
685
+ "attopoise" => [-18, "poise"], "attopound" => [-18, "pound"],
686
+ "attoradian" => [-18, "radian"], "attosecond" => [-18, "second"],
691
687
  "attosecond_angle" => [-18, "second_angle"],
692
688
  "attosteradian" => [-18, "steradian"],
693
689
  "attostokes" => [-18, "stokes"], "attotesla" => [-18, "tesla"],
@@ -696,19 +692,20 @@ UALIASES = {
696
692
  "attowatt" => [-18, "watt"], "attoweber" => [-18, "weber"],
697
693
  "attoyard" => [-18, "yard"], "attoyd" => [-18, "yd"],
698
694
  "attoyear" => [-18, "year"], "ayr" => [-18, "yr"],
699
- "c%" => [-2, "%"], "cA" => [-2, "A"], "cAu" => [-2, "Au"],
700
- "cBq" => [-2, "Bq"], "cC" => [-2, "C"], "cF" => [-2, "F"],
701
- "cG" => [-2, "G"], "cGal" => [-2, "Gal"], "cGy" => [-2, "Gy"],
702
- "cH" => [-2, "H"], "cHg" => [-2, "Hg"], "cHz" => [-2, "Hz"],
703
- "cJ" => [-2, "J"], "cK" => [-2, "K"], "cL" => [-2, "L"],
704
- "cN" => [-2, "N"], "cP" => [-2, "P"], "cPa" => [-2, "Pa"],
705
- "cS" => [-2, "S"], "cSt" => [-2, "St"], "cSv" => [-2, "Sv"],
706
- "cT" => [-2, "T"], "cV" => [-2, "V"], "cW" => [-2, "W"],
707
- "cWb" => [-2, "Wb"], "ca" => [-2, "a"], "cac" => [-2, "ac"],
708
- "calories" => [0, "calorie"], "catm" => [-2, "atm"],
709
- "cbar" => [-2, "bar"], "ccal" => [-2, "cal"],
695
+ "cA" => [-2, "A"], "cAu" => [-2, "Au"], "cBq" => [-2, "Bq"],
696
+ "cC" => [-2, "C"], "cF" => [-2, "F"], "cG" => [-2, "G"],
697
+ "cGal" => [-2, "Gal"], "cGy" => [-2, "Gy"], "cH" => [-2, "H"],
698
+ "cHg" => [-2, "Hg"], "cHz" => [-2, "Hz"], "cJ" => [-2, "J"],
699
+ "cK" => [-2, "K"], "cL" => [-2, "L"], "cN" => [-2, "N"],
700
+ "cP" => [-2, "P"], "cPa" => [-2, "Pa"], "cS" => [-2, "S"],
701
+ "cSt" => [-2, "St"], "cSv" => [-2, "Sv"], "cT" => [-2, "T"],
702
+ "cV" => [-2, "V"], "cW" => [-2, "W"], "cWb" => [-2, "Wb"],
703
+ "ca" => [-2, "a"], "cac" => [-2, "ac"],
704
+ "calories" => [0, "calorie"], "candelas" => [0, "candela"],
705
+ "catm" => [-2, "atm"], "cbar" => [-2, "bar"], "ccal" => [-2, "cal"],
706
+ "ccd" => [-2, "cd"],
710
707
  "cconventional_mercury" => [-2, "conventional_mercury"],
711
- "cd" => [-2, "d"], "cdegC" => [-2, "degC"], "cdegF" => [-2, "degF"],
708
+ "cdegC" => [-2, "degC"], "cdegF" => [-2, "degF"],
712
709
  "cdeg_C" => [-2, "deg_C"], "cdeg_F" => [-2, "deg_F"],
713
710
  "cdegreeC" => [-2, "degreeC"], "cdegreeF" => [-2, "degreeF"],
714
711
  "cdegree_C" => [-2, "degree_C"], "cdegree_E" => [-2, "degree_E"],
@@ -733,7 +730,8 @@ UALIASES = {
733
730
  "centiangular_minute" => [-2, "angular_minute"],
734
731
  "centiangular_second" => [-2, "angular_second"],
735
732
  "centiare" => [-2, "are"], "centiatmosphere" => [-2, "atmosphere"],
736
- "centicalorie" => [-2, "calorie"], "centicelsius" => [-2, "celsius"],
733
+ "centicalorie" => [-2, "calorie"], "centicandela" => [-2, "candela"],
734
+ "centicelsius" => [-2, "celsius"],
737
735
  "centicentigrade" => [-2, "centigrade"],
738
736
  "centicentury" => [-2, "century"], "centichain" => [-2, "chain"],
739
737
  "centicommon_year" => [-2, "common_year"],
@@ -757,9 +755,9 @@ UALIASES = {
757
755
  "centimole" => [-2, "mole"], "centimonth" => [-2, "month"],
758
756
  "centinewton" => [-2, "newton"], "centiounce" => [-2, "ounce"],
759
757
  "centiparsec" => [-2, "parsec"], "centipascal" => [-2, "pascal"],
760
- "centipentad" => [-2, "pentad"], "centipoise" => [-2, "poise"],
761
- "centipound" => [-2, "pound"], "centiradian" => [-2, "radian"],
762
- "centisecond" => [-2, "second"],
758
+ "centipentad" => [-2, "pentad"], "centipercent" => [-2, "percent"],
759
+ "centipoise" => [-2, "poise"], "centipound" => [-2, "pound"],
760
+ "centiradian" => [-2, "radian"], "centisecond" => [-2, "second"],
763
761
  "centisecond_angle" => [-2, "second_angle"],
764
762
  "centisteradian" => [-2, "steradian"],
765
763
  "centistokes" => [-2, "stokes"], "centitesla" => [-2, "tesla"],
@@ -771,39 +769,37 @@ UALIASES = {
771
769
  "cerg" => [-2, "erg"], "cforce" => [-2, "force"], "cg" => [-2, "g"],
772
770
  "cgravity" => [-2, "gravity"], "ch" => [-2, "h"],
773
771
  "chains" => [0, "chain"], "chg" => [-2, "hg"], "chr" => [-2, "hr"],
774
- "cin" => [-2, "in"], "ckg" => [-2, "kg"], "ckgf" => [-2, "kgf"],
775
- "ckph" => [-2, "kph"], "clb" => [-2, "lb"], "clm" => [-2, "lm"],
776
- "clx" => [-2, "lx"], "cly" => [-2, "ly"], "cm" => [-2, "m"],
777
- "cmb" => [-2, "mb"], "cmercury" => [-2, "mercury"],
778
- "cmgal" => [-2, "mgal"], "cmin" => [-2, "min"],
779
- "cmol" => [-2, "mol"], "cmon" => [-2, "mon"], "cmph" => [-2, "mph"],
780
- "cohm" => [-2, "ohm"], "commons_year" => [0, "common_year"],
781
- "coulombs" => [0, "coulomb"], "coz" => [-2, "oz"],
782
- "cpc" => [-2, "pc"], "cpercent" => [-2, "percent"],
783
- "cpermil" => [-2, "permil"], "cpsi" => [-2, "psi"],
772
+ "cin" => [-2, "in"], "ckgf" => [-2, "kgf"], "ckph" => [-2, "kph"],
773
+ "clb" => [-2, "lb"], "clm" => [-2, "lm"], "clx" => [-2, "lx"],
774
+ "cly" => [-2, "ly"], "cm" => [-2, "m"], "cmb" => [-2, "mb"],
775
+ "cmercury" => [-2, "mercury"], "cmgal" => [-2, "mgal"],
776
+ "cmin" => [-2, "min"], "cmol" => [-2, "mol"], "cmon" => [-2, "mon"],
777
+ "cmph" => [-2, "mph"], "cohm" => [-2, "ohm"],
778
+ "commons_year" => [0, "common_year"], "coulombs" => [0, "coulomb"],
779
+ "coz" => [-2, "oz"], "cpc" => [-2, "pc"], "cpsi" => [-2, "psi"],
784
780
  "crad" => [-2, "rad"], "cs" => [-2, "s"], "csr" => [-2, "sr"],
785
- "ct" => [-2, "t"], "cyr" => [-2, "yr"], "d%" => [-1, "%"],
786
- "dA" => [-1, "A"], "dAu" => [-1, "Au"], "dBq" => [-1, "Bq"],
787
- "dC" => [-1, "C"], "dF" => [-1, "F"], "dG" => [-1, "G"],
788
- "dGal" => [-1, "Gal"], "dGy" => [-1, "Gy"], "dH" => [-1, "H"],
789
- "dHg" => [-1, "Hg"], "dHz" => [-1, "Hz"], "dJ" => [-1, "J"],
790
- "dK" => [-1, "K"], "dL" => [-1, "L"], "dN" => [-1, "N"],
791
- "dP" => [-1, "P"], "dPa" => [-1, "Pa"], "dS" => [-1, "S"],
792
- "dSt" => [-1, "St"], "dSv" => [-1, "Sv"], "dT" => [-1, "T"],
793
- "dV" => [-1, "V"], "dW" => [-1, "W"], "dWb" => [-1, "Wb"],
794
- "da" => [-1, "a"], "da%" => [1, "%"], "daA" => [1, "A"],
795
- "daAu" => [1, "Au"], "daBq" => [1, "Bq"], "daC" => [1, "C"],
796
- "daF" => [1, "F"], "daG" => [1, "G"], "daGal" => [1, "Gal"],
797
- "daGy" => [1, "Gy"], "daH" => [1, "H"], "daHg" => [1, "Hg"],
798
- "daHz" => [1, "Hz"], "daJ" => [1, "J"], "daK" => [1, "K"],
799
- "daL" => [1, "L"], "daN" => [1, "N"], "daP" => [1, "P"],
800
- "daPa" => [1, "Pa"], "daS" => [1, "S"], "daSt" => [1, "St"],
801
- "daSv" => [1, "Sv"], "daT" => [1, "T"], "daV" => [1, "V"],
802
- "daW" => [1, "W"], "daWb" => [1, "Wb"], "daa" => [1, "a"],
803
- "daac" => [1, "ac"], "daatm" => [1, "atm"], "dabar" => [1, "bar"],
804
- "dac" => [-1, "ac"], "dacal" => [1, "cal"],
781
+ "ct" => [-2, "t"], "cyr" => [-2, "yr"], "dA" => [-1, "A"],
782
+ "dAu" => [-1, "Au"], "dBq" => [-1, "Bq"], "dC" => [-1, "C"],
783
+ "dF" => [-1, "F"], "dG" => [-1, "G"], "dGal" => [-1, "Gal"],
784
+ "dGy" => [-1, "Gy"], "dH" => [-1, "H"], "dHg" => [-1, "Hg"],
785
+ "dHz" => [-1, "Hz"], "dJ" => [-1, "J"], "dK" => [-1, "K"],
786
+ "dL" => [-1, "L"], "dN" => [-1, "N"], "dP" => [-1, "P"],
787
+ "dPa" => [-1, "Pa"], "dS" => [-1, "S"], "dSt" => [-1, "St"],
788
+ "dSv" => [-1, "Sv"], "dT" => [-1, "T"], "dV" => [-1, "V"],
789
+ "dW" => [-1, "W"], "dWb" => [-1, "Wb"], "da" => [-1, "a"],
790
+ "daA" => [1, "A"], "daAu" => [1, "Au"], "daBq" => [1, "Bq"],
791
+ "daC" => [1, "C"], "daF" => [1, "F"], "daG" => [1, "G"],
792
+ "daGal" => [1, "Gal"], "daGy" => [1, "Gy"], "daH" => [1, "H"],
793
+ "daHg" => [1, "Hg"], "daHz" => [1, "Hz"], "daJ" => [1, "J"],
794
+ "daK" => [1, "K"], "daL" => [1, "L"], "daN" => [1, "N"],
795
+ "daP" => [1, "P"], "daPa" => [1, "Pa"], "daS" => [1, "S"],
796
+ "daSt" => [1, "St"], "daSv" => [1, "Sv"], "daT" => [1, "T"],
797
+ "daV" => [1, "V"], "daW" => [1, "W"], "daWb" => [1, "Wb"],
798
+ "daa" => [1, "a"], "daac" => [1, "ac"], "daatm" => [1, "atm"],
799
+ "dabar" => [1, "bar"], "dac" => [-1, "ac"], "dacal" => [1, "cal"],
800
+ "dacd" => [1, "cd"],
805
801
  "daconventional_mercury" => [1, "conventional_mercury"],
806
- "dad" => [1, "d"], "dadegC" => [1, "degC"], "dadegF" => [1, "degF"],
802
+ "dadegC" => [1, "degC"], "dadegF" => [1, "degF"],
807
803
  "dadeg_C" => [1, "deg_C"], "dadeg_F" => [1, "deg_F"],
808
804
  "dadegreeC" => [1, "degreeC"], "dadegreeF" => [1, "degreeF"],
809
805
  "dadegree_C" => [1, "degree_C"], "dadegree_E" => [1, "degree_E"],
@@ -822,19 +818,18 @@ UALIASES = {
822
818
  "daerg" => [1, "erg"], "daforce" => [1, "force"], "dag" => [1, "g"],
823
819
  "dagravity" => [1, "gravity"], "dah" => [1, "h"],
824
820
  "dahg" => [1, "hg"], "dahr" => [1, "hr"], "dain" => [1, "in"],
825
- "dakg" => [1, "kg"], "dakgf" => [1, "kgf"], "dakph" => [1, "kph"],
826
- "dalb" => [1, "lb"], "dalm" => [1, "lm"], "dalx" => [1, "lx"],
827
- "daly" => [1, "ly"], "dam" => [1, "m"], "damb" => [1, "mb"],
821
+ "dakgf" => [1, "kgf"], "dakph" => [1, "kph"], "dalb" => [1, "lb"],
822
+ "dalm" => [1, "lm"], "dalx" => [1, "lx"], "daly" => [1, "ly"],
823
+ "dam" => [1, "m"], "damb" => [1, "mb"],
828
824
  "damercury" => [1, "mercury"], "damgal" => [1, "mgal"],
829
825
  "damin" => [1, "min"], "damol" => [1, "mol"], "damon" => [1, "mon"],
830
826
  "damph" => [1, "mph"], "daohm" => [1, "ohm"], "daoz" => [1, "oz"],
831
- "dapc" => [1, "pc"], "dapercent" => [1, "percent"],
832
- "dapermil" => [1, "permil"], "dapsi" => [1, "psi"],
833
- "darad" => [1, "rad"], "das" => [1, "s"], "dasr" => [1, "sr"],
834
- "dat" => [1, "t"], "datm" => [-1, "atm"], "dayr" => [1, "yr"],
835
- "days" => [0, "day"], "dbar" => [-1, "bar"], "dcal" => [-1, "cal"],
827
+ "dapc" => [1, "pc"], "dapsi" => [1, "psi"], "darad" => [1, "rad"],
828
+ "das" => [1, "s"], "dasr" => [1, "sr"], "dat" => [1, "t"],
829
+ "datm" => [-1, "atm"], "dayr" => [1, "yr"], "days" => [0, "day"],
830
+ "dbar" => [-1, "bar"], "dcal" => [-1, "cal"], "dcd" => [-1, "cd"],
836
831
  "dconventional_mercury" => [-1, "conventional_mercury"],
837
- "dd" => [-1, "d"], "ddegC" => [-1, "degC"], "ddegF" => [-1, "degF"],
832
+ "ddegC" => [-1, "degC"], "ddegF" => [-1, "degF"],
838
833
  "ddeg_C" => [-1, "deg_C"], "ddeg_F" => [-1, "deg_F"],
839
834
  "ddegreeC" => [-1, "degreeC"], "ddegreeF" => [-1, "degreeF"],
840
835
  "ddegree_C" => [-1, "degree_C"], "ddegree_E" => [-1, "degree_E"],
@@ -859,7 +854,8 @@ UALIASES = {
859
854
  "decaangular_minute" => [1, "angular_minute"],
860
855
  "decaangular_second" => [1, "angular_second"],
861
856
  "decaare" => [1, "are"], "decaatmosphere" => [1, "atmosphere"],
862
- "decacalorie" => [1, "calorie"], "decacelsius" => [1, "celsius"],
857
+ "decacalorie" => [1, "calorie"], "decacandela" => [1, "candela"],
858
+ "decacelsius" => [1, "celsius"],
863
859
  "decacentigrade" => [1, "centigrade"],
864
860
  "decacentury" => [1, "century"], "decachain" => [1, "chain"],
865
861
  "decacommon_year" => [1, "common_year"],
@@ -882,8 +878,9 @@ UALIASES = {
882
878
  "decamonth" => [1, "month"], "decanewton" => [1, "newton"],
883
879
  "decaounce" => [1, "ounce"], "decaparsec" => [1, "parsec"],
884
880
  "decapascal" => [1, "pascal"], "decapentad" => [1, "pentad"],
885
- "decapoise" => [1, "poise"], "decapound" => [1, "pound"],
886
- "decaradian" => [1, "radian"], "decasecond" => [1, "second"],
881
+ "decapercent" => [1, "percent"], "decapoise" => [1, "poise"],
882
+ "decapound" => [1, "pound"], "decaradian" => [1, "radian"],
883
+ "decasecond" => [1, "second"],
887
884
  "decasecond_angle" => [1, "second_angle"],
888
885
  "decasteradian" => [1, "steradian"], "decastokes" => [1, "stokes"],
889
886
  "decatesla" => [1, "tesla"], "decaton" => [1, "ton"],
@@ -900,7 +897,8 @@ UALIASES = {
900
897
  "deciangular_minute" => [-1, "angular_minute"],
901
898
  "deciangular_second" => [-1, "angular_second"],
902
899
  "deciare" => [-1, "are"], "deciatmosphere" => [-1, "atmosphere"],
903
- "decicalorie" => [-1, "calorie"], "decicelsius" => [-1, "celsius"],
900
+ "decicalorie" => [-1, "calorie"], "decicandela" => [-1, "candela"],
901
+ "decicelsius" => [-1, "celsius"],
904
902
  "decicentigrade" => [-1, "centigrade"],
905
903
  "decicentury" => [-1, "century"], "decichain" => [-1, "chain"],
906
904
  "decicommon_year" => [-1, "common_year"],
@@ -923,9 +921,9 @@ UALIASES = {
923
921
  "decimole" => [-1, "mole"], "decimonth" => [-1, "month"],
924
922
  "decinewton" => [-1, "newton"], "deciounce" => [-1, "ounce"],
925
923
  "deciparsec" => [-1, "parsec"], "decipascal" => [-1, "pascal"],
926
- "decipentad" => [-1, "pentad"], "decipoise" => [-1, "poise"],
927
- "decipound" => [-1, "pound"], "deciradian" => [-1, "radian"],
928
- "decisecond" => [-1, "second"],
924
+ "decipentad" => [-1, "pentad"], "decipercent" => [-1, "percent"],
925
+ "decipoise" => [-1, "poise"], "decipound" => [-1, "pound"],
926
+ "deciradian" => [-1, "radian"], "decisecond" => [-1, "second"],
929
927
  "decisecond_angle" => [-1, "second_angle"],
930
928
  "decisteradian" => [-1, "steradian"], "decistokes" => [-1, "stokes"],
931
929
  "decitesla" => [-1, "tesla"], "deciton" => [-1, "ton"],
@@ -938,17 +936,16 @@ UALIASES = {
938
936
  "derg" => [-1, "erg"], "dforce" => [-1, "force"], "dg" => [-1, "g"],
939
937
  "dgravity" => [-1, "gravity"], "dh" => [-1, "h"],
940
938
  "dhg" => [-1, "hg"], "dhr" => [-1, "hr"], "din" => [-1, "in"],
941
- "dkg" => [-1, "kg"], "dkgf" => [-1, "kgf"], "dkph" => [-1, "kph"],
942
- "dlb" => [-1, "lb"], "dlm" => [-1, "lm"], "dlx" => [-1, "lx"],
943
- "dly" => [-1, "ly"], "dm" => [-1, "m"], "dmb" => [-1, "mb"],
939
+ "dkgf" => [-1, "kgf"], "dkph" => [-1, "kph"], "dlb" => [-1, "lb"],
940
+ "dlm" => [-1, "lm"], "dlx" => [-1, "lx"], "dly" => [-1, "ly"],
941
+ "dm" => [-1, "m"], "dmb" => [-1, "mb"],
944
942
  "dmercury" => [-1, "mercury"], "dmgal" => [-1, "mgal"],
945
943
  "dmin" => [-1, "min"], "dmol" => [-1, "mol"], "dmon" => [-1, "mon"],
946
944
  "dmph" => [-1, "mph"], "dohm" => [-1, "ohm"], "doz" => [-1, "oz"],
947
- "dpc" => [-1, "pc"], "dpercent" => [-1, "percent"],
948
- "dpermil" => [-1, "permil"], "dpsi" => [-1, "psi"],
949
- "drad" => [-1, "rad"], "ds" => [-1, "s"], "dsr" => [-1, "sr"],
950
- "dt" => [-1, "t"], "dynes" => [0, "dyne"], "dyr" => [-1, "yr"],
951
- "ergs" => [0, "erg"], "exaCelsius" => [18, "Celsius"],
945
+ "dpc" => [-1, "pc"], "dpsi" => [-1, "psi"], "drad" => [-1, "rad"],
946
+ "ds" => [-1, "s"], "dsr" => [-1, "sr"], "dt" => [-1, "t"],
947
+ "dynes" => [0, "dyne"], "dyr" => [-1, "yr"], "ergs" => [0, "erg"],
948
+ "exaCelsius" => [18, "Celsius"],
952
949
  "exaFahrenheit" => [18, "Fahrenheit"],
953
950
  "exaJulian_year" => [18, "Julian_year"],
954
951
  "exaPascal" => [18, "Pascal"], "exaacre" => [18, "acre"],
@@ -957,7 +954,8 @@ UALIASES = {
957
954
  "exaangular_minute" => [18, "angular_minute"],
958
955
  "exaangular_second" => [18, "angular_second"],
959
956
  "exaare" => [18, "are"], "exaatmosphere" => [18, "atmosphere"],
960
- "exacalorie" => [18, "calorie"], "exacelsius" => [18, "celsius"],
957
+ "exacalorie" => [18, "calorie"], "exacandela" => [18, "candela"],
958
+ "exacelsius" => [18, "celsius"],
961
959
  "exacentigrade" => [18, "centigrade"],
962
960
  "exacentury" => [18, "century"], "exachain" => [18, "chain"],
963
961
  "exacommon_year" => [18, "common_year"],
@@ -980,8 +978,9 @@ UALIASES = {
980
978
  "examonth" => [18, "month"], "exanewton" => [18, "newton"],
981
979
  "exaounce" => [18, "ounce"], "exaparsec" => [18, "parsec"],
982
980
  "exapascal" => [18, "pascal"], "exapentad" => [18, "pentad"],
983
- "exapoise" => [18, "poise"], "exapound" => [18, "pound"],
984
- "exaradian" => [18, "radian"], "exasecond" => [18, "second"],
981
+ "exapercent" => [18, "percent"], "exapoise" => [18, "poise"],
982
+ "exapound" => [18, "pound"], "exaradian" => [18, "radian"],
983
+ "exasecond" => [18, "second"],
985
984
  "exasecond_angle" => [18, "second_angle"],
986
985
  "exasteradian" => [18, "steradian"], "exastokes" => [18, "stokes"],
987
986
  "exatesla" => [18, "tesla"], "exaton" => [18, "ton"],
@@ -989,27 +988,26 @@ UALIASES = {
989
988
  "exavolt" => [18, "volt"], "exawatt" => [18, "watt"],
990
989
  "exaweber" => [18, "weber"], "exayard" => [18, "yard"],
991
990
  "exayd" => [18, "yd"], "exayear" => [18, "year"],
992
- "f%" => [-15, "%"], "fA" => [-15, "A"], "fAu" => [-15, "Au"],
993
- "fBq" => [-15, "Bq"], "fC" => [-15, "C"], "fF" => [-15, "F"],
994
- "fG" => [-15, "G"], "fGal" => [-15, "Gal"], "fGy" => [-15, "Gy"],
995
- "fH" => [-15, "H"], "fHg" => [-15, "Hg"], "fHz" => [-15, "Hz"],
996
- "fJ" => [-15, "J"], "fK" => [-15, "K"], "fL" => [-15, "L"],
997
- "fN" => [-15, "N"], "fP" => [-15, "P"], "fPa" => [-15, "Pa"],
998
- "fS" => [-15, "S"], "fSt" => [-15, "St"], "fSv" => [-15, "Sv"],
999
- "fT" => [-15, "T"], "fV" => [-15, "V"], "fW" => [-15, "W"],
1000
- "fWb" => [-15, "Wb"], "fa" => [-15, "a"], "fac" => [-15, "ac"],
991
+ "fA" => [-15, "A"], "fAu" => [-15, "Au"], "fBq" => [-15, "Bq"],
992
+ "fC" => [-15, "C"], "fF" => [-15, "F"], "fG" => [-15, "G"],
993
+ "fGal" => [-15, "Gal"], "fGy" => [-15, "Gy"], "fH" => [-15, "H"],
994
+ "fHg" => [-15, "Hg"], "fHz" => [-15, "Hz"], "fJ" => [-15, "J"],
995
+ "fK" => [-15, "K"], "fL" => [-15, "L"], "fN" => [-15, "N"],
996
+ "fP" => [-15, "P"], "fPa" => [-15, "Pa"], "fS" => [-15, "S"],
997
+ "fSt" => [-15, "St"], "fSv" => [-15, "Sv"], "fT" => [-15, "T"],
998
+ "fV" => [-15, "V"], "fW" => [-15, "W"], "fWb" => [-15, "Wb"],
999
+ "fa" => [-15, "a"], "fac" => [-15, "ac"],
1001
1000
  "fahrenheits" => [0, "fahrenheit"], "farads" => [0, "farad"],
1002
1001
  "fatm" => [-15, "atm"], "fbar" => [-15, "bar"],
1003
- "fcal" => [-15, "cal"],
1002
+ "fcal" => [-15, "cal"], "fcd" => [-15, "cd"],
1004
1003
  "fconventional_mercury" => [-15, "conventional_mercury"],
1005
- "fd" => [-15, "d"], "fdegC" => [-15, "degC"],
1006
- "fdegF" => [-15, "degF"], "fdeg_C" => [-15, "deg_C"],
1007
- "fdeg_F" => [-15, "deg_F"], "fdegreeC" => [-15, "degreeC"],
1008
- "fdegreeF" => [-15, "degreeF"], "fdegree_C" => [-15, "degree_C"],
1009
- "fdegree_E" => [-15, "degree_E"], "fdegree_F" => [-15, "degree_F"],
1010
- "fdegree_N" => [-15, "degree_N"], "fdegree_R" => [-15, "degree_R"],
1011
- "fdegree_S" => [-15, "degree_S"], "fdegree_W" => [-15, "degree_W"],
1012
- "fdegree_c" => [-15, "degree_c"],
1004
+ "fdegC" => [-15, "degC"], "fdegF" => [-15, "degF"],
1005
+ "fdeg_C" => [-15, "deg_C"], "fdeg_F" => [-15, "deg_F"],
1006
+ "fdegreeC" => [-15, "degreeC"], "fdegreeF" => [-15, "degreeF"],
1007
+ "fdegree_C" => [-15, "degree_C"], "fdegree_E" => [-15, "degree_E"],
1008
+ "fdegree_F" => [-15, "degree_F"], "fdegree_N" => [-15, "degree_N"],
1009
+ "fdegree_R" => [-15, "degree_R"], "fdegree_S" => [-15, "degree_S"],
1010
+ "fdegree_W" => [-15, "degree_W"], "fdegree_c" => [-15, "degree_c"],
1013
1011
  "fdegree_east" => [-15, "degree_east"],
1014
1012
  "fdegree_f" => [-15, "degree_f"],
1015
1013
  "fdegree_north" => [-15, "degree_north"],
@@ -1030,6 +1028,7 @@ UALIASES = {
1030
1028
  "femtoangular_second" => [-15, "angular_second"],
1031
1029
  "femtoare" => [-15, "are"], "femtoatmosphere" => [-15, "atmosphere"],
1032
1030
  "femtocalorie" => [-15, "calorie"],
1031
+ "femtocandela" => [-15, "candela"],
1033
1032
  "femtocelsius" => [-15, "celsius"],
1034
1033
  "femtocentigrade" => [-15, "centigrade"],
1035
1034
  "femtocentury" => [-15, "century"], "femtochain" => [-15, "chain"],
@@ -1054,9 +1053,9 @@ UALIASES = {
1054
1053
  "femtomole" => [-15, "mole"], "femtomonth" => [-15, "month"],
1055
1054
  "femtonewton" => [-15, "newton"], "femtoounce" => [-15, "ounce"],
1056
1055
  "femtoparsec" => [-15, "parsec"], "femtopascal" => [-15, "pascal"],
1057
- "femtopentad" => [-15, "pentad"], "femtopoise" => [-15, "poise"],
1058
- "femtopound" => [-15, "pound"], "femtoradian" => [-15, "radian"],
1059
- "femtosecond" => [-15, "second"],
1056
+ "femtopentad" => [-15, "pentad"], "femtopercent" => [-15, "percent"],
1057
+ "femtopoise" => [-15, "poise"], "femtopound" => [-15, "pound"],
1058
+ "femtoradian" => [-15, "radian"], "femtosecond" => [-15, "second"],
1060
1059
  "femtosecond_angle" => [-15, "second_angle"],
1061
1060
  "femtosteradian" => [-15, "steradian"],
1062
1061
  "femtostokes" => [-15, "stokes"], "femtotesla" => [-15, "tesla"],
@@ -1068,19 +1067,17 @@ UALIASES = {
1068
1067
  "fermis" => [0, "fermi"], "fforce" => [-15, "force"],
1069
1068
  "fg" => [-15, "g"], "fgravity" => [-15, "gravity"],
1070
1069
  "fh" => [-15, "h"], "fhg" => [-15, "hg"], "fhr" => [-15, "hr"],
1071
- "fin" => [-15, "in"], "fkg" => [-15, "kg"], "fkgf" => [-15, "kgf"],
1070
+ "fin" => [-15, "in"], "fkgf" => [-15, "kgf"],
1072
1071
  "fkph" => [-15, "kph"], "flb" => [-15, "lb"], "flm" => [-15, "lm"],
1073
1072
  "flx" => [-15, "lx"], "fly" => [-15, "ly"], "fm" => [-15, "m"],
1074
1073
  "fmb" => [-15, "mb"], "fmercury" => [-15, "mercury"],
1075
1074
  "fmgal" => [-15, "mgal"], "fmin" => [-15, "min"],
1076
1075
  "fmol" => [-15, "mol"], "fmon" => [-15, "mon"],
1077
1076
  "fmph" => [-15, "mph"], "fohm" => [-15, "ohm"],
1078
- "foz" => [-15, "oz"], "fpc" => [-15, "pc"],
1079
- "fpercent" => [-15, "percent"], "fpermil" => [-15, "permil"],
1080
- "fpsi" => [-15, "psi"], "frad" => [-15, "rad"], "fs" => [-15, "s"],
1081
- "fsr" => [-15, "sr"], "ft" => [-15, "t"], "fyr" => [-15, "yr"],
1082
- "gals" => [0, "gal"], "gausses" => [0, "gauss"],
1083
- "gigaCelsius" => [9, "Celsius"],
1077
+ "foz" => [-15, "oz"], "fpc" => [-15, "pc"], "fpsi" => [-15, "psi"],
1078
+ "frad" => [-15, "rad"], "fs" => [-15, "s"], "fsr" => [-15, "sr"],
1079
+ "ft" => [-15, "t"], "fyr" => [-15, "yr"], "gals" => [0, "gal"],
1080
+ "gausses" => [0, "gauss"], "gigaCelsius" => [9, "Celsius"],
1084
1081
  "gigaFahrenheit" => [9, "Fahrenheit"],
1085
1082
  "gigaJulian_year" => [9, "Julian_year"],
1086
1083
  "gigaPascal" => [9, "Pascal"], "gigaacre" => [9, "acre"],
@@ -1089,7 +1086,8 @@ UALIASES = {
1089
1086
  "gigaangular_minute" => [9, "angular_minute"],
1090
1087
  "gigaangular_second" => [9, "angular_second"],
1091
1088
  "gigaare" => [9, "are"], "gigaatmosphere" => [9, "atmosphere"],
1092
- "gigacalorie" => [9, "calorie"], "gigacelsius" => [9, "celsius"],
1089
+ "gigacalorie" => [9, "calorie"], "gigacandela" => [9, "candela"],
1090
+ "gigacelsius" => [9, "celsius"],
1093
1091
  "gigacentigrade" => [9, "centigrade"],
1094
1092
  "gigacentury" => [9, "century"], "gigachain" => [9, "chain"],
1095
1093
  "gigacommon_year" => [9, "common_year"],
@@ -1112,8 +1110,9 @@ UALIASES = {
1112
1110
  "gigamonth" => [9, "month"], "giganewton" => [9, "newton"],
1113
1111
  "gigaounce" => [9, "ounce"], "gigaparsec" => [9, "parsec"],
1114
1112
  "gigapascal" => [9, "pascal"], "gigapentad" => [9, "pentad"],
1115
- "gigapoise" => [9, "poise"], "gigapound" => [9, "pound"],
1116
- "gigaradian" => [9, "radian"], "gigasecond" => [9, "second"],
1113
+ "gigapercent" => [9, "percent"], "gigapoise" => [9, "poise"],
1114
+ "gigapound" => [9, "pound"], "gigaradian" => [9, "radian"],
1115
+ "gigasecond" => [9, "second"],
1117
1116
  "gigasecond_angle" => [9, "second_angle"],
1118
1117
  "gigasteradian" => [9, "steradian"], "gigastokes" => [9, "stokes"],
1119
1118
  "gigatesla" => [9, "tesla"], "gigaton" => [9, "ton"],
@@ -1121,19 +1120,19 @@ UALIASES = {
1121
1120
  "gigavolt" => [9, "volt"], "gigawatt" => [9, "watt"],
1122
1121
  "gigaweber" => [9, "weber"], "gigayard" => [9, "yard"],
1123
1122
  "gigayd" => [9, "yd"], "gigayear" => [9, "year"],
1124
- "grams" => [0, "gram"], "h%" => [2, "%"], "hA" => [2, "A"],
1125
- "hAu" => [2, "Au"], "hBq" => [2, "Bq"], "hC" => [2, "C"],
1126
- "hF" => [2, "F"], "hG" => [2, "G"], "hGal" => [2, "Gal"],
1127
- "hGy" => [2, "Gy"], "hH" => [2, "H"], "hHg" => [2, "Hg"],
1128
- "hHz" => [2, "Hz"], "hJ" => [2, "J"], "hK" => [2, "K"],
1129
- "hL" => [2, "L"], "hN" => [2, "N"], "hP" => [2, "P"],
1130
- "hPa" => [2, "Pa"], "hS" => [2, "S"], "hSt" => [2, "St"],
1131
- "hSv" => [2, "Sv"], "hT" => [2, "T"], "hV" => [2, "V"],
1132
- "hW" => [2, "W"], "hWb" => [2, "Wb"], "ha" => [2, "a"],
1133
- "hac" => [2, "ac"], "hatm" => [2, "atm"], "hbar" => [2, "bar"],
1134
- "hcal" => [2, "cal"],
1123
+ "grams" => [0, "gram"], "hA" => [2, "A"], "hAu" => [2, "Au"],
1124
+ "hBq" => [2, "Bq"], "hC" => [2, "C"], "hF" => [2, "F"],
1125
+ "hG" => [2, "G"], "hGal" => [2, "Gal"], "hGy" => [2, "Gy"],
1126
+ "hH" => [2, "H"], "hHg" => [2, "Hg"], "hHz" => [2, "Hz"],
1127
+ "hJ" => [2, "J"], "hK" => [2, "K"], "hL" => [2, "L"],
1128
+ "hN" => [2, "N"], "hP" => [2, "P"], "hPa" => [2, "Pa"],
1129
+ "hS" => [2, "S"], "hSt" => [2, "St"], "hSv" => [2, "Sv"],
1130
+ "hT" => [2, "T"], "hV" => [2, "V"], "hW" => [2, "W"],
1131
+ "hWb" => [2, "Wb"], "ha" => [2, "a"], "hac" => [2, "ac"],
1132
+ "hatm" => [2, "atm"], "hbar" => [2, "bar"], "hcal" => [2, "cal"],
1133
+ "hcd" => [2, "cd"],
1135
1134
  "hconventional_mercury" => [2, "conventional_mercury"],
1136
- "hd" => [2, "d"], "hdegC" => [2, "degC"], "hdegF" => [2, "degF"],
1135
+ "hdegC" => [2, "degC"], "hdegF" => [2, "degF"],
1137
1136
  "hdeg_C" => [2, "deg_C"], "hdeg_F" => [2, "deg_F"],
1138
1137
  "hdegreeC" => [2, "degreeC"], "hdegreeF" => [2, "degreeF"],
1139
1138
  "hdegree_C" => [2, "degree_C"], "hdegree_E" => [2, "degree_E"],
@@ -1157,7 +1156,8 @@ UALIASES = {
1157
1156
  "hectoangular_minute" => [2, "angular_minute"],
1158
1157
  "hectoangular_second" => [2, "angular_second"],
1159
1158
  "hectoare" => [2, "are"], "hectoatmosphere" => [2, "atmosphere"],
1160
- "hectocalorie" => [2, "calorie"], "hectocelsius" => [2, "celsius"],
1159
+ "hectocalorie" => [2, "calorie"], "hectocandela" => [2, "candela"],
1160
+ "hectocelsius" => [2, "celsius"],
1161
1161
  "hectocentigrade" => [2, "centigrade"],
1162
1162
  "hectocentury" => [2, "century"], "hectochain" => [2, "chain"],
1163
1163
  "hectocommon_year" => [2, "common_year"],
@@ -1180,9 +1180,9 @@ UALIASES = {
1180
1180
  "hectomole" => [2, "mole"], "hectomonth" => [2, "month"],
1181
1181
  "hectonewton" => [2, "newton"], "hectoounce" => [2, "ounce"],
1182
1182
  "hectoparsec" => [2, "parsec"], "hectopascal" => [2, "pascal"],
1183
- "hectopentad" => [2, "pentad"], "hectopoise" => [2, "poise"],
1184
- "hectopound" => [2, "pound"], "hectoradian" => [2, "radian"],
1185
- "hectosecond" => [2, "second"],
1183
+ "hectopentad" => [2, "pentad"], "hectopercent" => [2, "percent"],
1184
+ "hectopoise" => [2, "poise"], "hectopound" => [2, "pound"],
1185
+ "hectoradian" => [2, "radian"], "hectosecond" => [2, "second"],
1186
1186
  "hectosecond_angle" => [2, "second_angle"],
1187
1187
  "hectosteradian" => [2, "steradian"], "hectostokes" => [2, "stokes"],
1188
1188
  "hectotesla" => [2, "tesla"], "hectoton" => [2, "ton"],
@@ -1193,29 +1193,28 @@ UALIASES = {
1193
1193
  "herg" => [2, "erg"], "hertzes" => [0, "hertz"],
1194
1194
  "hforce" => [2, "force"], "hg" => [2, "g"],
1195
1195
  "hgravity" => [2, "gravity"], "hh" => [2, "h"], "hhg" => [2, "hg"],
1196
- "hhr" => [2, "hr"], "hin" => [2, "in"], "hkg" => [2, "kg"],
1197
- "hkgf" => [2, "kgf"], "hkph" => [2, "kph"], "hlb" => [2, "lb"],
1198
- "hlm" => [2, "lm"], "hlx" => [2, "lx"], "hly" => [2, "ly"],
1199
- "hm" => [2, "m"], "hmb" => [2, "mb"], "hmercury" => [2, "mercury"],
1196
+ "hhr" => [2, "hr"], "hin" => [2, "in"], "hkgf" => [2, "kgf"],
1197
+ "hkph" => [2, "kph"], "hlb" => [2, "lb"], "hlm" => [2, "lm"],
1198
+ "hlx" => [2, "lx"], "hly" => [2, "ly"], "hm" => [2, "m"],
1199
+ "hmb" => [2, "mb"], "hmercury" => [2, "mercury"],
1200
1200
  "hmgal" => [2, "mgal"], "hmin" => [2, "min"], "hmol" => [2, "mol"],
1201
1201
  "hmon" => [2, "mon"], "hmph" => [2, "mph"], "hohm" => [2, "ohm"],
1202
1202
  "hours" => [0, "hour"], "hoz" => [2, "oz"], "hpc" => [2, "pc"],
1203
- "hpercent" => [2, "percent"], "hpermil" => [2, "permil"],
1204
1203
  "hpsi" => [2, "psi"], "hrad" => [2, "rad"], "hs" => [2, "s"],
1205
1204
  "hsr" => [2, "sr"], "ht" => [2, "t"], "hyr" => [2, "yr"],
1206
- "inchs" => [0, "inch"], "joules" => [0, "joule"], "k%" => [3, "%"],
1207
- "kA" => [3, "A"], "kAu" => [3, "Au"], "kBq" => [3, "Bq"],
1208
- "kC" => [3, "C"], "kF" => [3, "F"], "kG" => [3, "G"],
1209
- "kGal" => [3, "Gal"], "kGy" => [3, "Gy"], "kH" => [3, "H"],
1210
- "kHg" => [3, "Hg"], "kHz" => [3, "Hz"], "kJ" => [3, "J"],
1211
- "kK" => [3, "K"], "kL" => [3, "L"], "kN" => [3, "N"],
1212
- "kP" => [3, "P"], "kPa" => [3, "Pa"], "kS" => [3, "S"],
1213
- "kSt" => [3, "St"], "kSv" => [3, "Sv"], "kT" => [3, "T"],
1214
- "kV" => [3, "V"], "kW" => [3, "W"], "kWb" => [3, "Wb"],
1215
- "ka" => [3, "a"], "kac" => [3, "ac"], "katm" => [3, "atm"],
1216
- "kbar" => [3, "bar"], "kcal" => [3, "cal"],
1205
+ "inchs" => [0, "inch"], "joules" => [0, "joule"], "kA" => [3, "A"],
1206
+ "kAu" => [3, "Au"], "kBq" => [3, "Bq"], "kC" => [3, "C"],
1207
+ "kF" => [3, "F"], "kG" => [3, "G"], "kGal" => [3, "Gal"],
1208
+ "kGy" => [3, "Gy"], "kH" => [3, "H"], "kHg" => [3, "Hg"],
1209
+ "kHz" => [3, "Hz"], "kJ" => [3, "J"], "kK" => [3, "K"],
1210
+ "kL" => [3, "L"], "kN" => [3, "N"], "kP" => [3, "P"],
1211
+ "kPa" => [3, "Pa"], "kS" => [3, "S"], "kSt" => [3, "St"],
1212
+ "kSv" => [3, "Sv"], "kT" => [3, "T"], "kV" => [3, "V"],
1213
+ "kW" => [3, "W"], "kWb" => [3, "Wb"], "ka" => [3, "a"],
1214
+ "kac" => [3, "ac"], "katm" => [3, "atm"], "kbar" => [3, "bar"],
1215
+ "kcal" => [3, "cal"], "kcd" => [3, "cd"],
1217
1216
  "kconventional_mercury" => [3, "conventional_mercury"],
1218
- "kd" => [3, "d"], "kdegC" => [3, "degC"], "kdegF" => [3, "degF"],
1217
+ "kdegC" => [3, "degC"], "kdegF" => [3, "degF"],
1219
1218
  "kdeg_C" => [3, "deg_C"], "kdeg_F" => [3, "deg_F"],
1220
1219
  "kdegreeC" => [3, "degreeC"], "kdegreeF" => [3, "degreeF"],
1221
1220
  "kdegree_C" => [3, "degree_C"], "kdegree_E" => [3, "degree_E"],
@@ -1242,7 +1241,8 @@ UALIASES = {
1242
1241
  "kiloangular_minute" => [3, "angular_minute"],
1243
1242
  "kiloangular_second" => [3, "angular_second"],
1244
1243
  "kiloare" => [3, "are"], "kiloatmosphere" => [3, "atmosphere"],
1245
- "kilocalorie" => [3, "calorie"], "kilocelsius" => [3, "celsius"],
1244
+ "kilocalorie" => [3, "calorie"], "kilocandela" => [3, "candela"],
1245
+ "kilocelsius" => [3, "celsius"],
1246
1246
  "kilocentigrade" => [3, "centigrade"],
1247
1247
  "kilocentury" => [3, "century"], "kilochain" => [3, "chain"],
1248
1248
  "kilocommon_year" => [3, "common_year"],
@@ -1265,8 +1265,9 @@ UALIASES = {
1265
1265
  "kilomonth" => [3, "month"], "kilonewton" => [3, "newton"],
1266
1266
  "kiloounce" => [3, "ounce"], "kiloparsec" => [3, "parsec"],
1267
1267
  "kilopascal" => [3, "pascal"], "kilopentad" => [3, "pentad"],
1268
- "kilopoise" => [3, "poise"], "kilopound" => [3, "pound"],
1269
- "kiloradian" => [3, "radian"], "kilosecond" => [3, "second"],
1268
+ "kilopercent" => [3, "percent"], "kilopoise" => [3, "poise"],
1269
+ "kilopound" => [3, "pound"], "kiloradian" => [3, "radian"],
1270
+ "kilosecond" => [3, "second"],
1270
1271
  "kilosecond_angle" => [3, "second_angle"],
1271
1272
  "kilosteradian" => [3, "steradian"], "kilostokes" => [3, "stokes"],
1272
1273
  "kilotesla" => [3, "tesla"], "kiloton" => [3, "ton"],
@@ -1274,29 +1275,27 @@ UALIASES = {
1274
1275
  "kilovolt" => [3, "volt"], "kilowatt" => [3, "watt"],
1275
1276
  "kiloweber" => [3, "weber"], "kiloyard" => [3, "yard"],
1276
1277
  "kiloyd" => [3, "yd"], "kiloyear" => [3, "year"],
1277
- "kin" => [3, "in"], "kkg" => [3, "kg"], "kkgf" => [3, "kgf"],
1278
- "kkph" => [3, "kph"], "klb" => [3, "lb"], "klm" => [3, "lm"],
1279
- "klx" => [3, "lx"], "kly" => [3, "ly"], "km" => [3, "m"],
1280
- "kmb" => [3, "mb"], "kmercury" => [3, "mercury"],
1281
- "kmgal" => [3, "mgal"], "kmin" => [3, "min"], "kmol" => [3, "mol"],
1282
- "kmon" => [3, "mon"], "kmph" => [3, "mph"], "knots" => [0, "knot"],
1283
- "kohm" => [3, "ohm"], "koz" => [3, "oz"], "kpc" => [3, "pc"],
1284
- "kpercent" => [3, "percent"], "kpermil" => [3, "permil"],
1285
- "kpsi" => [3, "psi"], "krad" => [3, "rad"], "ks" => [3, "s"],
1286
- "ksr" => [3, "sr"], "kt" => [3, "t"], "kyr" => [3, "yr"],
1287
- "litres" => [0, "litre"], "m%" => [-3, "%"], "mA" => [-3, "A"],
1288
- "mAu" => [-3, "Au"], "mBq" => [-3, "Bq"], "mC" => [-3, "C"],
1289
- "mF" => [-3, "F"], "mG" => [-3, "G"], "mGal" => [-3, "Gal"],
1290
- "mGy" => [-3, "Gy"], "mH" => [-3, "H"], "mHg" => [-3, "Hg"],
1291
- "mHz" => [-3, "Hz"], "mJ" => [-3, "J"], "mK" => [-3, "K"],
1292
- "mL" => [-3, "L"], "mN" => [-3, "N"], "mP" => [-3, "P"],
1293
- "mPa" => [-3, "Pa"], "mS" => [-3, "S"], "mSt" => [-3, "St"],
1294
- "mSv" => [-3, "Sv"], "mT" => [-3, "T"], "mV" => [-3, "V"],
1295
- "mW" => [-3, "W"], "mWb" => [-3, "Wb"], "ma" => [-3, "a"],
1296
- "mac" => [-3, "ac"], "matm" => [-3, "atm"], "mbar" => [-3, "bar"],
1297
- "mcal" => [-3, "cal"],
1278
+ "kin" => [3, "in"], "kkgf" => [3, "kgf"], "kkph" => [3, "kph"],
1279
+ "klb" => [3, "lb"], "klm" => [3, "lm"], "klx" => [3, "lx"],
1280
+ "kly" => [3, "ly"], "km" => [3, "m"], "kmb" => [3, "mb"],
1281
+ "kmercury" => [3, "mercury"], "kmgal" => [3, "mgal"],
1282
+ "kmin" => [3, "min"], "kmol" => [3, "mol"], "kmon" => [3, "mon"],
1283
+ "kmph" => [3, "mph"], "knots" => [0, "knot"], "kohm" => [3, "ohm"],
1284
+ "koz" => [3, "oz"], "kpc" => [3, "pc"], "kpsi" => [3, "psi"],
1285
+ "krad" => [3, "rad"], "ks" => [3, "s"], "ksr" => [3, "sr"],
1286
+ "kt" => [3, "t"], "kyr" => [3, "yr"], "litres" => [0, "litre"],
1287
+ "mA" => [-3, "A"], "mAu" => [-3, "Au"], "mBq" => [-3, "Bq"],
1288
+ "mC" => [-3, "C"], "mF" => [-3, "F"], "mG" => [-3, "G"],
1289
+ "mGal" => [-3, "Gal"], "mGy" => [-3, "Gy"], "mH" => [-3, "H"],
1290
+ "mHg" => [-3, "Hg"], "mHz" => [-3, "Hz"], "mJ" => [-3, "J"],
1291
+ "mK" => [-3, "K"], "mL" => [-3, "L"], "mN" => [-3, "N"],
1292
+ "mP" => [-3, "P"], "mPa" => [-3, "Pa"], "mS" => [-3, "S"],
1293
+ "mSt" => [-3, "St"], "mSv" => [-3, "Sv"], "mT" => [-3, "T"],
1294
+ "mV" => [-3, "V"], "mW" => [-3, "W"], "mWb" => [-3, "Wb"],
1295
+ "ma" => [-3, "a"], "mac" => [-3, "ac"], "matm" => [-3, "atm"],
1296
+ "mbar" => [-3, "bar"], "mcal" => [-3, "cal"], "mcd" => [-3, "cd"],
1298
1297
  "mconventional_mercury" => [-3, "conventional_mercury"],
1299
- "md" => [-3, "d"], "mdegC" => [-3, "degC"], "mdegF" => [-3, "degF"],
1298
+ "mdegC" => [-3, "degC"], "mdegF" => [-3, "degF"],
1300
1299
  "mdeg_C" => [-3, "deg_C"], "mdeg_F" => [-3, "deg_F"],
1301
1300
  "mdegreeC" => [-3, "degreeC"], "mdegreeF" => [-3, "degreeF"],
1302
1301
  "mdegree_C" => [-3, "degree_C"], "mdegree_E" => [-3, "degree_E"],
@@ -1321,7 +1320,8 @@ UALIASES = {
1321
1320
  "megaangular_minute" => [6, "angular_minute"],
1322
1321
  "megaangular_second" => [6, "angular_second"],
1323
1322
  "megaare" => [6, "are"], "megaatmosphere" => [6, "atmosphere"],
1324
- "megacalorie" => [6, "calorie"], "megacelsius" => [6, "celsius"],
1323
+ "megacalorie" => [6, "calorie"], "megacandela" => [6, "candela"],
1324
+ "megacelsius" => [6, "celsius"],
1325
1325
  "megacentigrade" => [6, "centigrade"],
1326
1326
  "megacentury" => [6, "century"], "megachain" => [6, "chain"],
1327
1327
  "megacommon_year" => [6, "common_year"],
@@ -1344,8 +1344,9 @@ UALIASES = {
1344
1344
  "megamonth" => [6, "month"], "meganewton" => [6, "newton"],
1345
1345
  "megaounce" => [6, "ounce"], "megaparsec" => [6, "parsec"],
1346
1346
  "megapascal" => [6, "pascal"], "megapentad" => [6, "pentad"],
1347
- "megapoise" => [6, "poise"], "megapound" => [6, "pound"],
1348
- "megaradian" => [6, "radian"], "megasecond" => [6, "second"],
1347
+ "megapercent" => [6, "percent"], "megapoise" => [6, "poise"],
1348
+ "megapound" => [6, "pound"], "megaradian" => [6, "radian"],
1349
+ "megasecond" => [6, "second"],
1349
1350
  "megasecond_angle" => [6, "second_angle"],
1350
1351
  "megasteradian" => [6, "steradian"], "megastokes" => [6, "stokes"],
1351
1352
  "megatesla" => [6, "tesla"], "megaton" => [6, "ton"],
@@ -1366,7 +1367,8 @@ UALIASES = {
1366
1367
  "microangular_minute" => [-6, "angular_minute"],
1367
1368
  "microangular_second" => [-6, "angular_second"],
1368
1369
  "microare" => [-6, "are"], "microatmosphere" => [-6, "atmosphere"],
1369
- "microcalorie" => [-6, "calorie"], "microcelsius" => [-6, "celsius"],
1370
+ "microcalorie" => [-6, "calorie"], "microcandela" => [-6, "candela"],
1371
+ "microcelsius" => [-6, "celsius"],
1370
1372
  "microcentigrade" => [-6, "centigrade"],
1371
1373
  "microcentury" => [-6, "century"], "microchain" => [-6, "chain"],
1372
1374
  "microcommon_year" => [-6, "common_year"],
@@ -1390,8 +1392,9 @@ UALIASES = {
1390
1392
  "micronewton" => [-6, "newton"], "microns" => [0, "micron"],
1391
1393
  "microounce" => [-6, "ounce"], "microparsec" => [-6, "parsec"],
1392
1394
  "micropascal" => [-6, "pascal"], "micropentad" => [-6, "pentad"],
1393
- "micropoise" => [-6, "poise"], "micropound" => [-6, "pound"],
1394
- "microradian" => [-6, "radian"], "microsecond" => [-6, "second"],
1395
+ "micropercent" => [-6, "percent"], "micropoise" => [-6, "poise"],
1396
+ "micropound" => [-6, "pound"], "microradian" => [-6, "radian"],
1397
+ "microsecond" => [-6, "second"],
1395
1398
  "microsecond_angle" => [-6, "second_angle"],
1396
1399
  "microsteradian" => [-6, "steradian"],
1397
1400
  "microstokes" => [-6, "stokes"], "microtesla" => [-6, "tesla"],
@@ -1410,7 +1413,7 @@ UALIASES = {
1410
1413
  "milliangular_second" => [-3, "angular_second"],
1411
1414
  "milliare" => [-3, "are"], "milliatmosphere" => [-3, "atmosphere"],
1412
1415
  "millibars" => [0, "millibar"], "millicalorie" => [-3, "calorie"],
1413
- "millicelsius" => [-3, "celsius"],
1416
+ "millicandela" => [-3, "candela"], "millicelsius" => [-3, "celsius"],
1414
1417
  "millicentigrade" => [-3, "centigrade"],
1415
1418
  "millicentury" => [-3, "century"], "millichain" => [-3, "chain"],
1416
1419
  "millicommon_year" => [-3, "common_year"],
@@ -1433,9 +1436,9 @@ UALIASES = {
1433
1436
  "millimole" => [-3, "mole"], "millimonth" => [-3, "month"],
1434
1437
  "millinewton" => [-3, "newton"], "milliounce" => [-3, "ounce"],
1435
1438
  "milliparsec" => [-3, "parsec"], "millipascal" => [-3, "pascal"],
1436
- "millipentad" => [-3, "pentad"], "millipoise" => [-3, "poise"],
1437
- "millipound" => [-3, "pound"], "milliradian" => [-3, "radian"],
1438
- "millisecond" => [-3, "second"],
1439
+ "millipentad" => [-3, "pentad"], "millipercent" => [-3, "percent"],
1440
+ "millipoise" => [-3, "poise"], "millipound" => [-3, "pound"],
1441
+ "milliradian" => [-3, "radian"], "millisecond" => [-3, "second"],
1439
1442
  "millisecond_angle" => [-3, "second_angle"],
1440
1443
  "millisteradian" => [-3, "steradian"],
1441
1444
  "millistokes" => [-3, "stokes"], "millitesla" => [-3, "tesla"],
@@ -1445,27 +1448,25 @@ UALIASES = {
1445
1448
  "milliyard" => [-3, "yard"], "milliyd" => [-3, "yd"],
1446
1449
  "milliyear" => [-3, "year"], "min" => [-3, "in"],
1447
1450
  "minutes" => [0, "minute"], "minutes_angle" => [0, "minute_angle"],
1448
- "mkg" => [-3, "kg"], "mkgf" => [-3, "kgf"], "mkph" => [-3, "kph"],
1449
- "mlb" => [-3, "lb"], "mlm" => [-3, "lm"], "mlx" => [-3, "lx"],
1450
- "mly" => [-3, "ly"], "mm" => [-3, "m"], "mmb" => [-3, "mb"],
1451
+ "mkgf" => [-3, "kgf"], "mkph" => [-3, "kph"], "mlb" => [-3, "lb"],
1452
+ "mlm" => [-3, "lm"], "mlx" => [-3, "lx"], "mly" => [-3, "ly"],
1453
+ "mm" => [-3, "m"], "mmb" => [-3, "mb"],
1451
1454
  "mmercury" => [-3, "mercury"], "mmgal" => [-3, "mgal"],
1452
1455
  "mmin" => [-3, "min"], "mmol" => [-3, "mol"], "mmon" => [-3, "mon"],
1453
1456
  "mmph" => [-3, "mph"], "mohm" => [-3, "ohm"],
1454
1457
  "moles" => [0, "mole"], "months" => [0, "month"],
1455
- "moz" => [-3, "oz"], "mpc" => [-3, "pc"],
1456
- "mpercent" => [-3, "percent"], "mpermil" => [-3, "permil"],
1457
- "mpsi" => [-3, "psi"], "mrad" => [-3, "rad"], "ms" => [-3, "s"],
1458
- "msr" => [-3, "sr"], "mt" => [-3, "t"], "myr" => [-3, "yr"],
1459
- "n%" => [-9, "%"], "nA" => [-9, "A"], "nAu" => [-9, "Au"],
1460
- "nBq" => [-9, "Bq"], "nC" => [-9, "C"], "nF" => [-9, "F"],
1461
- "nG" => [-9, "G"], "nGal" => [-9, "Gal"], "nGy" => [-9, "Gy"],
1462
- "nH" => [-9, "H"], "nHg" => [-9, "Hg"], "nHz" => [-9, "Hz"],
1463
- "nJ" => [-9, "J"], "nK" => [-9, "K"], "nL" => [-9, "L"],
1464
- "nN" => [-9, "N"], "nP" => [-9, "P"], "nPa" => [-9, "Pa"],
1465
- "nS" => [-9, "S"], "nSt" => [-9, "St"], "nSv" => [-9, "Sv"],
1466
- "nT" => [-9, "T"], "nV" => [-9, "V"], "nW" => [-9, "W"],
1467
- "nWb" => [-9, "Wb"], "na" => [-9, "a"], "nac" => [-9, "ac"],
1468
- "nanoCelsius" => [-9, "Celsius"],
1458
+ "moz" => [-3, "oz"], "mpc" => [-3, "pc"], "mpsi" => [-3, "psi"],
1459
+ "mrad" => [-3, "rad"], "ms" => [-3, "s"], "msr" => [-3, "sr"],
1460
+ "mt" => [-3, "t"], "myr" => [-3, "yr"], "nA" => [-9, "A"],
1461
+ "nAu" => [-9, "Au"], "nBq" => [-9, "Bq"], "nC" => [-9, "C"],
1462
+ "nF" => [-9, "F"], "nG" => [-9, "G"], "nGal" => [-9, "Gal"],
1463
+ "nGy" => [-9, "Gy"], "nH" => [-9, "H"], "nHg" => [-9, "Hg"],
1464
+ "nHz" => [-9, "Hz"], "nJ" => [-9, "J"], "nK" => [-9, "K"],
1465
+ "nL" => [-9, "L"], "nN" => [-9, "N"], "nP" => [-9, "P"],
1466
+ "nPa" => [-9, "Pa"], "nS" => [-9, "S"], "nSt" => [-9, "St"],
1467
+ "nSv" => [-9, "Sv"], "nT" => [-9, "T"], "nV" => [-9, "V"],
1468
+ "nW" => [-9, "W"], "nWb" => [-9, "Wb"], "na" => [-9, "a"],
1469
+ "nac" => [-9, "ac"], "nanoCelsius" => [-9, "Celsius"],
1469
1470
  "nanoFahrenheit" => [-9, "Fahrenheit"],
1470
1471
  "nanoJulian_year" => [-9, "Julian_year"],
1471
1472
  "nanoPascal" => [-9, "Pascal"], "nanoacre" => [-9, "acre"],
@@ -1474,7 +1475,8 @@ UALIASES = {
1474
1475
  "nanoangular_minute" => [-9, "angular_minute"],
1475
1476
  "nanoangular_second" => [-9, "angular_second"],
1476
1477
  "nanoare" => [-9, "are"], "nanoatmosphere" => [-9, "atmosphere"],
1477
- "nanocalorie" => [-9, "calorie"], "nanocelsius" => [-9, "celsius"],
1478
+ "nanocalorie" => [-9, "calorie"], "nanocandela" => [-9, "candela"],
1479
+ "nanocelsius" => [-9, "celsius"],
1478
1480
  "nanocentigrade" => [-9, "centigrade"],
1479
1481
  "nanocentury" => [-9, "century"], "nanochain" => [-9, "chain"],
1480
1482
  "nanocommon_year" => [-9, "common_year"],
@@ -1497,9 +1499,9 @@ UALIASES = {
1497
1499
  "nanomole" => [-9, "mole"], "nanomonth" => [-9, "month"],
1498
1500
  "nanonewton" => [-9, "newton"], "nanoounce" => [-9, "ounce"],
1499
1501
  "nanoparsec" => [-9, "parsec"], "nanopascal" => [-9, "pascal"],
1500
- "nanopentad" => [-9, "pentad"], "nanopoise" => [-9, "poise"],
1501
- "nanopound" => [-9, "pound"], "nanoradian" => [-9, "radian"],
1502
- "nanosecond" => [-9, "second"],
1502
+ "nanopentad" => [-9, "pentad"], "nanopercent" => [-9, "percent"],
1503
+ "nanopoise" => [-9, "poise"], "nanopound" => [-9, "pound"],
1504
+ "nanoradian" => [-9, "radian"], "nanosecond" => [-9, "second"],
1503
1505
  "nanosecond_angle" => [-9, "second_angle"],
1504
1506
  "nanosteradian" => [-9, "steradian"], "nanostokes" => [-9, "stokes"],
1505
1507
  "nanotesla" => [-9, "tesla"], "nanoton" => [-9, "ton"],
@@ -1508,8 +1510,9 @@ UALIASES = {
1508
1510
  "nanoweber" => [-9, "weber"], "nanoyard" => [-9, "yard"],
1509
1511
  "nanoyd" => [-9, "yd"], "nanoyear" => [-9, "year"],
1510
1512
  "natm" => [-9, "atm"], "nbar" => [-9, "bar"], "ncal" => [-9, "cal"],
1513
+ "ncd" => [-9, "cd"],
1511
1514
  "nconventional_mercury" => [-9, "conventional_mercury"],
1512
- "nd" => [-9, "d"], "ndegC" => [-9, "degC"], "ndegF" => [-9, "degF"],
1515
+ "ndegC" => [-9, "degC"], "ndegF" => [-9, "degF"],
1513
1516
  "ndeg_C" => [-9, "deg_C"], "ndeg_F" => [-9, "deg_F"],
1514
1517
  "ndegreeC" => [-9, "degreeC"], "ndegreeF" => [-9, "degreeF"],
1515
1518
  "ndegree_C" => [-9, "degree_C"], "ndegree_E" => [-9, "degree_E"],
@@ -1529,37 +1532,35 @@ UALIASES = {
1529
1532
  "nforce" => [-9, "force"], "ng" => [-9, "g"],
1530
1533
  "ngravity" => [-9, "gravity"], "nh" => [-9, "h"],
1531
1534
  "nhg" => [-9, "hg"], "nhr" => [-9, "hr"], "nin" => [-9, "in"],
1532
- "nkg" => [-9, "kg"], "nkgf" => [-9, "kgf"], "nkph" => [-9, "kph"],
1533
- "nlb" => [-9, "lb"], "nlm" => [-9, "lm"], "nlx" => [-9, "lx"],
1534
- "nly" => [-9, "ly"], "nm" => [-9, "m"], "nmb" => [-9, "mb"],
1535
+ "nkgf" => [-9, "kgf"], "nkph" => [-9, "kph"], "nlb" => [-9, "lb"],
1536
+ "nlm" => [-9, "lm"], "nlx" => [-9, "lx"], "nly" => [-9, "ly"],
1537
+ "nm" => [-9, "m"], "nmb" => [-9, "mb"],
1535
1538
  "nmercury" => [-9, "mercury"], "nmgal" => [-9, "mgal"],
1536
1539
  "nmin" => [-9, "min"], "nmol" => [-9, "mol"], "nmon" => [-9, "mon"],
1537
1540
  "nmph" => [-9, "mph"], "nohm" => [-9, "ohm"], "noz" => [-9, "oz"],
1538
- "npc" => [-9, "pc"], "npercent" => [-9, "percent"],
1539
- "npermil" => [-9, "permil"], "npsi" => [-9, "psi"],
1540
- "nrad" => [-9, "rad"], "ns" => [-9, "s"], "nsr" => [-9, "sr"],
1541
- "nt" => [-9, "t"], "nyr" => [-9, "yr"], "ounces" => [0, "ounce"],
1542
- "p%" => [-12, "%"], "pA" => [-12, "A"], "pAu" => [-12, "Au"],
1543
- "pBq" => [-12, "Bq"], "pC" => [-12, "C"], "pF" => [-12, "F"],
1544
- "pG" => [-12, "G"], "pGal" => [-12, "Gal"], "pGy" => [-12, "Gy"],
1545
- "pH" => [-12, "H"], "pHg" => [-12, "Hg"], "pHz" => [-12, "Hz"],
1546
- "pJ" => [-12, "J"], "pK" => [-12, "K"], "pL" => [-12, "L"],
1547
- "pN" => [-12, "N"], "pP" => [-12, "P"], "pPa" => [-12, "Pa"],
1548
- "pS" => [-12, "S"], "pSt" => [-12, "St"], "pSv" => [-12, "Sv"],
1549
- "pT" => [-12, "T"], "pV" => [-12, "V"], "pW" => [-12, "W"],
1550
- "pWb" => [-12, "Wb"], "pa" => [-12, "a"], "pac" => [-12, "ac"],
1551
- "parsecs" => [0, "parsec"], "pascals" => [0, "pascal"],
1552
- "patm" => [-12, "atm"], "pbar" => [-12, "bar"],
1553
- "pcal" => [-12, "cal"],
1541
+ "npc" => [-9, "pc"], "npsi" => [-9, "psi"], "nrad" => [-9, "rad"],
1542
+ "ns" => [-9, "s"], "nsr" => [-9, "sr"], "nt" => [-9, "t"],
1543
+ "nyr" => [-9, "yr"], "ounces" => [0, "ounce"], "pA" => [-12, "A"],
1544
+ "pAu" => [-12, "Au"], "pBq" => [-12, "Bq"], "pC" => [-12, "C"],
1545
+ "pF" => [-12, "F"], "pG" => [-12, "G"], "pGal" => [-12, "Gal"],
1546
+ "pGy" => [-12, "Gy"], "pH" => [-12, "H"], "pHg" => [-12, "Hg"],
1547
+ "pHz" => [-12, "Hz"], "pJ" => [-12, "J"], "pK" => [-12, "K"],
1548
+ "pL" => [-12, "L"], "pN" => [-12, "N"], "pP" => [-12, "P"],
1549
+ "pPa" => [-12, "Pa"], "pS" => [-12, "S"], "pSt" => [-12, "St"],
1550
+ "pSv" => [-12, "Sv"], "pT" => [-12, "T"], "pV" => [-12, "V"],
1551
+ "pW" => [-12, "W"], "pWb" => [-12, "Wb"], "pa" => [-12, "a"],
1552
+ "pac" => [-12, "ac"], "parsecs" => [0, "parsec"],
1553
+ "pascals" => [0, "pascal"], "patm" => [-12, "atm"],
1554
+ "pbar" => [-12, "bar"], "pcal" => [-12, "cal"],
1555
+ "pcd" => [-12, "cd"],
1554
1556
  "pconventional_mercury" => [-12, "conventional_mercury"],
1555
- "pd" => [-12, "d"], "pdegC" => [-12, "degC"],
1556
- "pdegF" => [-12, "degF"], "pdeg_C" => [-12, "deg_C"],
1557
- "pdeg_F" => [-12, "deg_F"], "pdegreeC" => [-12, "degreeC"],
1558
- "pdegreeF" => [-12, "degreeF"], "pdegree_C" => [-12, "degree_C"],
1559
- "pdegree_E" => [-12, "degree_E"], "pdegree_F" => [-12, "degree_F"],
1560
- "pdegree_N" => [-12, "degree_N"], "pdegree_R" => [-12, "degree_R"],
1561
- "pdegree_S" => [-12, "degree_S"], "pdegree_W" => [-12, "degree_W"],
1562
- "pdegree_c" => [-12, "degree_c"],
1557
+ "pdegC" => [-12, "degC"], "pdegF" => [-12, "degF"],
1558
+ "pdeg_C" => [-12, "deg_C"], "pdeg_F" => [-12, "deg_F"],
1559
+ "pdegreeC" => [-12, "degreeC"], "pdegreeF" => [-12, "degreeF"],
1560
+ "pdegree_C" => [-12, "degree_C"], "pdegree_E" => [-12, "degree_E"],
1561
+ "pdegree_F" => [-12, "degree_F"], "pdegree_N" => [-12, "degree_N"],
1562
+ "pdegree_R" => [-12, "degree_R"], "pdegree_S" => [-12, "degree_S"],
1563
+ "pdegree_W" => [-12, "degree_W"], "pdegree_c" => [-12, "degree_c"],
1563
1564
  "pdegree_east" => [-12, "degree_east"],
1564
1565
  "pdegree_f" => [-12, "degree_f"],
1565
1566
  "pdegree_north" => [-12, "degree_north"],
@@ -1569,8 +1570,8 @@ UALIASES = {
1569
1570
  "pdegrees_north" => [-12, "degrees_north"],
1570
1571
  "pdegrees_south" => [-12, "degrees_south"],
1571
1572
  "pdegrees_west" => [-12, "degrees_west"], "pdyn" => [-12, "dyn"],
1572
- "pentads" => [0, "pentad"], "perg" => [-12, "erg"],
1573
- "petaCelsius" => [15, "Celsius"],
1573
+ "pentads" => [0, "pentad"], "percents" => [0, "percent"],
1574
+ "perg" => [-12, "erg"], "petaCelsius" => [15, "Celsius"],
1574
1575
  "petaFahrenheit" => [15, "Fahrenheit"],
1575
1576
  "petaJulian_year" => [15, "Julian_year"],
1576
1577
  "petaPascal" => [15, "Pascal"], "petaacre" => [15, "acre"],
@@ -1579,7 +1580,8 @@ UALIASES = {
1579
1580
  "petaangular_minute" => [15, "angular_minute"],
1580
1581
  "petaangular_second" => [15, "angular_second"],
1581
1582
  "petaare" => [15, "are"], "petaatmosphere" => [15, "atmosphere"],
1582
- "petacalorie" => [15, "calorie"], "petacelsius" => [15, "celsius"],
1583
+ "petacalorie" => [15, "calorie"], "petacandela" => [15, "candela"],
1584
+ "petacelsius" => [15, "celsius"],
1583
1585
  "petacentigrade" => [15, "centigrade"],
1584
1586
  "petacentury" => [15, "century"], "petachain" => [15, "chain"],
1585
1587
  "petacommon_year" => [15, "common_year"],
@@ -1602,9 +1604,9 @@ UALIASES = {
1602
1604
  "petamole" => [15, "mole"], "petamonth" => [15, "month"],
1603
1605
  "petanewton" => [15, "newton"], "petaounce" => [15, "ounce"],
1604
1606
  "petaparsec" => [15, "parsec"], "petapascal" => [15, "pascal"],
1605
- "petapentad" => [15, "pentad"], "petapoise" => [15, "poise"],
1606
- "petapound" => [15, "pound"], "petaradian" => [15, "radian"],
1607
- "petasecond" => [15, "second"],
1607
+ "petapentad" => [15, "pentad"], "petapercent" => [15, "percent"],
1608
+ "petapoise" => [15, "poise"], "petapound" => [15, "pound"],
1609
+ "petaradian" => [15, "radian"], "petasecond" => [15, "second"],
1608
1610
  "petasecond_angle" => [15, "second_angle"],
1609
1611
  "petasteradian" => [15, "steradian"], "petastokes" => [15, "stokes"],
1610
1612
  "petatesla" => [15, "tesla"], "petaton" => [15, "ton"],
@@ -1624,7 +1626,8 @@ UALIASES = {
1624
1626
  "picoangular_minute" => [-12, "angular_minute"],
1625
1627
  "picoangular_second" => [-12, "angular_second"],
1626
1628
  "picoare" => [-12, "are"], "picoatmosphere" => [-12, "atmosphere"],
1627
- "picocalorie" => [-12, "calorie"], "picocelsius" => [-12, "celsius"],
1629
+ "picocalorie" => [-12, "calorie"], "picocandela" => [-12, "candela"],
1630
+ "picocelsius" => [-12, "celsius"],
1628
1631
  "picocentigrade" => [-12, "centigrade"],
1629
1632
  "picocentury" => [-12, "century"], "picochain" => [-12, "chain"],
1630
1633
  "picocommon_year" => [-12, "common_year"],
@@ -1647,9 +1650,9 @@ UALIASES = {
1647
1650
  "picomole" => [-12, "mole"], "picomonth" => [-12, "month"],
1648
1651
  "piconewton" => [-12, "newton"], "picoounce" => [-12, "ounce"],
1649
1652
  "picoparsec" => [-12, "parsec"], "picopascal" => [-12, "pascal"],
1650
- "picopentad" => [-12, "pentad"], "picopoise" => [-12, "poise"],
1651
- "picopound" => [-12, "pound"], "picoradian" => [-12, "radian"],
1652
- "picosecond" => [-12, "second"],
1653
+ "picopentad" => [-12, "pentad"], "picopercent" => [-12, "percent"],
1654
+ "picopoise" => [-12, "poise"], "picopound" => [-12, "pound"],
1655
+ "picoradian" => [-12, "radian"], "picosecond" => [-12, "second"],
1653
1656
  "picosecond_angle" => [-12, "second_angle"],
1654
1657
  "picosteradian" => [-12, "steradian"],
1655
1658
  "picostokes" => [-12, "stokes"], "picotesla" => [-12, "tesla"],
@@ -1658,18 +1661,17 @@ UALIASES = {
1658
1661
  "picowatt" => [-12, "watt"], "picoweber" => [-12, "weber"],
1659
1662
  "picoyard" => [-12, "yard"], "picoyd" => [-12, "yd"],
1660
1663
  "picoyear" => [-12, "year"], "pin" => [-12, "in"],
1661
- "pkg" => [-12, "kg"], "pkgf" => [-12, "kgf"],
1662
- "pkph" => [-12, "kph"], "plb" => [-12, "lb"], "plm" => [-12, "lm"],
1663
- "plx" => [-12, "lx"], "ply" => [-12, "ly"], "pm" => [-12, "m"],
1664
- "pmb" => [-12, "mb"], "pmercury" => [-12, "mercury"],
1665
- "pmgal" => [-12, "mgal"], "pmin" => [-12, "min"],
1666
- "pmol" => [-12, "mol"], "pmon" => [-12, "mon"],
1667
- "pmph" => [-12, "mph"], "pohm" => [-12, "ohm"],
1668
- "poises" => [0, "poise"], "pounds" => [0, "pound"],
1669
- "poz" => [-12, "oz"], "ppc" => [-12, "pc"],
1670
- "ppercent" => [-12, "percent"], "ppermil" => [-12, "permil"],
1671
- "ppsi" => [-12, "psi"], "prad" => [-12, "rad"], "ps" => [-12, "s"],
1672
- "psr" => [-12, "sr"], "pt" => [-12, "t"], "pyr" => [-12, "yr"],
1664
+ "pkgf" => [-12, "kgf"], "pkph" => [-12, "kph"],
1665
+ "plb" => [-12, "lb"], "plm" => [-12, "lm"], "plx" => [-12, "lx"],
1666
+ "ply" => [-12, "ly"], "pm" => [-12, "m"], "pmb" => [-12, "mb"],
1667
+ "pmercury" => [-12, "mercury"], "pmgal" => [-12, "mgal"],
1668
+ "pmin" => [-12, "min"], "pmol" => [-12, "mol"],
1669
+ "pmon" => [-12, "mon"], "pmph" => [-12, "mph"],
1670
+ "pohm" => [-12, "ohm"], "poises" => [0, "poise"],
1671
+ "pounds" => [0, "pound"], "poz" => [-12, "oz"],
1672
+ "ppc" => [-12, "pc"], "ppsi" => [-12, "psi"],
1673
+ "prad" => [-12, "rad"], "ps" => [-12, "s"], "psr" => [-12, "sr"],
1674
+ "pt" => [-12, "t"], "pyr" => [-12, "yr"],
1673
1675
  "radians" => [0, "radian"], "seconds" => [0, "second"],
1674
1676
  "seconds_angle" => [0, "second_angle"],
1675
1677
  "steradians" => [0, "steradian"], "stokeses" => [0, "stokes"],
@@ -1682,7 +1684,8 @@ UALIASES = {
1682
1684
  "telaangular_minute" => [12, "angular_minute"],
1683
1685
  "telaangular_second" => [12, "angular_second"],
1684
1686
  "telaare" => [12, "are"], "telaatmosphere" => [12, "atmosphere"],
1685
- "telacalorie" => [12, "calorie"], "telacelsius" => [12, "celsius"],
1687
+ "telacalorie" => [12, "calorie"], "telacandela" => [12, "candela"],
1688
+ "telacelsius" => [12, "celsius"],
1686
1689
  "telacentigrade" => [12, "centigrade"],
1687
1690
  "telacentury" => [12, "century"], "telachain" => [12, "chain"],
1688
1691
  "telacommon_year" => [12, "common_year"],
@@ -1705,9 +1708,9 @@ UALIASES = {
1705
1708
  "telamole" => [12, "mole"], "telamonth" => [12, "month"],
1706
1709
  "telanewton" => [12, "newton"], "telaounce" => [12, "ounce"],
1707
1710
  "telaparsec" => [12, "parsec"], "telapascal" => [12, "pascal"],
1708
- "telapentad" => [12, "pentad"], "telapoise" => [12, "poise"],
1709
- "telapound" => [12, "pound"], "telaradian" => [12, "radian"],
1710
- "telasecond" => [12, "second"],
1711
+ "telapentad" => [12, "pentad"], "telapercent" => [12, "percent"],
1712
+ "telapoise" => [12, "poise"], "telapound" => [12, "pound"],
1713
+ "telaradian" => [12, "radian"], "telasecond" => [12, "second"],
1711
1714
  "telasecond_angle" => [12, "second_angle"],
1712
1715
  "telasteradian" => [12, "steradian"], "telastokes" => [12, "stokes"],
1713
1716
  "telatesla" => [12, "tesla"], "telaton" => [12, "ton"],
@@ -1716,19 +1719,19 @@ UALIASES = {
1716
1719
  "telaweber" => [12, "weber"], "telayard" => [12, "yard"],
1717
1720
  "telayd" => [12, "yd"], "telayear" => [12, "year"],
1718
1721
  "teslas" => [0, "tesla"], "tonnes" => [0, "tonne"],
1719
- "tons" => [0, "ton"], "torrs" => [0, "torr"], "u%" => [-6, "%"],
1720
- "uA" => [-6, "A"], "uAu" => [-6, "Au"], "uBq" => [-6, "Bq"],
1721
- "uC" => [-6, "C"], "uF" => [-6, "F"], "uG" => [-6, "G"],
1722
- "uGal" => [-6, "Gal"], "uGy" => [-6, "Gy"], "uH" => [-6, "H"],
1723
- "uHg" => [-6, "Hg"], "uHz" => [-6, "Hz"], "uJ" => [-6, "J"],
1724
- "uK" => [-6, "K"], "uL" => [-6, "L"], "uN" => [-6, "N"],
1725
- "uP" => [-6, "P"], "uPa" => [-6, "Pa"], "uS" => [-6, "S"],
1726
- "uSt" => [-6, "St"], "uSv" => [-6, "Sv"], "uT" => [-6, "T"],
1727
- "uV" => [-6, "V"], "uW" => [-6, "W"], "uWb" => [-6, "Wb"],
1728
- "ua" => [-6, "a"], "uac" => [-6, "ac"], "uatm" => [-6, "atm"],
1729
- "ubar" => [-6, "bar"], "ucal" => [-6, "cal"],
1722
+ "tons" => [0, "ton"], "torrs" => [0, "torr"], "uA" => [-6, "A"],
1723
+ "uAu" => [-6, "Au"], "uBq" => [-6, "Bq"], "uC" => [-6, "C"],
1724
+ "uF" => [-6, "F"], "uG" => [-6, "G"], "uGal" => [-6, "Gal"],
1725
+ "uGy" => [-6, "Gy"], "uH" => [-6, "H"], "uHg" => [-6, "Hg"],
1726
+ "uHz" => [-6, "Hz"], "uJ" => [-6, "J"], "uK" => [-6, "K"],
1727
+ "uL" => [-6, "L"], "uN" => [-6, "N"], "uP" => [-6, "P"],
1728
+ "uPa" => [-6, "Pa"], "uS" => [-6, "S"], "uSt" => [-6, "St"],
1729
+ "uSv" => [-6, "Sv"], "uT" => [-6, "T"], "uV" => [-6, "V"],
1730
+ "uW" => [-6, "W"], "uWb" => [-6, "Wb"], "ua" => [-6, "a"],
1731
+ "uac" => [-6, "ac"], "uatm" => [-6, "atm"], "ubar" => [-6, "bar"],
1732
+ "ucal" => [-6, "cal"], "ucd" => [-6, "cd"],
1730
1733
  "uconventional_mercury" => [-6, "conventional_mercury"],
1731
- "ud" => [-6, "d"], "udegC" => [-6, "degC"], "udegF" => [-6, "degF"],
1734
+ "udegC" => [-6, "degC"], "udegF" => [-6, "degF"],
1732
1735
  "udeg_C" => [-6, "deg_C"], "udeg_F" => [-6, "deg_F"],
1733
1736
  "udegreeC" => [-6, "degreeC"], "udegreeF" => [-6, "degreeF"],
1734
1737
  "udegree_C" => [-6, "degree_C"], "udegree_E" => [-6, "degree_E"],
@@ -1747,18 +1750,17 @@ UALIASES = {
1747
1750
  "uerg" => [-6, "erg"], "uforce" => [-6, "force"], "ug" => [-6, "g"],
1748
1751
  "ugravity" => [-6, "gravity"], "uh" => [-6, "h"],
1749
1752
  "uhg" => [-6, "hg"], "uhr" => [-6, "hr"], "uin" => [-6, "in"],
1750
- "ukg" => [-6, "kg"], "ukgf" => [-6, "kgf"], "ukph" => [-6, "kph"],
1751
- "ulb" => [-6, "lb"], "ulm" => [-6, "lm"], "ulx" => [-6, "lx"],
1752
- "uly" => [-6, "ly"], "um" => [-6, "m"], "umb" => [-6, "mb"],
1753
+ "ukgf" => [-6, "kgf"], "ukph" => [-6, "kph"], "ulb" => [-6, "lb"],
1754
+ "ulm" => [-6, "lm"], "ulx" => [-6, "lx"], "uly" => [-6, "ly"],
1755
+ "um" => [-6, "m"], "umb" => [-6, "mb"],
1753
1756
  "umercury" => [-6, "mercury"], "umgal" => [-6, "mgal"],
1754
1757
  "umin" => [-6, "min"], "umol" => [-6, "mol"], "umon" => [-6, "mon"],
1755
1758
  "umph" => [-6, "mph"], "uohm" => [-6, "ohm"], "uoz" => [-6, "oz"],
1756
- "upc" => [-6, "pc"], "upercent" => [-6, "percent"],
1757
- "upermil" => [-6, "permil"], "upsi" => [-6, "psi"],
1758
- "urad" => [-6, "rad"], "us" => [-6, "s"], "usr" => [-6, "sr"],
1759
- "ut" => [-6, "t"], "uyr" => [-6, "yr"], "volts" => [0, "volt"],
1760
- "watts" => [0, "watt"], "webers" => [0, "weber"],
1761
- "yards" => [0, "yard"], "yds" => [0, "yd"], "years" => [0, "year"],
1759
+ "upc" => [-6, "pc"], "upsi" => [-6, "psi"], "urad" => [-6, "rad"],
1760
+ "us" => [-6, "s"], "usr" => [-6, "sr"], "ut" => [-6, "t"],
1761
+ "uyr" => [-6, "yr"], "volts" => [0, "volt"], "watts" => [0, "watt"],
1762
+ "webers" => [0, "weber"], "yards" => [0, "yard"],
1763
+ "yds" => [0, "yd"], "years" => [0, "year"],
1762
1764
  }
1763
1765
  UPLURALS = {
1764
1766
  "Celsiuses" => "Celsius", "Fahrenheits" => "Fahrenheit",
@@ -1768,22 +1770,23 @@ UPLURALS = {
1768
1770
  "angulars_minute" => "angular_minute",
1769
1771
  "angulars_second" => "angular_second", "ares" => "are",
1770
1772
  "atmospheres" => "atmosphere", "calories" => "calorie",
1771
- "celsiuses" => "celsius", "centigrades" => "centigrade",
1772
- "centuries" => "century", "chains" => "chain",
1773
- "commons_year" => "common_year", "coulombs" => "coulomb",
1774
- "days" => "day", "degKs" => "degK", "degreeKs" => "degreeK",
1775
- "degrees" => "degree", "degs_K" => "deg_K", "dynes" => "dyne",
1776
- "ergs" => "erg", "fahrenheits" => "fahrenheit", "farads" => "farad",
1777
- "fermis" => "fermi", "gals" => "gal", "gausses" => "gauss",
1778
- "grams" => "gram", "hectares" => "hectare", "hertzes" => "hertz",
1779
- "hours" => "hour", "inchs" => "inch", "joules" => "joule",
1780
- "kelvins" => "kelvin", "kilograms" => "kilogram", "knots" => "knot",
1781
- "litres" => "litre", "meters" => "meter", "metres" => "metre",
1782
- "microns" => "micron", "miles" => "mile", "millibars" => "millibar",
1783
- "minutes" => "minute", "minutes_angle" => "minute_angle",
1784
- "moles" => "mole", "months" => "month", "newtons" => "newton",
1785
- "ounces" => "ounce", "parsecs" => "parsec", "pascals" => "pascal",
1786
- "pentads" => "pentad", "poises" => "poise", "pounds" => "pound",
1773
+ "candelas" => "candela", "celsiuses" => "celsius",
1774
+ "centigrades" => "centigrade", "centuries" => "century",
1775
+ "chains" => "chain", "commons_year" => "common_year",
1776
+ "coulombs" => "coulomb", "days" => "day", "degKs" => "degK",
1777
+ "degreeKs" => "degreeK", "degrees" => "degree", "degs_K" => "deg_K",
1778
+ "dynes" => "dyne", "ergs" => "erg", "fahrenheits" => "fahrenheit",
1779
+ "farads" => "farad", "fermis" => "fermi", "gals" => "gal",
1780
+ "gausses" => "gauss", "grams" => "gram", "hectares" => "hectare",
1781
+ "hertzes" => "hertz", "hours" => "hour", "inchs" => "inch",
1782
+ "joules" => "joule", "kelvins" => "kelvin",
1783
+ "kilograms" => "kilogram", "knots" => "knot", "litres" => "litre",
1784
+ "meters" => "meter", "metres" => "metre", "microns" => "micron",
1785
+ "miles" => "mile", "millibars" => "millibar", "minutes" => "minute",
1786
+ "minutes_angle" => "minute_angle", "moles" => "mole",
1787
+ "months" => "month", "newtons" => "newton", "ounces" => "ounce",
1788
+ "parsecs" => "parsec", "pascals" => "pascal", "pentads" => "pentad",
1789
+ "percents" => "percent", "poises" => "poise", "pounds" => "pound",
1787
1790
  "radians" => "radian", "seconds" => "second",
1788
1791
  "seconds_angle" => "second_angle", "steradians" => "steradian",
1789
1792
  "stokeses" => "stokes", "teslas" => "tesla", "tonnes" => "tonne",
@@ -2402,7 +2405,7 @@ def next_token
2402
2405
  end
2403
2406
 
2404
2407
  if :TIME_SEEN === @lexstat \
2405
- and @copy.sub!(%r{^UTC[ \t]*}, '') then
2408
+ and @copy.sub!(%r{^(UTC|Z)[ \t]*}, '') then
2406
2409
  @lexstat = nil
2407
2410
  return [:ZONE, 0]
2408
2411
  end