From 9363aa9241026c470e91550d06f64260d3b01139 Mon Sep 17 00:00:00 2001 From: Eugen Betke Date: Wed, 23 Oct 2024 19:09:48 +0200 Subject: [PATCH 01/23] ECC-1898: Remove alias from cache --- src/action_class_alias.cc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/action_class_alias.cc b/src/action_class_alias.cc index 3ae756cbe..b5bf7f179 100644 --- a/src/action_class_alias.cc +++ b/src/action_class_alias.cc @@ -137,6 +137,8 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) if (x->name_space_ == NULL) x->name_space_ = act->name_space; + // TODO(maee): Make sure that the accessor is added to the trie + grib_context_log(p->h->context, GRIB_LOG_DEBUG, "alias: add only namespace: %s.%s", act->name_space, act->name); i = 0; @@ -178,6 +180,13 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) act->name_space, act->name, y->name_); /* printf("[%s %s]\n",y->all_names_[i], y->all_name_spaces_[i]); */ + // ECC-1898: Remove accessor from cache + grib_handle* hand = grib_handle_of_accessor(y); + if (hand->use_trie && y->all_name_spaces_[i] != NULL && strcmp(y->name_, act->name) != 0) { + int id = grib_hash_keys_get_id(hand->context->keys, act->name); + hand->accessors[id] = NULL; + } + while (i < MAX_ACCESSOR_NAMES - 1) { y->all_names_[i] = y->all_names_[i + 1]; y->all_name_spaces_[i] = y->all_name_spaces_[i + 1]; From 34d49445c7cb0db04d69f4f527d140f8fb2b2258 Mon Sep 17 00:00:00 2001 From: Eugen Betke Date: Thu, 24 Oct 2024 12:22:39 +0200 Subject: [PATCH 02/23] ECC-1898: Add test --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1898.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100755 tests/grib_ecc-1898.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e103b3231..493386a5e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -276,6 +276,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1764 grib_ecc-1792 grib_ecc-1806 + grib_ecc-1898 grib_ecc-1907 grib_ecc-1941 grib_ecc-1942 diff --git a/tests/grib_ecc-1898.sh b/tests/grib_ecc-1898.sh new file mode 100755 index 000000000..0c6aaf44f --- /dev/null +++ b/tests/grib_ecc-1898.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.ctest.sh + +label="grib_ecc-1898_test" + +tempGrib=temp.$label.grib +tempOut=temp.${label}.txt + +$tools_dir/grib_dump -Da $samp_dir/reduced_gg_pl_32_grib2.tmpl > $tempOut +grep -q '288-288 g2level level = 1000 \[vertical.level, mars.levelist\]' $tempOut + +# For given MARS stream/types, we unalias the mars.levelist key +$tools_dir/grib_set -s stream=gfas,type=gsd $samp_dir/reduced_gg_pl_32_grib2.tmpl $tempGrib + +# Check that the key is unaliased +$tools_dir/grib_dump -Da $tempGrib > $tempOut +grep -q '288-288 g2level level = 1000 \[vertical.level\]' $tempOut + +$tools_dir/grib_dump -p levelist -Da $tempGrib 2> $tempOut +grep -q 'levelist: Key/value not found' $tempOut + +set +e +$tools_dir/grib_get -p levelist $tempGrib 2> $tempOut +set -e +grep -q 'levelist (Key/value not found)' $tempOut + +set +e +$tools_dir/grib_get -p mars.levelist $tempGrib 2> $tempOut +set -e +grep -q 'mars.levelist (Key/value not found)' $tempOut + +rm -f $tempGrib $tempOut From 4ae9aec9b869dd2feab54309458bd1c20ccf3b16 Mon Sep 17 00:00:00 2001 From: Robert Osinski Date: Fri, 25 Oct 2024 09:04:55 +0000 Subject: [PATCH 03/23] ECC-1953: leave step in mars namespace for mmsf/an data --- definitions/mars/grib.mmsf.an.def | 3 --- 1 file changed, 3 deletions(-) diff --git a/definitions/mars/grib.mmsf.an.def b/definitions/mars/grib.mmsf.an.def index 20e418ce5..9d337ce4c 100644 --- a/definitions/mars/grib.mmsf.an.def +++ b/definitions/mars/grib.mmsf.an.def @@ -1,6 +1,3 @@ -#no step in type an -unalias mars.step; - if (class is "od" || class is "me" || class is "en" || class is "c3" || class is "ci") { From 7760bb54903621525b7184592d190ad009912749 Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 24 Oct 2024 19:36:25 +0100 Subject: [PATCH 04/23] Deprecation warning --- src/grib_context.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/grib_context.cc b/src/grib_context.cc index 4d5b92242..17adcc312 100644 --- a/src/grib_context.cc +++ b/src/grib_context.cc @@ -1027,7 +1027,7 @@ void* grib_context_buffer_malloc_clear(const grib_context* c, size_t size) void grib_context_set_memory_proc(grib_context* c, grib_malloc_proc m, grib_free_proc f, grib_realloc_proc r) { - fprintf(stderr, "Warning: The %s function is deprecated and will be removed later.\n", __func__); + fprintf(stderr, "ECCODES WARNING : The %s function is deprecated and will be removed in a future release.\n", __func__); c->free_mem = f; c->alloc_mem = m; c->realloc_mem = r; @@ -1035,14 +1035,14 @@ void grib_context_set_memory_proc(grib_context* c, grib_malloc_proc m, grib_free void grib_context_set_persistent_memory_proc(grib_context* c, grib_malloc_proc m, grib_free_proc f) { - fprintf(stderr, "Warning: The %s function is deprecated and will be removed later.\n", __func__); + fprintf(stderr, "ECCODES WARNING : The %s function is deprecated and will be removed in a future release.\n", __func__); c->free_persistent_mem = f; c->alloc_persistent_mem = m; } void grib_context_set_buffer_memory_proc(grib_context* c, grib_malloc_proc m, grib_free_proc f, grib_realloc_proc r) { - fprintf(stderr, "Warning: The %s function is deprecated and will be removed later.\n", __func__); + fprintf(stderr, "ECCODES WARNING : The %s function is deprecated and will be removed in a future release.\n", __func__); c->free_buffer_mem = f; c->alloc_buffer_mem = m; c->realloc_buffer_mem = r; From 57a47b86a9a0e7c35c27006830774e14404bfcf2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 25 Oct 2024 14:10:37 +0000 Subject: [PATCH 05/23] DGOV-507: GRIB2: Add legacy parameters to paramdb --- definitions/create_def.pl | 118 +- .../grib2/localConcepts/ecmf/name.legacy.def | 3489 +++++++++-------- .../localConcepts/ecmf/paramId.legacy.def | 3489 +++++++++-------- .../localConcepts/ecmf/shortName.legacy.def | 3489 +++++++++-------- .../grib2/localConcepts/ecmf/units.legacy.def | 3473 ++++++++-------- definitions/grib2/name.legacy.def | 461 ++- definitions/grib2/paramId.legacy.def | 461 ++- definitions/grib2/shortName.legacy.def | 461 ++- definitions/grib2/units.legacy.def | 459 ++- 9 files changed, 7982 insertions(+), 7918 deletions(-) diff --git a/definitions/create_def.pl b/definitions/create_def.pl index 2a76658be..09f46d475 100755 --- a/definitions/create_def.pl +++ b/definitions/create_def.pl @@ -38,7 +38,8 @@ sub create_cfName { attribute.id=grib.attribute_id and centre.id=grib_encoding.centre_id and units.id=param.units_id and - param.id=cf.grib1_ecmwf order by + param.id=cf.grib1_ecmwf and + grib_encoding.is_legacy=0 order by edition,centre_id,param.o,param.id,grib_encoding.param_version,attribute.o; EOF @@ -98,6 +99,83 @@ EOF close(TAR); } +sub create_cfName_legacy { + my $p; my %seen; + my ($key) = "cfName"; + my $field = "cf.name"; + + my $query= <<"EOF"; + select $field,force128,edition, + centre.abbreviation,param_id,attribute.name,attribute_value,param.name,param.shortName from + param,grib_encoding,grib,attribute,centre,units,cf where + param.hide_def=0 and +# param.retired=0 and + grib_encoding.id=grib.encoding_id and + param.id=grib_encoding.param_id and + attribute.id=grib.attribute_id and + centre.id=grib_encoding.centre_id and + units.id=param.units_id and + param.id=cf.grib1_ecmwf and + grib_encoding.is_legacy=1 order by + edition,centre_id,param.o,param.id,grib_encoding.param_version,attribute.o; +EOF + + my $qh=$dbh->prepare($query); + $qh->execute(); + + # file containing the list of grib api parameters files we want to tar and + # distribute to users for them to download and update their list of parameter + # to the latest + #open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; + #$tarfilesflag=1; + + while (my ($keyval,$force128,$edition,$centre,$paramId,$attribute,$value,$name,$shortName)=$qh->fetchrow_array ) + { + if ($centre eq "wmo" ) { $conceptDir=""; } + else { $conceptDir="/localConcepts/$centre"; } + + if ($filebase ne "$basedir/grib$edition$conceptDir") { + if ($filebase) { + print $out "}\n"; + close $out; + } + $filebase="$basedir/grib$edition$conceptDir"; + mkpath($filebase); + + print TAR "grib$edition$conceptDir/$key.legacy.def\n"; + #system("cp -f $filebase/$key.def $filebase/$key.def.orig"); + open($out,"> $filebase/$key.legacy.def") + or die "unable to open $filebase/$key.legacy.def"; + print $out "# Automatically generated by $0, do not edit\n"; + $p=(); + } + if ($p ne $paramId || exists($seen{$attribute}) ) { + if ($p) { print $out "\t}\n"; } + print $out "#$name\n" ; + print $out "\'".$keyval."\' = {\n" ; + $p=$paramId; + %seen=(); + } + $seen{$attribute}=1; + print "($key=$keyval) $edition,$centre,$shortName,$paramId,$name,$attribute,$value\n"; + # we need to allow strings in the attribute_value field + # for the moment we apply a patch here + if ($attribute =~ /stepType/ ) { + $value="\"accum\""; + } + if ($value eq '') { + $value="missing()"; + } + print $out "\t $attribute = $value ;\n" ; + } + if ($filebase) { + print $out "}\n"; + close $out; + } + + close(TAR); +} + sub create_def { my $p; my %seen; my ($key) =@_; @@ -117,7 +195,8 @@ sub create_def { param.id=grib_encoding.param_id and attribute.id=grib.attribute_id and centre.id=grib_encoding.centre_id and - units.id=param.units_id + units.id=param.units_id and + grib_encoding.is_legacy=0 order by edition,centre_id,param.o,param.id,grib_encoding.param_version,attribute.o; EOF @@ -183,29 +262,27 @@ EOF close(TAR); } -# See ECC-1886 -sub create_cfVarName { +sub create_def_legacy { my $p; my %seen; my ($key) =@_; my $field=$key; - #if ($key =~ /paramId/) { $field="param.id"; } - #if ($key =~ /name/) { $field="param.name"; } - #if ($key =~ /units/) { $field="units.name"; } - if ($key =~ /cfVarName/) { $field="cfVarName"; } + if ($key =~ /paramId/) { $field="param.id"; } + if ($key =~ /name/) { $field="param.name"; } + if ($key =~ /units/) { $field="units.name"; } my $query= <<"EOF"; select $field,force128,edition, centre.abbreviation,param_id,attribute.name,attribute_value,param.name,param.shortName from param,grib_encoding,grib,attribute,centre,units where param.hide_def=0 and - param.retired=0 and +# param.retired=0 and grib_encoding.id=grib.encoding_id and param.id=grib_encoding.param_id and attribute.id=grib.attribute_id and centre.id=grib_encoding.centre_id and - units.id=param.units_id - and cfVarName IS NOT NULL + units.id=param.units_id and + grib_encoding.is_legacy=1 order by edition,centre_id,param.o,param.id,grib_encoding.param_version,attribute.o; EOF @@ -237,10 +314,10 @@ EOF #copy("$filebase/$key.def","$filebase/$key.def.bkp") # or die ("unable to copy $filebase/$key.def"); - print TAR "grib$edition$conceptDir/$key.def\n"; + print TAR "grib$edition$conceptDir/$key.legacy.def\n"; #system("cp -f $filebase/$key.def $filebase/$key.def.orig"); - open($out,"> $filebase/$key.def") - or die "unable to open $filebase/$key.def"; + open($out,"> $filebase/$key.legacy.def") + or die "unable to open $filebase/$key.legacy.def"; print $out "# Automatically generated by $0, do not edit\n"; $p=(); } @@ -270,7 +347,7 @@ EOF close(TAR); } - + sub create_paramId_def { my $p; my %seen; @@ -281,7 +358,8 @@ sub create_paramId_def { grib_encoding.id=grib.encoding_id and param.id=grib_encoding.param_id and attribute.id=grib.attribute_id and - centre.id=grib_encoding.centre_id + centre.id=grib_encoding.centre_id and + grib_encoding.is_legacy=0 order by edition,centre_id,param.o,param.id,attribute.o"; my $qh=$dbh->prepare($query); $qh->execute(); @@ -355,13 +433,15 @@ sub create_def_old { } create_def("paramId"); +create_def_legacy("paramId"); create_def("shortName"); +create_def_legacy("shortName"); create_def("name"); +create_def_legacy("name"); create_def("units"); -# Note: The cfVarName.def files are smaller than the rest. We only store the -# minimum set necessary. See ECC-1886 -create_cfVarName("cfVarName"); +create_def_legacy("units"); create_cfName("cfName"); +create_cfName_legacy("cfName"); # #create_paramId_def(); diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 7a3a81d28..0a7edcf7a 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -1,1779 +1,1780 @@ -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'Eastward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'Northward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'Sea-ice thickness' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'Sea surface height' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'100 metre U wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'100 metre V wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'100 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'0 degrees C isothermal level (atm)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'Depth of 20C isotherm' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'Average salinity in the upper 300m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} +# Automatically generated by ./create_def.pl, do not edit #Total precipitation of at least 1 mm 'Total precipitation of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } #Total precipitation of at least 5 mm 'Total precipitation of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } #Total precipitation of at least 40 mm 'Total precipitation of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } #Total precipitation of at least 60 mm 'Total precipitation of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } #Total precipitation of at least 80 mm 'Total precipitation of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'Total precipitation of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'Total precipitation of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'Total precipitation of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'Total column cloud liquid water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'Total column cloud ice water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'Top net solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'Temperature of snow layer' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} -#Sea-ice cover -'Sea-ice cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 31 ; -} -#Snow density -'Snow density' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 33 ; -} -#Sea surface temperature -'Sea surface temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 34 ; -} -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 169 ; -} -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 175 ; -} -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 180 ; -} -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 181 ; -} -#Surface runoff -'Surface runoff' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 8 ; -} -#Direct solar radiation -'Direct solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; -} -#Lake total layer temperature -'Lake total layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; -} -#Lake mix-layer temperature -'Lake mix-layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; -} -#Lake mix-layer depth -'Lake mix-layer depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; -} -#Lake bottom temperature -'Lake bottom temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; -} -#Lake shape factor -'Lake shape factor' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; -} -#Lake ice surface temperature -'Lake ice surface temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; -} -#Lake ice total depth -'Lake ice total depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; -} -#Lake total depth -'Lake total depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; -} -#GEMS Ozone -'Ozone mass mixing ratio (full chemistry scheme)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; -} -#GEMS Ozone -'Ozone mass mixing ratio difference (full chemistry scheme)' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; -} -#Carbon monoxide -'Carbon monoxide mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; -} -#Carbon monoxide -'Carbon monoxide mass mixing ratio difference' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; -} -#Nitrogen dioxide -'Nitrogen dioxide mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; -} -#Nitrogen dioxide -'Nitrogen dioxide mass mixing ratio difference' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; -} -#Sulphur dioxide -'Sulphur dioxide mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; -} -#Sulphur dioxide -'Sulphur dioxide mass mixing ratio difference' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; -} -#Ammonia -'Ammonia mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; -} -#Nitrogen monoxide -'Nitrogen monoxide mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; -} -#Particulate matter d <= 1 um -'Particulate matter d <= 1 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; -} -#Particulate matter d <= 2.5 um -'Particulate matter d <= 2.5 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; -} -#Particulate matter d <= 10 um -'Particulate matter d <= 10 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; -} -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; -} -#Total column vertically-integrated water vapour -'Total column vertically-integrated water vapour' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } #Total precipitation of at least 100 mm 'Total precipitation of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; -} -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; -} -#Peak wave period -'Peak wave period' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; -} -#Instantaneous total lightning flash density -'Instantaneous total lightning flash density' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; -} -#Averaged total lightning flash density in the last hour -'Averaged total lightning flash density in the last hour' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; -} -#Instantaneous cloud-to-ground lightning flash density -'Instantaneous cloud-to-ground lightning flash density' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; -} -#Averaged cloud-to-ground lightning flash density in the last hour -'Averaged cloud-to-ground lightning flash density in the last hour' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; -} -#Averaged total lightning flash density in the last 3 hours -'Averaged total lightning flash density in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; -} -#Averaged total lightning flash density in the last 6 hours -'Averaged total lightning flash density in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; -} -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; -} -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; -} -#Eastward gravity wave surface stress -'Eastward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; -} -#Friction velocity -'Friction velocity' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; -} -#Instantaneous eastward turbulent surface stress -'Instantaneous eastward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; -} -#Instantaneous northward turbulent surface stress -'Instantaneous northward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; -} -#Instantaneous surface sensible heat flux -'Instantaneous surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; -} -#Instantaneous moisture flux -'Instantaneous moisture flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; -} -#Large-scale precipitation -'Large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; -} -#Large-scale precipitation fraction -'Large-scale precipitation fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; -} -#Northward gravity wave surface stress -'Northward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; -} -#Snow evaporation -'Snow evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; -} -#Snowfall -'Snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } #Surface runoff 'Surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; -} -#TOA incident solar radiation -'TOA incident solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; -} -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; -} -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; -} -#Total cloud cover -'Total cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; -} -#Total column rain water -'Total column rain water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; -} -#Total column snow water -'Total column snow water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; -} -#Vertical integral of eastward water vapour flux -'Vertical integral of eastward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; -} -#Vertical integral of northward water vapour flux -'Vertical integral of northward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; -} -#Snow albedo -'Snow albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; -} -#Ice temperature -'Ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; -} -#Snowmelt -'Snowmelt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; -} -#Downward UV radiation at the surface -'Downward UV radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; -} -#Photosynthetically active radiation at the surface -'Photosynthetically active radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; -} -#Boundary layer height -'Boundary layer height' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; -} -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; -} -#Low cloud cover -'Low cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; -} -#Medium cloud cover -'Medium cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; -} -#High cloud cover -'High cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; -} -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; -} -#Potential evaporation -'Potential evaporation' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; -} -#Unbalanced component of temperature -'Unbalanced component of temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; -} -#Unbalanced component of logarithm of surface pressure -'Unbalanced component of logarithm of surface pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; -} -#Unbalanced component of divergence -'Unbalanced component of divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; -} -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; -} -#Forecast albedo -'Forecast albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; -} -#Forecast surface roughness -'Forecast surface roughness' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; -} -#Flux of Carbon Dioxide Net Ecosystem Exchange -'Flux of Carbon Dioxide Net Ecosystem Exchange' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; -} -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Gross Primary Production -'Flux of Carbon Dioxide Gross Primary Production' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; -} -#Accumulated Carbon Dioxide Gross Primary Production -'Accumulated Carbon Dioxide Gross Primary Production' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Ecosystem Respiration -'Flux of Carbon Dioxide Ecosystem Respiration' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; -} -#Accumulated Carbon Dioxide Ecosystem Respiration -'Accumulated Carbon Dioxide Ecosystem Respiration' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; -} -#Albedo (climatological) -'Albedo (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; -} -#UV visible albedo for direct radiation (climatological) -'UV visible albedo for direct radiation (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; -} -#UV visible albedo for diffuse radiation (climatological) -'UV visible albedo for diffuse radiation (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; -} -#Near IR albedo for direct radiation (climatological) -'Near IR albedo for direct radiation (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; -} -#Near IR albedo for diffuse radiation (climatological) -'Near IR albedo for diffuse radiation (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; -} -#Standard deviation of filtered subgrid orography (climatological) -'Standard deviation of filtered subgrid orography (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; -} -#Logarithm of surface roughness length for heat (climatological) -'Logarithm of surface roughness length for heat (climatological)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; -} -#UV visible albedo for direct radiation, isotropic component (climatological) -'UV visible albedo for direct radiation, isotropic component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; -} -#UV visible albedo for direct radiation, volumetric component (climatological) -'UV visible albedo for direct radiation, volumetric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; -} -#UV visible albedo for direct radiation, geometric component (climatological) -'UV visible albedo for direct radiation, geometric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; -} -#Near IR albedo for direct radiation, isotropic component (climatological) -'Near IR albedo for direct radiation, isotropic component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; -} -#Near IR albedo for direct radiation, volumetric component (climatological) -'Near IR albedo for direct radiation, volumetric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; -} -#Near IR albedo for direct radiation, geometric component (climatological) -'Near IR albedo for direct radiation, geometric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; -} -#Vertically integrated moisture divergence -'Vertically integrated moisture divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; -} -#Vertically integrated moisture divergence flux -'Vertically integrated moisture divergence flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; -} -#Forecast logarithm of surface roughness for heat -'Forecast logarithm of surface roughness for heat' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; -} -#10 metre u-component of neutral wind -'10 metre u-component of neutral wind' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; -} -#V-component of neutral wind -'V-component of neutral wind' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; -} -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; -} -#Vertical integral of mass of atmosphere -'Vertical integral of mass of atmosphere' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; -} -#Height of zero-degree wet-bulb temperature -'Height of zero-degree wet-bulb temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; -} -#Height of one-degree wet-bulb temperature -'Height of one-degree wet-bulb temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; -} -#Surface photosynthetically active radiation, clear sky -'Surface photosynthetically active radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; -} -#Surface direct short-wave radiation, clear sky -'Surface direct short-wave radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; -} -#Duct base height -'Duct base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; -} -#Trapping layer base height -'Trapping layer base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; -} -#Trapping layer top height -'Trapping layer top height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; -} -#Mean vertical gradient of refractivity inside trapping layer -'Mean vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; -} -#Minimum vertical gradient of refractivity inside trapping layer -'Minimum vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; -} -#Vertical integral of eastward heat flux -'Vertical integral of eastward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; -} -#Vertical integral of northward heat flux -'Vertical integral of northward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; -} -#Vertical integral of potential+internal+latent energy -'Vertical integral of potential+internal+latent energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; -} -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; -} -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } #Sub-surface runoff 'Sub-surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; -} -#Low vegetation cover -'Low vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; -} -#High vegetation cover -'High vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; -} -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; -} -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; -} -#Type of low vegetation -'Type of low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; -} -#Type of high vegetation -'Type of high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; -} -#Mean direction of total swell -'Mean direction of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; -} -#Mean direction of wind waves -'Mean direction of wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; -} -#Charnock -'Charnock' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; -} -#2D wave spectra (single) -'2D wave spectra (single)' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; -} -#Vertical integral of thermal energy -'Vertical integral of thermal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; -} -#Vertical integral of potential+internal energy -'Vertical integral of potential+internal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; -} -#Vertical integral of kinetic energy -'Vertical integral of kinetic energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; -} -#Vertical integral of total energy -'Vertical integral of total energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; -} -#UV visible albedo for diffuse radiation, isotropic component (climatological) -'UV visible albedo for diffuse radiation, isotropic component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; -} -#UV visible albedo for diffuse radiation, volumetric component (climatological) -'UV visible albedo for diffuse radiation, volumetric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; -} -#UV visible albedo for diffuse radiation, geometric component (climatological) -'UV visible albedo for diffuse radiation, geometric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; -} -#Near IR albedo for diffuse radiation, isotropic component (climatological) -'Near IR albedo for diffuse radiation, isotropic component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; -} -#Near IR albedo for diffuse radiation, volumetric component (climatological) -'Near IR albedo for diffuse radiation, volumetric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; -} -#Near IR albedo for diffuse radiation, geometric component (climatological) -'Near IR albedo for diffuse radiation, geometric component (climatological)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; -} -#Time-integrated temperature tendency due to short-wave radiation -'Time-integrated temperature tendency due to short-wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; -} -#Time-integrated temperature tendency due to long-wave radiation -'Time-integrated temperature tendency due to long-wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; -} -#Time-integrated temperature tendency due to short wave radiation, clear sky -'Time-integrated temperature tendency due to short wave radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; -} -#Time-integrated temperature tendency due to long-wave radiation, clear sky -'Time-integrated temperature tendency due to long-wave radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; -} -#Time-integrated updraught mass flux -'Time-integrated updraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; -} -#Time-integrated downdraught mass flux -'Time-integrated downdraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; -} -#Time-integrated updraught detrainment rate -'Time-integrated updraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; -} -#Time-integrated downdraught detrainment rate -'Time-integrated downdraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; -} -#Time-integrated total precipitation flux -'Time-integrated total precipitation flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; -} -#Time-integrated turbulent diffusion coefficient for heat -'Time-integrated turbulent diffusion coefficient for heat' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; -} -#Time-integrated temperature tendency due to parametrisations -'Time-integrated temperature tendency due to parametrisations' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; -} -#Time-integrated specific humidity tendency due to parametrisations -'Time-integrated specific humidity tendency due to parametrisations' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; -} -#Time-integrated eastward wind tendency due to parametrisations -'Time-integrated eastward wind tendency due to parametrisations' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; -} -#Time-integrated northward wind tendency due to parametrisations -'Time-integrated northward wind tendency due to parametrisations' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; -} -#Period corresponding to maximum individual wave height -'Period corresponding to maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; -} -#Maximum individual wave height -'Maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; -} -#Model bathymetry -'Model bathymetry' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; -} -#Mean wave period based on first moment -'Mean wave period based on first moment' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; -} -#Wave spectral directional width -'Wave spectral directional width' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; -} -#Mean wave period based on first moment for wind waves -'Mean wave period based on first moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; -} -#Mean wave period based on second moment for wind waves -'Mean wave period based on second moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; -} -#Wave spectral directional width for wind waves -'Wave spectral directional width for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; -} -#Mean wave period based on first moment for swell -'Mean wave period based on first moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; -} -#Mean wave period based on second moment for swell -'Mean wave period based on second moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; -} -#Wave spectral directional width for swell -'Wave spectral directional width for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; -} -#Coefficient of drag with waves -'Coefficient of drag with waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; -} -#Significant height of total swell -'Significant height of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; -} -#Mean period of total swell -'Mean period of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; -} -#Mean square slope of waves -'Mean square slope of waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; -} -#Benjamin-Feir index -'Benjamin-Feir index' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; -} -#Montgomery stream Function -'Montgomery stream Function' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#UV visible albedo for direct radiation (climatological) +'UV visible albedo for direct radiation (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation (climatological) +'UV visible albedo for diffuse radiation (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation (climatological) +'Near IR albedo for direct radiation (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation (climatological) +'Near IR albedo for diffuse radiation (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Surface photosynthetically active radiation, clear sky +'Surface photosynthetically active radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } #Lake cover 'Lake cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; -} -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; -} -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; -} -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; -} -#U-component surface stokes drift -'U-component surface stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; -} -#V-component surface stokes drift -'V-component surface stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; -} -#Total column ozone -'Total column ozone' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; -} -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; -} -#Large-scale snowfall -'Large-scale snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; -} -#Altimeter wave height -'Altimeter wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; -} -#Altimeter corrected wave height -'Altimeter corrected wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; -} -#Altimeter range relative correction -'Altimeter range relative correction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; -} -#Total sky direct solar radiation at surface -'Total sky direct solar radiation at surface' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; -} -#Surface solar radiation downward clear-sky -'Surface solar radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; -} -#Surface thermal radiation downward clear-sky -'Surface thermal radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; -} -#Standard deviation of orography -'Standard deviation of orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; -} -#Cloud base height -'Cloud base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; -} -#Wave spectral kurtosis -'Wave spectral kurtosis' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; -} -#10 metre wind speed -'10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; -} -#10 metre wind direction -'10 metre wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; -} -#Mean temperature at 2 metres -'Mean temperature at 2 metres' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; -} -#Mean surface net radiation flux -'Mean surface net radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; -} -#Surface net radiation -'Surface net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; -} -#Top net radiation -'Top net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; -} -#Surface emissivity -'Surface emissivity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; -} -#Vertical integral of water vapour -'Vertical integral of water vapour' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; -} -#Snow depth -'Snow depth' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; -} -#Mean total snowfall rate -'Mean total snowfall rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; -} -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; -} -#Mean total precipitation rate -'Mean total precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; -} -#Mean large-scale precipitation rate -'Mean large-scale precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; -} -#Mean convective precipitation rate -'Mean convective precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; -} -#Mean runoff rate -'Mean runoff rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; -} -#Mean total cloud cover -'Mean total cloud cover' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; -} -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; -} -#Sea water potential temperature -'Sea water potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; -} -#Sea water practical salinity -'Sea water practical salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; -} -#Upward sea water velocity -'Upward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; -} -#Sea water sigma theta -'Sea water sigma theta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; -} -#Surface downward eastward stress -'Surface downward eastward stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} -#Surface downward northward stress -'Surface downward northward stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface geopotential -'Surface geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; -} -#Vertical integral of temperature -'Vertical integral of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; -} -#Vertical integral of cloud liquid water -'Vertical integral of cloud liquid water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; -} -#Vertical integral of cloud frozen water -'Vertical integral of cloud frozen water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; -} -#Vertical integral of ozone -'Vertical integral of ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; -} -#Vertical integral of energy conversion -'Vertical integral of energy conversion' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; -} -#Vertical integral of eastward mass flux -'Vertical integral of eastward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; -} -#Vertical integral of northward mass flux -'Vertical integral of northward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; -} -#Vertical integral of eastward kinetic energy flux -'Vertical integral of eastward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; -} -#Vertical integral of northward kinetic energy flux -'Vertical integral of northward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; -} -#Vertical integral of eastward geopotential flux -'Vertical integral of eastward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; -} -#Vertical integral of northward geopotential flux -'Vertical integral of northward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; -} -#Vertical integral of eastward total energy flux -'Vertical integral of eastward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; -} -#Vertical integral of northward total energy flux -'Vertical integral of northward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; -} -#Vertical integral of eastward ozone flux -'Vertical integral of eastward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; -} -#Vertical integral of northward ozone flux -'Vertical integral of northward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; -} -#Vertical integral of divergence of mass flux -'Vertical integral of divergence of mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; -} -#Vertical integral of divergence of kinetic energy flux -'Vertical integral of divergence of kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; -} -#Vertical integral of divergence of thermal energy flux -'Vertical integral of divergence of thermal energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; -} -#Vertical integral of divergence of geopotential flux -'Vertical integral of divergence of geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; -} -#Vertical integral of divergence of total energy flux -'Vertical integral of divergence of total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; -} -#Vertical integral of divergence of ozone flux -'Vertical integral of divergence of ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; -} -#Variance of geopotential -'Variance of geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; -} -#Covariance of geopotential/temperature -'Covariance of geopotential/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; -} -#Variance of temperature -'Variance of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; -} -#Covariance of geopotential/specific humidity -'Covariance of geopotential/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; -} -#Covariance of temperature/specific humidity -'Covariance of temperature/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; -} -#Variance of specific humidity -'Variance of specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; -} -#Covariance of u component/geopotential -'Covariance of u component/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; -} -#Covariance of u component/temperature -'Covariance of u component/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; -} -#Covariance of u component/specific humidity -'Covariance of u component/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; -} -#Variance of u component -'Variance of u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; -} -#Mean vertical velocity -'Mean vertical velocity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; -} -#Mean surface sensible heat flux -'Mean surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; -} -#Mean surface latent heat flux -'Mean surface latent heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'Low vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'High vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'Type of low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'Type of high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Snow density +'Snow density' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; + } +#Sea surface temperature +'Sea surface temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'Snowmelt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Surface direct normal short-wave (solar) radiation +'Surface direct normal short-wave (solar) radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Time-integrated magnitude of turbulent surface stress +'Time-integrated magnitude of turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Montgomery potential +'Montgomery potential' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } #Mean temperature at 2 metres in the last 24 hours 'Mean temperature at 2 metres in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; -} -#Mean 2 metre temperature in the last 24 hours gradient -'Mean 2 metre temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours 'Mean 2 metre dewpoint temperature in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Surface downward UV radiation +'Surface downward UV radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'Photosynthetically active radiation at the surface' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Standard deviation of filtered subgrid orography (climatological) +'Standard deviation of filtered subgrid orography (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column cloud liquid water +'Total column cloud liquid water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column cloud ice water +'Total column cloud ice water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Surface emissivity +'Surface emissivity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Total column vertically-integrated water vapour +'Total column vertically-integrated water vapour' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Snowfall +'Snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'Charnock' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation (SW and LW) +'Surface net radiation (SW and LW)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation (SW and LW) +'Top net radiation (SW and LW)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Boundary layer height +'Boundary layer height' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of sub-gridscale orography +'Standard deviation of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Surface short-wave (solar) radiation downwards +'Surface short-wave (solar) radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; + } +#Albedo (climatological) +'Albedo (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Surface long-wave (thermal) radiation downwards +'Surface long-wave (thermal) radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; + } +#Top net short-wave (solar) radiation +'Top net short-wave (solar) radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Time-integrated eastward turbulent surface stress +'Time-integrated eastward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; + } +#Time-integrated northward turbulent surface stress +'Time-integrated northward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'Total column ozone' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net short-wave (solar) radiation, clear sky +'Top net short-wave (solar) radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net long-wave (thermal) radiation, clear sky +'Top net long-wave (thermal) radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net short-wave (solar) radiation, clear sky +'Surface net short-wave (solar) radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net long-wave (thermal) radiation, clear sky +'Surface net long-wave (thermal) radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident short-wave (solar) radiation +'TOA incident short-wave (solar) radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'Vertically integrated moisture divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat net flux +'Instantaneous surface sensible heat net flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Logarithm of surface roughness length for heat (climatological) +'Logarithm of surface roughness length for heat (climatological)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Forecast albedo +'Forecast albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Mean surface net radiation flux +'Mean surface net radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Particulate matter d <= 1 um +'Particulate matter d <= 1 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d <= 2.5 um +'Particulate matter d <= 2.5 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d <= 10 um +'Particulate matter d <= 10 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#UV visible albedo for direct radiation, isotropic component (climatological) +'UV visible albedo for direct radiation, isotropic component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component (climatological) +'UV visible albedo for direct radiation, volumetric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component (climatological) +'UV visible albedo for direct radiation, geometric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component (climatological) +'Near IR albedo for direct radiation, isotropic component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component (climatological) +'Near IR albedo for direct radiation, volumetric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component (climatological) +'Near IR albedo for direct radiation, geometric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component (climatological) +'UV visible albedo for diffuse radiation, isotropic component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component (climatological) +'UV visible albedo for diffuse radiation, volumetric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component (climatological) +'UV visible albedo for diffuse radiation, geometric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component (climatological) +'Near IR albedo for diffuse radiation, isotropic component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component (climatological) +'Near IR albedo for diffuse radiation, volumetric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component (climatological) +'Near IR albedo for diffuse radiation, geometric component (climatological)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Ammonia mass mixing ratio +'Ammonia mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide mass mixing ratio +'Nitrogen monoxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Surface direct short-wave (solar) radiation +'Surface direct short-wave (solar) radiation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Surface direct short-wave radiation, clear sky +'Surface direct short-wave radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'Cloud base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#0 degrees C isothermal level (atm) +'0 degrees C isothermal level (atm)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Maximum 10 metre wind gust in the last 3 hours +'Maximum 10 metre wind gust in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Height of zero-degree wet-bulb temperature +'Height of zero-degree wet-bulb temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'Height of one-degree wet-bulb temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'Instantaneous total lightning flash density' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'Averaged total lightning flash density in the last hour' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'Instantaneous cloud-to-ground lightning flash density' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'Averaged cloud-to-ground lightning flash density in the last hour' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'Averaged total lightning flash density in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'Averaged total lightning flash density in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'Accumulated Carbon Dioxide Gross Primary Production' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'Accumulated Carbon Dioxide Ecosystem Respiration' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Carbon dioxide net ecosystem exchange flux +'Carbon dioxide net ecosystem exchange flux' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Carbon dioxide gross primary production flux +'Carbon dioxide gross primary production flux' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Carbon dioxide ecosystem respiration flux +'Carbon dioxide ecosystem respiration flux' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'Total column rain water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'Total column snow water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Ice temperature +'Ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface short-wave (solar) radiation downward clear-sky +'Surface short-wave (solar) radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface long-wave (thermal) radiation downward clear-sky +'Surface long-wave (thermal) radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#100 metre wind speed +'100 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'Mean 2 metre temperature in the last 24 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours gradient 'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; -} -#Mean surface downward solar radiation flux -'Mean surface downward solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; -} -#Mean surface downward thermal radiation flux -'Mean surface downward thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; -} -#Mean surface net solar radiation flux -'Mean surface net solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; -} -#Mean surface net thermal radiation flux -'Mean surface net thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; -} -#Mean top net solar radiation flux -'Mean top net solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; -} -#Mean top net thermal radiation flux -'Mean top net thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; -} -#East-West surface stress rate of accumulation -'East-West surface stress rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; -} -#North-South surface stress rate of accumulation -'North-South surface stress rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; -} + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Mean vertical velocity +'Mean vertical velocity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#Period corresponding to maximum individual wave height +'Period corresponding to maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Envelop-maximum individual wave height +'Envelop-maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'Model bathymetry' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'Mean wave period based on first moment' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'Wave spectral directional width' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'Mean wave period based on first moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'Mean wave period based on second moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'Wave spectral directional width for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'Mean wave period based on first moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'Mean wave period based on second moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'Wave spectral directional width for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'Peak wave period' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Significant height of total swell +'Significant height of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'Mean direction of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'Mean period of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } #Standard deviation wave height 'Standard deviation wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } #Mean of 10 metre wind speed 'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } #Mean wind direction 'Mean wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } #Standard deviation of 10 metre wind speed 'Standard deviation of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; -} -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; -} -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; -} -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; -} -#Solar insolation rate of accumulation -'Solar insolation rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'Mean square slope of waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'Altimeter wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'Altimeter corrected wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'Altimeter range relative correction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'10 metre wind direction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (single) +'2D wave spectra (single)' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'Wave spectral kurtosis' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'Benjamin-Feir index' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } #Wave spectral peakedness 'Wave spectral peakedness' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Sea water potential temperature +'Sea water potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'Sea water practical salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Eastward surface sea water velocity +'Eastward surface sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Northward surface sea water velocity +'Northward surface sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Upward sea water velocity +'Upward sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'Sea water sigma theta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Sea surface height +'Sea surface height' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Surface downward eastward stress +'Surface downward eastward stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'Surface downward northward stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Depth of 20C isotherm +'Depth of 20C isotherm' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average sea water practical salinity in the upper 300m +'Average sea water practical salinity in the upper 300m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Surface geopotential +'Surface geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Total column vertically-integrated mass of atmosphere +'Total column vertically-integrated mass of atmosphere' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Total column vertically-integrated temperature +'Total column vertically-integrated temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Total column vertically-integrated water vapour +'Total column vertically-integrated water vapour' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Total column vertically-integrated cloud liquid water +'Total column vertically-integrated cloud liquid water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Total column vertically-integrated cloud frozen water +'Total column vertically-integrated cloud frozen water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Total column vertically-integrated ozone +'Total column vertically-integrated ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Total column vertically-integrated kinetic energy +'Total column vertically-integrated kinetic energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Total column vertically-integrated enthalpy +'Total column vertically-integrated enthalpy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Total column vertically-integrated potential + internal energy +'Total column vertically-integrated potential + internal energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Total column vertically-integrated potential+internal+latent energy +'Total column vertically-integrated potential+internal+latent energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Total column vertically-integrated total energy +'Total column vertically-integrated total energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Total column vertically-integrated energy conversion +'Total column vertically-integrated energy conversion' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Total column vertically-integrated eastward mass flux +'Total column vertically-integrated eastward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Total column vertically-integrated northward mass flux +'Total column vertically-integrated northward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Total column vertically-integrated eastward kinetic energy flux +'Total column vertically-integrated eastward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Total column vertically-integrated northward kinetic energy flux +'Total column vertically-integrated northward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Total column vertically-integrated eastward heat flux +'Total column vertically-integrated eastward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Total column vertically-integrated northward heat flux +'Total column vertically-integrated northward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Total column vertically-integrated eastward water vapour flux +'Total column vertically-integrated eastward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Total column vertically-integrated northward water vapour flux +'Total column vertically-integrated northward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Total column vertically-integrated eastward geopotential flux +'Total column vertically-integrated eastward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Total column vertically-integrated northward geopotential flux +'Total column vertically-integrated northward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Total column vertically-integrated eastward total energy flux +'Total column vertically-integrated eastward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Total column vertically-integrated northward total energy flux +'Total column vertically-integrated northward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Total column vertically-integrated eastward ozone flux +'Total column vertically-integrated eastward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Total column vertically-integrated northward ozone flux +'Total column vertically-integrated northward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Total column vertically-integrated divergence of mass flux +'Total column vertically-integrated divergence of mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Total column vertically-integrated divergence of kinetic energy flux +'Total column vertically-integrated divergence of kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Total column vertically-integrated divergence of thermal energy flux +'Total column vertically-integrated divergence of thermal energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Total column vertically-integrated moisture divergence flux +'Total column vertically-integrated moisture divergence flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Total column vertically-integrated divergence of geopotential flux +'Total column vertically-integrated divergence of geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Total column vertically-integrated divergence of total energy flux +'Total column vertically-integrated divergence of total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Total column vertically-integrated divergence of ozone flux +'Total column vertically-integrated divergence of ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Time-integrated temperature tendency due to short-wave radiation +'Time-integrated temperature tendency due to short-wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Time-integrated temperature tendency due to long-wave radiation +'Time-integrated temperature tendency due to long-wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Time-integrated temperature tendency due to short wave radiation, clear sky +'Time-integrated temperature tendency due to short wave radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Time-integrated temperature tendency due to long-wave radiation, clear sky +'Time-integrated temperature tendency due to long-wave radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Time-integrated updraught mass flux +'Time-integrated updraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Time-integrated downdraught mass flux +'Time-integrated downdraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Time-integrated updraught detrainment rate +'Time-integrated updraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Time-integrated downdraught detrainment rate +'Time-integrated downdraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Time-integrated total precipitation flux +'Time-integrated total precipitation flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Time-integrated turbulent diffusion coefficient for heat +'Time-integrated turbulent diffusion coefficient for heat' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Time-integrated temperature tendency due to parametrisations +'Time-integrated temperature tendency due to parametrisations' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Time-integrated specific humidity tendency due to parametrisations +'Time-integrated specific humidity tendency due to parametrisations' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Time-integrated eastward wind tendency due to parametrisations +'Time-integrated eastward wind tendency due to parametrisations' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Time-integrated northward wind tendency due to parametrisations +'Time-integrated northward wind tendency due to parametrisations' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'Variance of geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'Covariance of geopotential/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'Variance of temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'Covariance of geopotential/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'Covariance of temperature/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'Variance of specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'Covariance of u component/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'Covariance of u component/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'Covariance of u component/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'Variance of u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Mean large-scale precipitation rate +'Mean large-scale precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'Mean convective precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'Mean total snowfall rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Mean surface sensible heat flux +'Mean surface sensible heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'Mean surface latent heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface downward solar radiation flux +'Mean surface downward solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'Mean surface downward thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'Mean surface net solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'Mean surface net thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'Mean top net solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'Mean top net thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'East-West surface stress rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'North-South surface stress rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean runoff rate +'Mean runoff rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'Solar insolation rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'Mean total precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Surface runoff +'Surface runoff' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; + } +#Sea-ice thickness +'Sea-ice thickness' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Snow depth +'Snow depth' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Nitrogen dioxide mass mixing ratio +'Nitrogen dioxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio +'Sulphur dioxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio +'Carbon monoxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'Ozone mass mixing ratio (full chemistry scheme)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#Nitrogen dioxide mass mixing ratio difference +'Nitrogen dioxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio difference +'Sulphur dioxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio difference +'Carbon monoxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'Ozone mass mixing ratio difference (full chemistry scheme)' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#Friction velocity +'Friction velocity' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Time-mean 2 metre temperature +'Time-mean 2 metre temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Time-mean 10 metre wind speed +'Time-mean 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'Mean total cloud cover' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake total depth +'Lake total depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'Lake shape factor' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice surface temperature +'Lake ice surface temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice total depth +'Lake ice total depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'Minimum vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'Mean vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'Duct base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'Trapping layer base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'Trapping layer top height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#10 metre u-component of neutral wind +'10 metre u-component of neutral wind' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#10 metre v-component of neutral wind +'10 metre v-component of neutral wind' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#U-component surface stokes drift +'U-component surface stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component surface stokes drift +'V-component surface stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#100 metre U wind component +'100 metre U wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'100 metre V wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; } diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 0a81530b9..4206da68d 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -1,1779 +1,1780 @@ -#Surface net solar radiation, clear sky -'210' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'211' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'151131' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'151132' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'174098' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'151145' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'228246' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'228247' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'228249' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'228024' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'151163' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'151175' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} +# Automatically generated by ./create_def.pl, do not edit #Total precipitation of at least 1 mm '131060' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } #Total precipitation of at least 5 mm '131061' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } #Total precipitation of at least 40 mm '131082' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } #Total precipitation of at least 60 mm '131083' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } #Total precipitation of at least 80 mm '131084' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'131086' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'131087' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'131088' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'78' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'79' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'178' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'238' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} -#Sea-ice cover -'31' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 31 ; -} -#Snow density -'33' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 33 ; -} -#Sea surface temperature -'34' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 34 ; -} -#Surface solar radiation downwards -'169' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 169 ; -} -#Surface thermal radiation downwards -'175' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 175 ; -} -#Eastward turbulent surface stress -'180' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 180 ; -} -#Northward turbulent surface stress -'181' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 181 ; -} -#Surface runoff -'174008' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 8 ; -} -#Direct solar radiation -'47' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; -} -#Lake total layer temperature -'228011' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; -} -#Lake mix-layer temperature -'228008' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; -} -#Lake mix-layer depth -'228009' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; -} -#Lake bottom temperature -'228010' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; -} -#Lake shape factor -'228012' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; -} -#Lake ice surface temperature -'228013' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; -} -#Lake ice total depth -'228014' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; -} -#Lake total depth -'228007' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; -} -#GEMS Ozone -'210203' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; -} -#GEMS Ozone -'211203' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; -} -#Carbon monoxide -'210123' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; -} -#Carbon monoxide -'211123' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; -} -#Nitrogen dioxide -'210121' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; -} -#Nitrogen dioxide -'211121' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; -} -#Sulphur dioxide -'210122' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; -} -#Sulphur dioxide -'211122' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; -} -#Ammonia -'217019' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; -} -#Nitrogen monoxide -'217027' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; -} -#Particulate matter d <= 1 um -'210072' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; -} -#Particulate matter d <= 2.5 um -'210073' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; -} -#Particulate matter d <= 10 um -'210074' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; -} -#Runoff -'205' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; -} -#Total column vertically-integrated water vapour -'137' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } #Total precipitation of at least 100 mm '131085' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; -} -#Mean zero-crossing wave period -'140221' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; -} -#Peak wave period -'140231' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; -} -#Instantaneous total lightning flash density -'228050' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; -} -#Averaged total lightning flash density in the last hour -'228051' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; -} -#Instantaneous cloud-to-ground lightning flash density -'228052' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; -} -#Averaged cloud-to-ground lightning flash density in the last hour -'228053' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; -} -#Averaged total lightning flash density in the last 3 hours -'228057' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; -} -#Averaged total lightning flash density in the last 6 hours -'228058' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; -} -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'228059' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; -} -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'228060' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; -} -#Eastward gravity wave surface stress -'195' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; -} -#Friction velocity -'228003' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; -} -#Instantaneous eastward turbulent surface stress -'229' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; -} -#Instantaneous northward turbulent surface stress -'230' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; -} -#Instantaneous surface sensible heat flux -'231' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; -} -#Instantaneous moisture flux -'232' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; -} -#Large-scale precipitation -'142' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; -} -#Large-scale precipitation fraction -'50' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; -} -#Northward gravity wave surface stress -'196' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; -} -#Snow evaporation -'44' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; -} -#Snowfall -'144' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'131086' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'131087' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'131088' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } #Surface runoff '8' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; -} -#TOA incident solar radiation -'212' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; -} -#Top net thermal radiation, clear sky -'209' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; -} -#Top net solar radiation, clear sky -'208' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; -} -#Total cloud cover -'164' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; -} -#Total column rain water -'228089' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; -} -#Total column snow water -'228090' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; -} -#Vertical integral of eastward water vapour flux -'162071' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; -} -#Vertical integral of northward water vapour flux -'162072' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; -} -#Snow albedo -'32' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; -} -#Ice temperature -'228094' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; -} -#Snowmelt -'45' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; -} -#Downward UV radiation at the surface -'57' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; -} -#Photosynthetically active radiation at the surface -'58' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; -} -#Boundary layer height -'159' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; -} -#Evaporation -'182' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; -} -#Low cloud cover -'186' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; -} -#Medium cloud cover -'187' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; -} -#High cloud cover -'188' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; -} -#Gravity wave dissipation -'197' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; -} -#Potential evaporation -'228251' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; -} -#Unbalanced component of temperature -'21' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; -} -#Unbalanced component of logarithm of surface pressure -'22' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; -} -#Unbalanced component of divergence -'23' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; -} -#10 metre wind gust in the last 3 hours -'228028' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; -} -#Forecast albedo -'243' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; -} -#Forecast surface roughness -'244' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; -} -#Flux of Carbon Dioxide Net Ecosystem Exchange -'228083' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; -} -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'228080' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Gross Primary Production -'228084' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; -} -#Accumulated Carbon Dioxide Gross Primary Production -'228081' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Ecosystem Respiration -'228085' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; -} -#Accumulated Carbon Dioxide Ecosystem Respiration -'228082' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; -} -#Albedo (climatological) -'174' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; -} -#UV visible albedo for direct radiation (climatological) -'15' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; -} -#UV visible albedo for diffuse radiation (climatological) -'16' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; -} -#Near IR albedo for direct radiation (climatological) -'17' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; -} -#Near IR albedo for diffuse radiation (climatological) -'18' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; -} -#Standard deviation of filtered subgrid orography (climatological) -'74' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; -} -#Logarithm of surface roughness length for heat (climatological) -'234' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; -} -#UV visible albedo for direct radiation, isotropic component (climatological) -'210186' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; -} -#UV visible albedo for direct radiation, volumetric component (climatological) -'210187' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; -} -#UV visible albedo for direct radiation, geometric component (climatological) -'210188' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; -} -#Near IR albedo for direct radiation, isotropic component (climatological) -'210189' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; -} -#Near IR albedo for direct radiation, volumetric component (climatological) -'210190' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; -} -#Near IR albedo for direct radiation, geometric component (climatological) -'210191' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; -} -#Vertically integrated moisture divergence -'213' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; -} -#Vertically integrated moisture divergence flux -'162084' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; -} -#Forecast logarithm of surface roughness for heat -'245' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; -} -#10 metre u-component of neutral wind -'228131' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; -} -#V-component of neutral wind -'228132' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; -} -#Magnitude of turbulent surface stress -'48' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; -} -#Vertical integral of mass of atmosphere -'162053' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; -} -#Height of zero-degree wet-bulb temperature -'228047' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; -} -#Height of one-degree wet-bulb temperature -'228048' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; -} -#Surface photosynthetically active radiation, clear sky -'20' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; -} -#Surface direct short-wave radiation, clear sky -'228022' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; -} -#Duct base height -'228017' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; -} -#Trapping layer base height -'228018' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; -} -#Trapping layer top height -'228019' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; -} -#Mean vertical gradient of refractivity inside trapping layer -'228016' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; -} -#Minimum vertical gradient of refractivity inside trapping layer -'228015' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; -} -#Vertical integral of eastward heat flux -'162069' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; -} -#Vertical integral of northward heat flux -'162070' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; -} -#Vertical integral of potential+internal+latent energy -'162062' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; -} -#Skin reservoir content -'198' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; -} -#Skin reservoir content -'160198' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } #Sub-surface runoff '9' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; -} -#Low vegetation cover -'27' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; -} -#High vegetation cover -'28' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; -} -#Leaf area index, low vegetation -'66' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; -} -#Leaf area index, high vegetation -'67' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; -} -#Type of low vegetation -'29' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; -} -#Type of high vegetation -'30' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; -} -#Mean direction of total swell -'140238' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; -} -#Mean direction of wind waves -'140235' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; -} -#Charnock -'148' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; -} -#2D wave spectra (single) -'140251' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; -} -#Vertical integral of thermal energy -'162060' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; -} -#Vertical integral of potential+internal energy -'162061' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; -} -#Vertical integral of kinetic energy -'162059' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; -} -#Vertical integral of total energy -'162063' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; -} -#UV visible albedo for diffuse radiation, isotropic component (climatological) -'210192' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; -} -#UV visible albedo for diffuse radiation, volumetric component (climatological) -'210193' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; -} -#UV visible albedo for diffuse radiation, geometric component (climatological) -'210194' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; -} -#Near IR albedo for diffuse radiation, isotropic component (climatological) -'210195' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; -} -#Near IR albedo for diffuse radiation, volumetric component (climatological) -'210196' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; -} -#Near IR albedo for diffuse radiation, geometric component (climatological) -'210197' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; -} -#Time-integrated temperature tendency due to short-wave radiation -'162100' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; -} -#Time-integrated temperature tendency due to long-wave radiation -'162101' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; -} -#Time-integrated temperature tendency due to short wave radiation, clear sky -'162102' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; -} -#Time-integrated temperature tendency due to long-wave radiation, clear sky -'162103' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; -} -#Time-integrated updraught mass flux -'162104' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; -} -#Time-integrated downdraught mass flux -'162105' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; -} -#Time-integrated updraught detrainment rate -'162106' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; -} -#Time-integrated downdraught detrainment rate -'162107' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; -} -#Time-integrated total precipitation flux -'162108' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; -} -#Time-integrated turbulent diffusion coefficient for heat -'162109' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; -} -#Time-integrated temperature tendency due to parametrisations -'162110' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; -} -#Time-integrated specific humidity tendency due to parametrisations -'162111' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; -} -#Time-integrated eastward wind tendency due to parametrisations -'162112' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; -} -#Time-integrated northward wind tendency due to parametrisations -'162113' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; -} -#Period corresponding to maximum individual wave height -'140217' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; -} -#Maximum individual wave height -'140218' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; -} -#Model bathymetry -'140219' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; -} -#Mean wave period based on first moment -'140220' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; -} -#Wave spectral directional width -'140222' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; -} -#Mean wave period based on first moment for wind waves -'140223' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; -} -#Mean wave period based on second moment for wind waves -'140224' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; -} -#Wave spectral directional width for wind waves -'140225' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; -} -#Mean wave period based on first moment for swell -'140226' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; -} -#Mean wave period based on second moment for swell -'140227' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; -} -#Wave spectral directional width for swell -'140228' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; -} -#Coefficient of drag with waves -'140233' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; -} -#Significant height of total swell -'140237' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; -} -#Mean period of total swell -'140239' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; -} -#Mean square slope of waves -'140244' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; -} -#Benjamin-Feir index -'140253' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; -} -#Montgomery stream Function -'53' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#UV visible albedo for direct radiation (climatological) +'15' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation (climatological) +'16' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation (climatological) +'17' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation (climatological) +'18' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Surface photosynthetically active radiation, clear sky +'20' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'21' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'23' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } #Lake cover '26' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; -} -#Anisotropy of sub-gridscale orography -'161' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; -} -#Angle of sub-gridscale orography -'162' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; -} -#Slope of sub-gridscale orography -'163' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; -} -#U-component surface stokes drift -'140215' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; -} -#V-component surface stokes drift -'140216' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; -} -#Total column ozone -'206' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; -} -#Convective snowfall -'239' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; -} -#Large-scale snowfall -'240' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; -} -#Altimeter wave height -'140246' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; -} -#Altimeter corrected wave height -'140247' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; -} -#Altimeter range relative correction -'140248' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; -} -#Total sky direct solar radiation at surface -'228021' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; -} -#Surface solar radiation downward clear-sky -'228129' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; -} -#Surface thermal radiation downward clear-sky -'228130' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; -} -#Standard deviation of orography -'160' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; -} -#Cloud base height -'228023' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; -} -#Wave spectral kurtosis -'140252' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; -} -#10 metre wind speed -'140245' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; -} -#10 metre wind direction -'140249' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; -} -#Mean temperature at 2 metres -'228004' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; -} -#Mean surface net radiation flux -'172149' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; -} -#Surface net radiation -'149' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; -} -#Top net radiation -'150' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; -} -#Surface emissivity -'124' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; -} -#Vertical integral of water vapour -'162055' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; -} -#Snow depth -'190141' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; -} -#Mean total snowfall rate -'172144' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; -} -#Evaporation -'172182' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; -} -#Mean total precipitation rate -'172228' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; -} -#Mean large-scale precipitation rate -'172142' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; -} -#Mean convective precipitation rate -'172143' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; -} -#Mean runoff rate -'172205' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; -} -#Mean total cloud cover -'228006' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; -} -#Mean of 10 metre wind speed -'228005' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; -} -#Sea water potential temperature -'151129' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; -} -#Sea water practical salinity -'151130' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; -} -#Upward sea water velocity -'151133' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; -} -#Sea water sigma theta -'151138' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; -} -#Surface downward eastward stress -'151153' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} -#Surface downward northward stress -'151154' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface geopotential -'162051' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; -} -#Vertical integral of temperature -'162054' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; -} -#Vertical integral of cloud liquid water -'162056' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; -} -#Vertical integral of cloud frozen water -'162057' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; -} -#Vertical integral of ozone -'162058' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; -} -#Vertical integral of energy conversion -'162064' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; -} -#Vertical integral of eastward mass flux -'162065' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; -} -#Vertical integral of northward mass flux -'162066' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; -} -#Vertical integral of eastward kinetic energy flux -'162067' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; -} -#Vertical integral of northward kinetic energy flux -'162068' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; -} -#Vertical integral of eastward geopotential flux -'162073' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; -} -#Vertical integral of northward geopotential flux -'162074' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; -} -#Vertical integral of eastward total energy flux -'162075' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; -} -#Vertical integral of northward total energy flux -'162076' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; -} -#Vertical integral of eastward ozone flux -'162077' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; -} -#Vertical integral of northward ozone flux -'162078' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; -} -#Vertical integral of divergence of mass flux -'162081' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; -} -#Vertical integral of divergence of kinetic energy flux -'162082' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; -} -#Vertical integral of divergence of thermal energy flux -'162083' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; -} -#Vertical integral of divergence of geopotential flux -'162085' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; -} -#Vertical integral of divergence of total energy flux -'162086' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; -} -#Vertical integral of divergence of ozone flux -'162087' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; -} -#Variance of geopotential -'162206' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; -} -#Covariance of geopotential/temperature -'162207' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; -} -#Variance of temperature -'162208' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; -} -#Covariance of geopotential/specific humidity -'162209' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; -} -#Covariance of temperature/specific humidity -'162210' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; -} -#Variance of specific humidity -'162211' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; -} -#Covariance of u component/geopotential -'162212' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; -} -#Covariance of u component/temperature -'162213' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; -} -#Covariance of u component/specific humidity -'162214' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; -} -#Variance of u component -'162215' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; -} -#Mean vertical velocity -'130232' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; -} -#Mean surface sensible heat flux -'172146' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; -} -#Mean surface latent heat flux -'172147' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'27' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'28' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'29' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'30' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Sea ice area fraction +'31' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; + } +#Snow albedo +'32' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Snow density +'33' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; + } +#Sea surface temperature +'34' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; + } +#Snow evaporation +'44' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'45' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Surface direct normal short-wave (solar) radiation +'47' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Time-integrated magnitude of turbulent surface stress +'48' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'50' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Montgomery potential +'53' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } #Mean temperature at 2 metres in the last 24 hours '55' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; -} -#Mean 2 metre temperature in the last 24 hours gradient -'129055' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours '56' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Surface downward UV radiation +'57' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'58' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Leaf area index, low vegetation +'66' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'67' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Standard deviation of filtered subgrid orography (climatological) +'74' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column cloud liquid water +'78' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column cloud ice water +'79' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Surface emissivity +'124' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Total column vertically-integrated water vapour +'137' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Large-scale precipitation +'142' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Snowfall +'144' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'148' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation (SW and LW) +'149' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation (SW and LW) +'150' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Boundary layer height +'159' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of sub-gridscale orography +'160' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'161' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'162' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'163' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'164' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Surface short-wave (solar) radiation downwards +'169' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; + } +#Albedo (climatological) +'174' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Surface long-wave (thermal) radiation downwards +'175' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; + } +#Top net short-wave (solar) radiation +'178' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Time-integrated eastward turbulent surface stress +'180' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; + } +#Time-integrated northward turbulent surface stress +'181' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; + } +#Evaporation +'182' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Low cloud cover +'186' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'187' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'188' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#Eastward gravity wave surface stress +'195' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'196' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'197' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'198' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Runoff +'205' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'206' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net short-wave (solar) radiation, clear sky +'208' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net long-wave (thermal) radiation, clear sky +'209' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net short-wave (solar) radiation, clear sky +'210' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net long-wave (thermal) radiation, clear sky +'211' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident short-wave (solar) radiation +'212' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'213' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat net flux +'231' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'232' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Logarithm of surface roughness length for heat (climatological) +'234' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Temperature of snow layer +'238' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'239' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'240' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Forecast albedo +'243' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'244' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Mean surface net radiation flux +'172149' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Particulate matter d <= 1 um +'210072' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d <= 2.5 um +'210073' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d <= 10 um +'210074' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#UV visible albedo for direct radiation, isotropic component (climatological) +'210186' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component (climatological) +'210187' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component (climatological) +'210188' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component (climatological) +'210189' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component (climatological) +'210190' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component (climatological) +'210191' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component (climatological) +'210192' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component (climatological) +'210193' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component (climatological) +'210194' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component (climatological) +'210195' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component (climatological) +'210196' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component (climatological) +'210197' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Ammonia mass mixing ratio +'217019' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide mass mixing ratio +'217027' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Surface direct short-wave (solar) radiation +'228021' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Surface direct short-wave radiation, clear sky +'228022' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'228023' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#0 degrees C isothermal level (atm) +'228024' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Maximum 10 metre wind gust in the last 3 hours +'228028' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Height of zero-degree wet-bulb temperature +'228047' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'228048' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'228050' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'228051' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'228052' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'228053' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'228057' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'228058' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'228059' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'228060' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'228080' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'228081' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'228082' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Carbon dioxide net ecosystem exchange flux +'228083' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Carbon dioxide gross primary production flux +'228084' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Carbon dioxide ecosystem respiration flux +'228085' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'228089' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'228090' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Ice temperature +'228094' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface short-wave (solar) radiation downward clear-sky +'228129' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface long-wave (thermal) radiation downward clear-sky +'228130' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#100 metre wind speed +'228249' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Potential evaporation +'228251' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'129055' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours gradient '129056' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; -} -#Mean surface downward solar radiation flux -'172169' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; -} -#Mean surface downward thermal radiation flux -'172175' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; -} -#Mean surface net solar radiation flux -'172176' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; -} -#Mean surface net thermal radiation flux -'172177' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; -} -#Mean top net solar radiation flux -'172178' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; -} -#Mean top net thermal radiation flux -'172179' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; -} -#East-West surface stress rate of accumulation -'172180' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; -} -#North-South surface stress rate of accumulation -'172181' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; -} + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Mean vertical velocity +'130232' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#Period corresponding to maximum individual wave height +'140217' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Envelop-maximum individual wave height +'140218' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'140219' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'140220' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'140221' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'140222' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'140223' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'140224' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'140225' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'140226' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'140227' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'140228' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'140231' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'140233' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Mean direction of wind waves +'140235' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Significant height of total swell +'140237' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'140238' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'140239' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } #Standard deviation wave height '140240' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } #Mean of 10 metre wind speed '140241' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } #Mean wind direction '140242' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } #Standard deviation of 10 metre wind speed '140243' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; -} -#Top net solar radiation, clear sky -'172208' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; -} -#Top net thermal radiation, clear sky -'172209' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; -} -#Surface net solar radiation, clear sky -'172210' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'172211' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; -} -#Solar insolation rate of accumulation -'172212' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'140244' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'140245' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'140246' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'140247' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'140248' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'140249' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (single) +'140251' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'140252' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'140253' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } #Wave spectral peakedness '140254' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Sea water potential temperature +'151129' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'151130' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Eastward surface sea water velocity +'151131' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Northward surface sea water velocity +'151132' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Upward sea water velocity +'151133' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'151138' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Sea surface height +'151145' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Surface downward eastward stress +'151153' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'151154' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Depth of 20C isotherm +'151163' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average sea water practical salinity in the upper 300m +'151175' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Skin reservoir content +'160198' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Surface geopotential +'162051' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Total column vertically-integrated mass of atmosphere +'162053' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Total column vertically-integrated temperature +'162054' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Total column vertically-integrated water vapour +'162055' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Total column vertically-integrated cloud liquid water +'162056' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Total column vertically-integrated cloud frozen water +'162057' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Total column vertically-integrated ozone +'162058' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Total column vertically-integrated kinetic energy +'162059' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Total column vertically-integrated enthalpy +'162060' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Total column vertically-integrated potential + internal energy +'162061' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Total column vertically-integrated potential+internal+latent energy +'162062' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Total column vertically-integrated total energy +'162063' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Total column vertically-integrated energy conversion +'162064' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Total column vertically-integrated eastward mass flux +'162065' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Total column vertically-integrated northward mass flux +'162066' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Total column vertically-integrated eastward kinetic energy flux +'162067' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Total column vertically-integrated northward kinetic energy flux +'162068' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Total column vertically-integrated eastward heat flux +'162069' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Total column vertically-integrated northward heat flux +'162070' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Total column vertically-integrated eastward water vapour flux +'162071' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Total column vertically-integrated northward water vapour flux +'162072' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Total column vertically-integrated eastward geopotential flux +'162073' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Total column vertically-integrated northward geopotential flux +'162074' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Total column vertically-integrated eastward total energy flux +'162075' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Total column vertically-integrated northward total energy flux +'162076' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Total column vertically-integrated eastward ozone flux +'162077' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Total column vertically-integrated northward ozone flux +'162078' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Total column vertically-integrated divergence of mass flux +'162081' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Total column vertically-integrated divergence of kinetic energy flux +'162082' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Total column vertically-integrated divergence of thermal energy flux +'162083' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Total column vertically-integrated moisture divergence flux +'162084' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Total column vertically-integrated divergence of geopotential flux +'162085' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Total column vertically-integrated divergence of total energy flux +'162086' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Total column vertically-integrated divergence of ozone flux +'162087' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Time-integrated temperature tendency due to short-wave radiation +'162100' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Time-integrated temperature tendency due to long-wave radiation +'162101' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Time-integrated temperature tendency due to short wave radiation, clear sky +'162102' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Time-integrated temperature tendency due to long-wave radiation, clear sky +'162103' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Time-integrated updraught mass flux +'162104' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Time-integrated downdraught mass flux +'162105' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Time-integrated updraught detrainment rate +'162106' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Time-integrated downdraught detrainment rate +'162107' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Time-integrated total precipitation flux +'162108' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Time-integrated turbulent diffusion coefficient for heat +'162109' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Time-integrated temperature tendency due to parametrisations +'162110' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Time-integrated specific humidity tendency due to parametrisations +'162111' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Time-integrated eastward wind tendency due to parametrisations +'162112' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Time-integrated northward wind tendency due to parametrisations +'162113' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'162206' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'162207' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'162208' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'162209' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'162210' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'162211' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'162212' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'162213' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'162214' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'162215' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Mean large-scale precipitation rate +'172142' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'172143' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'172144' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Mean surface sensible heat flux +'172146' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'172147' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface downward solar radiation flux +'172169' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'172175' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'172176' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'172177' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'172178' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'172179' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'172180' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'172181' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'172182' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean runoff rate +'172205' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'172208' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'172209' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'172210' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'172211' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'172212' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'172228' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Surface runoff +'174008' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; + } +#Sea-ice thickness +'174098' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Snow depth +'190141' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Nitrogen dioxide mass mixing ratio +'210121' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio +'210122' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio +'210123' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'210203' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#Nitrogen dioxide mass mixing ratio difference +'211121' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio difference +'211122' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio difference +'211123' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'211203' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#Friction velocity +'228003' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Time-mean 2 metre temperature +'228004' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Time-mean 10 metre wind speed +'228005' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'228006' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake total depth +'228007' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'228008' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'228009' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'228010' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'228011' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'228012' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice surface temperature +'228013' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice total depth +'228014' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'228015' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'228016' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'228017' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'228018' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'228019' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#10 metre u-component of neutral wind +'228131' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#10 metre v-component of neutral wind +'228132' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#U-component surface stokes drift +'140215' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component surface stokes drift +'140216' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#100 metre U wind component +'228246' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'228247' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; } diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index ea3857d6d..2e9a391ed 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -1,1779 +1,1780 @@ -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'ocu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'ocv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'sithick' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'zos' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'100u' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'100v' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'100si' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'deg0l' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'t20d' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'sav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} +# Automatically generated by ./create_def.pl, do not edit #Total precipitation of at least 1 mm 'tpg1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } #Total precipitation of at least 5 mm 'tpg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } #Total precipitation of at least 40 mm 'tpg40' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } #Total precipitation of at least 60 mm 'tpg60' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } #Total precipitation of at least 80 mm 'tpg80' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'tclw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'tciw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} -#Sea-ice cover -'ci' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 31 ; -} -#Snow density -'rsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 33 ; -} -#Sea surface temperature -'sst' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 34 ; -} -#Surface solar radiation downwards -'ssrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 169 ; -} -#Surface thermal radiation downwards -'strd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 175 ; -} -#Eastward turbulent surface stress -'ewss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 180 ; -} -#Northward turbulent surface stress -'nsss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 181 ; -} -#Surface runoff -'sro' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 8 ; -} -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; -} -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; -} -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; -} -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; -} -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; -} -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; -} -#Lake ice surface temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; -} -#Lake ice total depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; -} -#Lake total depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; -} -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; -} -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; -} -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; -} -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; -} -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; -} -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; -} -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; -} -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; -} -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; -} -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; -} -#Particulate matter d <= 1 um -'pm1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; -} -#Particulate matter d <= 2.5 um -'pm2p5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; -} -#Particulate matter d <= 10 um -'pm10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; -} -#Runoff -'ro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; -} -#Total column vertically-integrated water vapour -'tcwv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } #Total precipitation of at least 100 mm 'tpg100' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; -} -#Mean zero-crossing wave period -'mp2' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; -} -#Peak wave period -'pp1d' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; -} -#Instantaneous total lightning flash density -'litoti' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; -} -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; -} -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; -} -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; -} -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; -} -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; -} -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; -} -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; -} -#Eastward gravity wave surface stress -'lgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; -} -#Friction velocity -'zust' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; -} -#Instantaneous eastward turbulent surface stress -'iews' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; -} -#Instantaneous northward turbulent surface stress -'inss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; -} -#Instantaneous surface sensible heat flux -'ishf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; -} -#Instantaneous moisture flux -'ie' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; -} -#Large-scale precipitation -'lsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; -} -#Large-scale precipitation fraction -'lspf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; -} -#Northward gravity wave surface stress -'mgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; -} -#Snow evaporation -'es' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; -} -#Snowfall -'sf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } #Surface runoff 'sro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; -} -#TOA incident solar radiation -'tisr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; -} -#Top net thermal radiation, clear sky -'ttrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; -} -#Top net solar radiation, clear sky -'tsrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; -} -#Total cloud cover -'tcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; -} -#Total column rain water -'tcrw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; -} -#Total column snow water -'tcsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; -} -#Vertical integral of eastward water vapour flux -'viwve' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; -} -#Vertical integral of northward water vapour flux -'viwvn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; -} -#Snow albedo -'asn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; -} -#Ice temperature -'ist' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; -} -#Snowmelt -'smlt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; -} -#Downward UV radiation at the surface -'uvb' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; -} -#Photosynthetically active radiation at the surface -'par' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; -} -#Boundary layer height -'blh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; -} -#Evaporation -'e' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; -} -#Low cloud cover -'lcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; -} -#Medium cloud cover -'mcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; -} -#High cloud cover -'hcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; -} -#Gravity wave dissipation -'gwd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; -} -#Potential evaporation -'pev' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; -} -#Unbalanced component of temperature -'uctp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; -} -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; -} -#Unbalanced component of divergence -'ucdv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; -} -#10 metre wind gust in the last 3 hours -'10fg3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; -} -#Forecast albedo -'fal' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; -} -#Forecast surface roughness -'fsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; -} -#Flux of Carbon Dioxide Net Ecosystem Exchange -'fco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; -} -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'aco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Gross Primary Production -'fco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; -} -#Accumulated Carbon Dioxide Gross Primary Production -'aco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Ecosystem Respiration -'fco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; -} -#Accumulated Carbon Dioxide Ecosystem Respiration -'aco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; -} -#Albedo (climatological) -'al' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; -} -#UV visible albedo for direct radiation (climatological) -'aluvp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; -} -#UV visible albedo for diffuse radiation (climatological) -'aluvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; -} -#Near IR albedo for direct radiation (climatological) -'alnip' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; -} -#Near IR albedo for diffuse radiation (climatological) -'alnid' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; -} -#Standard deviation of filtered subgrid orography (climatological) -'sdfor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; -} -#Logarithm of surface roughness length for heat (climatological) -'lsrh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; -} -#UV visible albedo for direct radiation, isotropic component (climatological) -'aluvpi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; -} -#UV visible albedo for direct radiation, volumetric component (climatological) -'aluvpv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; -} -#UV visible albedo for direct radiation, geometric component (climatological) -'aluvpg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; -} -#Near IR albedo for direct radiation, isotropic component (climatological) -'alnipi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; -} -#Near IR albedo for direct radiation, volumetric component (climatological) -'alnipv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; -} -#Near IR albedo for direct radiation, geometric component (climatological) -'alnipg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; -} -#Vertically integrated moisture divergence -'vimd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; -} -#Vertically integrated moisture divergence flux -'viwvd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; -} -#Forecast logarithm of surface roughness for heat -'flsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; -} -#10 metre u-component of neutral wind -'u10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; -} -#V-component of neutral wind -'v10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; -} -#Magnitude of turbulent surface stress -'magss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; -} -#Vertical integral of mass of atmosphere -'vima' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; -} -#Height of zero-degree wet-bulb temperature -'hwbt0' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; -} -#Height of one-degree wet-bulb temperature -'hwbt1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; -} -#Surface photosynthetically active radiation, clear sky -'parcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; -} -#Surface direct short-wave radiation, clear sky -'cdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; -} -#Duct base height -'dctb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; -} -#Trapping layer base height -'tplb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; -} -#Trapping layer top height -'tplt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; -} -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; -} -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; -} -#Vertical integral of eastward heat flux -'vithee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; -} -#Vertical integral of northward heat flux -'vithen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; -} -#Vertical integral of potential+internal+latent energy -'vipile' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; -} -#Skin reservoir content -'src' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; -} -#Skin reservoir content -'srcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } #Sub-surface runoff 'ssro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; -} -#Low vegetation cover -'cvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; -} -#High vegetation cover -'cvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; -} -#Leaf area index, low vegetation -'lai_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; -} -#Leaf area index, high vegetation -'lai_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; -} -#Type of low vegetation -'tvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; -} -#Type of high vegetation -'tvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; -} -#Mean direction of total swell -'mdts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; -} -#Mean direction of wind waves -'mdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; -} -#Charnock -'chnk' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; -} -#2D wave spectra (single) -'2dfd' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; -} -#Vertical integral of thermal energy -'vithe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; -} -#Vertical integral of potential+internal energy -'vipie' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; -} -#Vertical integral of kinetic energy -'vike' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; -} -#Vertical integral of total energy -'vitoe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; -} -#UV visible albedo for diffuse radiation, isotropic component (climatological) -'aluvdi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; -} -#UV visible albedo for diffuse radiation, volumetric component (climatological) -'aluvdv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; -} -#UV visible albedo for diffuse radiation, geometric component (climatological) -'aluvdg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; -} -#Near IR albedo for diffuse radiation, isotropic component (climatological) -'alnidi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; -} -#Near IR albedo for diffuse radiation, volumetric component (climatological) -'alnidv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; -} -#Near IR albedo for diffuse radiation, geometric component (climatological) -'alnidg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; -} -#Time-integrated temperature tendency due to short-wave radiation -'srta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; -} -#Time-integrated temperature tendency due to long-wave radiation -'trta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; -} -#Time-integrated temperature tendency due to short wave radiation, clear sky -'srtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; -} -#Time-integrated temperature tendency due to long-wave radiation, clear sky -'trtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; -} -#Time-integrated updraught mass flux -'umfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; -} -#Time-integrated downdraught mass flux -'dmfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; -} -#Time-integrated updraught detrainment rate -'udra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; -} -#Time-integrated downdraught detrainment rate -'ddra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; -} -#Time-integrated total precipitation flux -'tpfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; -} -#Time-integrated turbulent diffusion coefficient for heat -'tdcha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; -} -#Time-integrated temperature tendency due to parametrisations -'ttpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; -} -#Time-integrated specific humidity tendency due to parametrisations -'qtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; -} -#Time-integrated eastward wind tendency due to parametrisations -'utpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; -} -#Time-integrated northward wind tendency due to parametrisations -'vtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; -} -#Period corresponding to maximum individual wave height -'tmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; -} -#Maximum individual wave height -'hmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; -} -#Model bathymetry -'wmb' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; -} -#Mean wave period based on first moment -'mp1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; -} -#Wave spectral directional width -'wdw' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; -} -#Mean wave period based on first moment for wind waves -'p1ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; -} -#Mean wave period based on second moment for wind waves -'p2ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; -} -#Wave spectral directional width for wind waves -'dwww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; -} -#Mean wave period based on first moment for swell -'p1ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; -} -#Mean wave period based on second moment for swell -'p2ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; -} -#Wave spectral directional width for swell -'dwps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; -} -#Coefficient of drag with waves -'cdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; -} -#Significant height of total swell -'shts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; -} -#Mean period of total swell -'mpts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; -} -#Mean square slope of waves -'msqs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; -} -#Benjamin-Feir index -'bfi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; -} -#Montgomery stream Function -'mntsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#UV visible albedo for direct radiation (climatological) +'aluvp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation (climatological) +'aluvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation (climatological) +'alnip' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation (climatological) +'alnid' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Surface photosynthetically active radiation, clear sky +'parcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } #Lake cover 'cl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; -} -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; -} -#Angle of sub-gridscale orography -'anor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; -} -#Slope of sub-gridscale orography -'slor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; -} -#U-component surface stokes drift -'ust' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; -} -#V-component surface stokes drift -'vst' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; -} -#Total column ozone -'tco3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; -} -#Convective snowfall -'csf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; -} -#Large-scale snowfall -'lsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; -} -#Altimeter wave height -'awh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; -} -#Altimeter corrected wave height -'acwh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; -} -#Altimeter range relative correction -'arrc' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; -} -#Total sky direct solar radiation at surface -'fdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; -} -#Surface solar radiation downward clear-sky -'ssrdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; -} -#Surface thermal radiation downward clear-sky -'strdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; -} -#Standard deviation of orography -'sdor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; -} -#Cloud base height -'cbh' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; -} -#Wave spectral kurtosis -'wsk' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; -} -#10 metre wind speed -'wind' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; -} -#10 metre wind direction -'dwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; -} -#Mean temperature at 2 metres -'mean2t' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; -} -#Mean surface net radiation flux -'msnrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; -} -#Surface net radiation -'snr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; -} -#Top net radiation -'tnr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; -} -#Surface emissivity -'emis' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; -} -#Vertical integral of water vapour -'viwv' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; -} -#Snow depth -'sdsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; -} -#Mean total snowfall rate -'mtsfr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; -} -#Evaporation -'erate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; -} -#Mean total precipitation rate -'tprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; -} -#Mean large-scale precipitation rate -'mlsprt' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; -} -#Mean convective precipitation rate -'cprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; -} -#Mean runoff rate -'mrort' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; -} -#Mean total cloud cover -'meantcc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; -} -#Mean of 10 metre wind speed -'mean10ws' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; -} -#Sea water potential temperature -'thetao' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; -} -#Sea water practical salinity -'so' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; -} -#Upward sea water velocity -'wo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; -} -#Sea water sigma theta -'sigmat' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; -} -#Surface downward eastward stress -'taueo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} -#Surface downward northward stress -'tauno' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; -} -#Vertical integral of temperature -'vit' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; -} -#Vertical integral of cloud liquid water -'vilw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; -} -#Vertical integral of cloud frozen water -'viiw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; -} -#Vertical integral of ozone -'vioz' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; -} -#Vertical integral of energy conversion -'viec' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; -} -#Vertical integral of eastward mass flux -'vimae' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; -} -#Vertical integral of northward mass flux -'viman' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; -} -#Vertical integral of eastward kinetic energy flux -'vikee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; -} -#Vertical integral of northward kinetic energy flux -'viken' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; -} -#Vertical integral of eastward geopotential flux -'vige' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; -} -#Vertical integral of northward geopotential flux -'vign' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; -} -#Vertical integral of eastward total energy flux -'vitoee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; -} -#Vertical integral of northward total energy flux -'vitoen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; -} -#Vertical integral of eastward ozone flux -'vioze' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; -} -#Vertical integral of northward ozone flux -'viozn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; -} -#Vertical integral of divergence of mass flux -'vimad' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; -} -#Vertical integral of divergence of kinetic energy flux -'viked' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; -} -#Vertical integral of divergence of thermal energy flux -'vithed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; -} -#Vertical integral of divergence of geopotential flux -'vigd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; -} -#Vertical integral of divergence of total energy flux -'vitoed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; -} -#Vertical integral of divergence of ozone flux -'viozd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; -} -#Variance of geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; -} -#Covariance of geopotential/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; -} -#Variance of temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; -} -#Covariance of geopotential/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; -} -#Covariance of temperature/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; -} -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; -} -#Covariance of u component/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; -} -#Covariance of u component/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; -} -#Covariance of u component/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; -} -#Variance of u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; -} -#Mean vertical velocity -'mvv' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; -} -#Mean surface sensible heat flux -'msshfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; -} -#Mean surface latent heat flux -'mslhfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'cvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'cvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'tvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'tvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Sea ice area fraction +'ci' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; + } +#Snow albedo +'asn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Snow density +'rsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; + } +#Sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; + } +#Snow evaporation +'es' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'smlt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Surface direct normal short-wave (solar) radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Time-integrated magnitude of turbulent surface stress +'magss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'lspf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Montgomery potential +'mont' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } #Mean temperature at 2 metres in the last 24 hours 'mean2t24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; -} -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours 'mn2d24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Surface downward UV radiation +'uvb' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Standard deviation of filtered subgrid orography (climatological) +'sdfor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column cloud liquid water +'tclw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column cloud ice water +'tciw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Surface emissivity +'emis' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Total column vertically-integrated water vapour +'tcwv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Large-scale precipitation +'lsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Snowfall +'sf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'chnk' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation (SW and LW) +'snr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation (SW and LW) +'tnr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Boundary layer height +'blh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of sub-gridscale orography +'sdor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'tcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Surface short-wave (solar) radiation downwards +'ssrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; + } +#Albedo (climatological) +'al' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Surface long-wave (thermal) radiation downwards +'strd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; + } +#Top net short-wave (solar) radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Time-integrated eastward turbulent surface stress +'ewss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; + } +#Time-integrated northward turbulent surface stress +'nsss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; + } +#Evaporation +'e' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Low cloud cover +'lcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'mcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'hcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#Eastward gravity wave surface stress +'lgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'src' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Runoff +'ro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'tco3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net short-wave (solar) radiation, clear sky +'tsrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net long-wave (thermal) radiation, clear sky +'ttrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net short-wave (solar) radiation, clear sky +'ssrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net long-wave (thermal) radiation, clear sky +'strc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident short-wave (solar) radiation +'tisr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat net flux +'ishf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'ie' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Logarithm of surface roughness length for heat (climatological) +'lsrh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'csf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'lsf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Forecast albedo +'fal' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'fsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Mean surface net radiation flux +'msnrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Particulate matter d <= 1 um +'pm1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d <= 2.5 um +'pm2p5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d <= 10 um +'pm10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#UV visible albedo for direct radiation, isotropic component (climatological) +'aluvpi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component (climatological) +'aluvpv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component (climatological) +'aluvpg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component (climatological) +'alnipi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component (climatological) +'alnipv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component (climatological) +'alnipg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component (climatological) +'aluvdi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component (climatological) +'aluvdv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component (climatological) +'aluvdg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component (climatological) +'alnidi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component (climatological) +'alnidv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component (climatological) +'alnidg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Ammonia mass mixing ratio +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide mass mixing ratio +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Surface direct short-wave (solar) radiation +'fdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Surface direct short-wave radiation, clear sky +'cdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'cbh' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#0 degrees C isothermal level (atm) +'deg0l' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Maximum 10 metre wind gust in the last 3 hours +'10fg3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Height of zero-degree wet-bulb temperature +'hwbt0' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'hwbt1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Carbon dioxide net ecosystem exchange flux +'fco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Carbon dioxide gross primary production flux +'fco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Carbon dioxide ecosystem respiration flux +'fco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'tcrw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'tcsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Ice temperature +'ist' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface short-wave (solar) radiation downward clear-sky +'ssrdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface long-wave (thermal) radiation downward clear-sky +'strdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#100 metre wind speed +'100si' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Potential evaporation +'pev' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours gradient 'mn2d24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; -} -#Mean surface downward solar radiation flux -'msdsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; -} -#Mean surface downward thermal radiation flux -'msdtrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; -} -#Mean surface net solar radiation flux -'msnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; -} -#Mean surface net thermal radiation flux -'msntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; -} -#Mean top net solar radiation flux -'mtnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; -} -#Mean top net thermal radiation flux -'mtntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; -} -#East-West surface stress rate of accumulation -'ewssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; -} -#North-South surface stress rate of accumulation -'nsssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; -} + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Mean vertical velocity +'mvv' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Envelop-maximum individual wave height +'hmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'wmb' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'wdw' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'pp1d' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'cdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Mean direction of wind waves +'mdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Significant height of total swell +'shts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'mdts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'mpts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } #Standard deviation wave height 'sdhs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } #Mean of 10 metre wind speed 'mu10' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } #Mean wind direction 'mdwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } #Standard deviation of 10 metre wind speed 'sdu' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; -} -#Top net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; -} -#Top net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; -} -#Surface net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; -} -#Solar insolation rate of accumulation -'soira' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'msqs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'wind' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'awh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'arrc' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'dwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (single) +'2dfd' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'bfi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } #Wave spectral peakedness 'wsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Sea water potential temperature +'thetao' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'so' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Eastward surface sea water velocity +'ocu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Northward surface sea water velocity +'ocv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Upward sea water velocity +'wo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'sigmat' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Sea surface height +'zos' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Surface downward eastward stress +'taueo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'tauno' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Depth of 20C isotherm +'t20d' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average sea water practical salinity in the upper 300m +'sav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Skin reservoir content +'srcon' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Surface geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Total column vertically-integrated mass of atmosphere +'vima' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Total column vertically-integrated temperature +'vit' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Total column vertically-integrated water vapour +'viwv' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Total column vertically-integrated cloud liquid water +'vilw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Total column vertically-integrated cloud frozen water +'viiw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Total column vertically-integrated ozone +'vioz' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Total column vertically-integrated kinetic energy +'vike' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Total column vertically-integrated enthalpy +'vithe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Total column vertically-integrated potential + internal energy +'vipie' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Total column vertically-integrated potential+internal+latent energy +'vipile' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Total column vertically-integrated total energy +'vitoe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Total column vertically-integrated energy conversion +'viec' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Total column vertically-integrated eastward mass flux +'vimae' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Total column vertically-integrated northward mass flux +'viman' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Total column vertically-integrated eastward kinetic energy flux +'vikee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Total column vertically-integrated northward kinetic energy flux +'viken' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Total column vertically-integrated eastward heat flux +'vithee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Total column vertically-integrated northward heat flux +'vithen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Total column vertically-integrated eastward water vapour flux +'viwve' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Total column vertically-integrated northward water vapour flux +'viwvn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Total column vertically-integrated eastward geopotential flux +'vige' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Total column vertically-integrated northward geopotential flux +'vign' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Total column vertically-integrated eastward total energy flux +'vitee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Total column vertically-integrated northward total energy flux +'viten' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Total column vertically-integrated eastward ozone flux +'vioze' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Total column vertically-integrated northward ozone flux +'viozn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Total column vertically-integrated divergence of mass flux +'vimad' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Total column vertically-integrated divergence of kinetic energy flux +'viked' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Total column vertically-integrated divergence of thermal energy flux +'vithed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Total column vertically-integrated moisture divergence flux +'vimdf' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Total column vertically-integrated divergence of geopotential flux +'vigd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Total column vertically-integrated divergence of total energy flux +'vited' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Total column vertically-integrated divergence of ozone flux +'viozd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Time-integrated temperature tendency due to short-wave radiation +'srta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Time-integrated temperature tendency due to long-wave radiation +'trta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Time-integrated temperature tendency due to short wave radiation, clear sky +'srtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Time-integrated temperature tendency due to long-wave radiation, clear sky +'trtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Time-integrated updraught mass flux +'umfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Time-integrated downdraught mass flux +'dmfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Time-integrated updraught detrainment rate +'udra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Time-integrated downdraught detrainment rate +'ddra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Time-integrated total precipitation flux +'tpfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Time-integrated turbulent diffusion coefficient for heat +'tdcha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Time-integrated temperature tendency due to parametrisations +'ttpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Time-integrated specific humidity tendency due to parametrisations +'qtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Time-integrated eastward wind tendency due to parametrisations +'utpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Time-integrated northward wind tendency due to parametrisations +'vtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Mean large-scale precipitation rate +'mlsprt' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'cprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'mtsfr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Mean surface sensible heat flux +'msshfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'mslhfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface downward solar radiation flux +'msdsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'msdtrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'msnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'msntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'mtnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'mtntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'ewssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'nsssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'erate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean runoff rate +'mrort' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'soira' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'tprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; + } +#Sea-ice thickness +'sithick' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Snow depth +'sdsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Nitrogen dioxide mass mixing ratio +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#Nitrogen dioxide mass mixing ratio difference +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio difference +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio difference +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#Friction velocity +'zust' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Time-mean 2 metre temperature +'avg_2t' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Time-mean 10 metre wind speed +'avg_10ws' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'meantcc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake total depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice surface temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice total depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'dctb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'tplb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'tplt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#10 metre u-component of neutral wind +'u10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#10 metre v-component of neutral wind +'v10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#U-component surface stokes drift +'ust' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component surface stokes drift +'vst' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#100 metre U wind component +'100u' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'100v' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; } diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 49dd68c37..f2484c10b 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -1,1779 +1,1780 @@ -#Surface net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} +# Automatically generated by ./create_def.pl, do not edit #Total precipitation of at least 1 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } #Total precipitation of at least 5 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } #Total precipitation of at least 40 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } #Total precipitation of at least 60 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } #Total precipitation of at least 80 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} -#Sea-ice cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 31 ; -} -#Snow density -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 33 ; -} -#Sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 34 ; -} -#Surface solar radiation downwards -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 169 ; -} -#Surface thermal radiation downwards -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 175 ; -} -#Eastward turbulent surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 180 ; -} -#Northward turbulent surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 181 ; -} -#Surface runoff -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 8 ; -} -#Direct solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; -} -#Lake total layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; -} -#Lake mix-layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; -} -#Lake mix-layer depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; -} -#Lake bottom temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; -} -#Lake shape factor -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; -} -#Lake ice surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; -} -#Lake ice total depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; -} -#Lake total depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; -} -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; -} -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; -} -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; -} -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; -} -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; -} -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; -} -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; -} -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; -} -#Ammonia -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; -} -#Nitrogen monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; -} -#Particulate matter d <= 1 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; -} -#Particulate matter d <= 2.5 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; -} -#Particulate matter d <= 10 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; -} -#Runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; -} -#Total column vertically-integrated water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } #Total precipitation of at least 100 mm '%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; -} -#Mean zero-crossing wave period -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; -} -#Peak wave period -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; -} -#Instantaneous total lightning flash density -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; -} -#Averaged total lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; -} -#Instantaneous cloud-to-ground lightning flash density -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; -} -#Averaged cloud-to-ground lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; -} -#Averaged total lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; -} -#Averaged total lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; -} -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; -} -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; -} -#Eastward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; -} -#Friction velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; -} -#Instantaneous eastward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; -} -#Instantaneous northward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; -} -#Instantaneous surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; -} -#Instantaneous moisture flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; -} -#Large-scale precipitation -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; -} -#Large-scale precipitation fraction -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; -} -#Northward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; -} -#Snow evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; -} -#Snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; -} + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } #Surface runoff 'm' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; -} -#TOA incident solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; -} -#Top net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; -} -#Top net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; -} -#Total cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; -} -#Total column rain water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; -} -#Total column snow water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; -} -#Vertical integral of eastward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; -} -#Vertical integral of northward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; -} -#Snow albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; -} -#Ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; -} -#Snowmelt -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; -} -#Downward UV radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; -} -#Photosynthetically active radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; -} -#Boundary layer height -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; -} -#Evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; -} -#Low cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; -} -#Medium cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; -} -#High cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; -} -#Gravity wave dissipation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; -} -#Potential evaporation -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; -} -#Unbalanced component of temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; -} -#Unbalanced component of logarithm of surface pressure -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; -} -#Unbalanced component of divergence -'s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; -} -#10 metre wind gust in the last 3 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; -} -#Forecast albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; -} -#Forecast surface roughness -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; -} -#Flux of Carbon Dioxide Net Ecosystem Exchange -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; -} -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Gross Primary Production -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; -} -#Accumulated Carbon Dioxide Gross Primary Production -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; -} -#Flux of Carbon Dioxide Ecosystem Respiration -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; -} -#Accumulated Carbon Dioxide Ecosystem Respiration -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; -} -#Albedo (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; -} -#UV visible albedo for direct radiation (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; -} -#UV visible albedo for diffuse radiation (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; -} -#Near IR albedo for direct radiation (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; -} -#Near IR albedo for diffuse radiation (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; -} -#Standard deviation of filtered subgrid orography (climatological) -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; -} -#Logarithm of surface roughness length for heat (climatological) -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; -} -#UV visible albedo for direct radiation, isotropic component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; -} -#UV visible albedo for direct radiation, volumetric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; -} -#UV visible albedo for direct radiation, geometric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; -} -#Near IR albedo for direct radiation, isotropic component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; -} -#Near IR albedo for direct radiation, volumetric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; -} -#Near IR albedo for direct radiation, geometric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; -} -#Vertically integrated moisture divergence -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; -} -#Vertically integrated moisture divergence flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; -} -#Forecast logarithm of surface roughness for heat -'Numeric' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; -} -#10 metre u-component of neutral wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; -} -#V-component of neutral wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; -} -#Magnitude of turbulent surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; -} -#Vertical integral of mass of atmosphere -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; -} -#Height of zero-degree wet-bulb temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; -} -#Height of one-degree wet-bulb temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; -} -#Surface photosynthetically active radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; -} -#Surface direct short-wave radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; -} -#Duct base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; -} -#Trapping layer base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; -} -#Trapping layer top height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; -} -#Mean vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; -} -#Minimum vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; -} -#Vertical integral of eastward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; -} -#Vertical integral of northward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; -} -#Vertical integral of potential+internal+latent energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; -} -#Skin reservoir content -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; -} -#Skin reservoir content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } #Sub-surface runoff 'm' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; -} -#Low vegetation cover + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#UV visible albedo for direct radiation (climatological) '(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; -} -#High vegetation cover + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation (climatological) '(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; -} -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; -} -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; -} -#Type of low vegetation -'(code table 4.234)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; -} -#Type of high vegetation -'(code table 4.234)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; -} -#Mean direction of total swell -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; -} -#Mean direction of wind waves -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; -} -#Charnock -'Numeric' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; -} -#2D wave spectra (single) -'m**2 s radian**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; -} -#Vertical integral of thermal energy + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Surface photosynthetically active radiation, clear sky 'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; -} -#Vertical integral of potential+internal energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; -} -#Vertical integral of kinetic energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; -} -#Vertical integral of total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; -} -#UV visible albedo for diffuse radiation, isotropic component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; -} -#UV visible albedo for diffuse radiation, volumetric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; -} -#UV visible albedo for diffuse radiation, geometric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; -} -#Near IR albedo for diffuse radiation, isotropic component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; -} -#Near IR albedo for diffuse radiation, volumetric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; -} -#Near IR albedo for diffuse radiation, geometric component (climatological) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; -} -#Time-integrated temperature tendency due to short-wave radiation + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature 'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; -} -#Time-integrated temperature tendency due to long-wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; -} -#Time-integrated temperature tendency due to short wave radiation, clear sky -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; -} -#Time-integrated temperature tendency due to long-wave radiation, clear sky -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; -} -#Time-integrated updraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; -} -#Time-integrated downdraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; -} -#Time-integrated updraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; -} -#Time-integrated downdraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; -} -#Time-integrated total precipitation flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; -} -#Time-integrated turbulent diffusion coefficient for heat -'m**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; -} -#Time-integrated temperature tendency due to parametrisations -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; -} -#Time-integrated specific humidity tendency due to parametrisations -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; -} -#Time-integrated eastward wind tendency due to parametrisations -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; -} -#Time-integrated northward wind tendency due to parametrisations -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; -} -#Period corresponding to maximum individual wave height -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; -} -#Maximum individual wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; -} -#Model bathymetry -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; -} -#Mean wave period based on first moment -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; -} -#Wave spectral directional width -'radians' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; -} -#Mean wave period based on first moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; -} -#Mean wave period based on second moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; -} -#Wave spectral directional width for wind waves -'radians' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; -} -#Mean wave period based on first moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; -} -#Mean wave period based on second moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; -} -#Wave spectral directional width for swell -'radians' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; -} -#Coefficient of drag with waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; -} -#Significant height of total swell -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; -} -#Mean period of total swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; -} -#Mean square slope of waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; -} -#Benjamin-Feir index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; -} -#Montgomery stream Function -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } #Lake cover '(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; -} -#Anisotropy of sub-gridscale orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; -} -#Angle of sub-gridscale orography -'radians' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; -} -#Slope of sub-gridscale orography -'Numeric' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; -} -#U-component surface stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; -} -#V-component surface stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; -} -#Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; -} -#Convective snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; -} -#Large-scale snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; -} -#Altimeter wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; -} -#Altimeter corrected wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; -} -#Altimeter range relative correction -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; -} -#Total sky direct solar radiation at surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; -} -#Surface solar radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; -} -#Surface thermal radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; -} -#Standard deviation of orography -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; -} -#Cloud base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; -} -#Wave spectral kurtosis -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; -} -#10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; -} -#10 metre wind direction -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; -} -#Mean temperature at 2 metres -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; -} -#Mean surface net radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; -} -#Surface net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; -} -#Top net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; -} -#Surface emissivity -'dimensionless' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; -} -#Vertical integral of water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; -} -#Snow depth -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; -} -#Mean total snowfall rate -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; -} -#Evaporation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; -} -#Mean total precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; -} -#Mean large-scale precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; -} -#Mean convective precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; -} -#Mean runoff rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; -} -#Mean total cloud cover + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover '(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; -} -#Mean of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; -} -#Sea water potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; -} -#Sea water practical salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; -} -#Upward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; -} -#Sea water sigma theta + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'(Code table 4.234)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'(Code table 4.234)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Sea ice area fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; + } +#Snow albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Snow density 'kg m**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; -} -#Surface downward eastward stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} -#Surface downward northward stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; -} -#Vertical integral of temperature -'K kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; -} -#Vertical integral of cloud liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; -} -#Vertical integral of cloud frozen water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; -} -#Vertical integral of ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; -} -#Vertical integral of energy conversion -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; -} -#Vertical integral of eastward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; -} -#Vertical integral of northward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; -} -#Vertical integral of eastward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; -} -#Vertical integral of northward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; -} -#Vertical integral of eastward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; -} -#Vertical integral of northward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; -} -#Vertical integral of eastward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; -} -#Vertical integral of northward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; -} -#Vertical integral of eastward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; -} -#Vertical integral of northward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; -} -#Vertical integral of divergence of mass flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; -} -#Vertical integral of divergence of kinetic energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; -} -#Vertical integral of divergence of thermal energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; -} -#Vertical integral of divergence of geopotential flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; -} -#Vertical integral of divergence of total energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; -} -#Vertical integral of divergence of ozone flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; -} -#Variance of geopotential -'m**4 s**-4' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; -} -#Covariance of geopotential/temperature -'m**2 K s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; -} -#Variance of temperature -'K**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; -} -#Covariance of geopotential/specific humidity -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; -} -#Covariance of temperature/specific humidity + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; + } +#Sea surface temperature 'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; -} -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; -} -#Covariance of u component/geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; -} -#Covariance of u component/temperature -'m s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; -} -#Covariance of u component/specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; -} -#Variance of u component + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; + } +#Snow evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Surface direct normal short-wave (solar) radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Time-integrated magnitude of turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Montgomery potential 'm**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; -} -#Mean vertical velocity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; -} -#Mean surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; -} -#Mean surface latent heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } #Mean temperature at 2 metres in the last 24 hours 'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; -} -#Mean 2 metre temperature in the last 24 hours gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours 'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; -} + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Surface downward UV radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Standard deviation of filtered subgrid orography (climatological) +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column cloud liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column cloud ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Surface emissivity +'Proportion' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Total column vertically-integrated water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Large-scale precipitation +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'Numeric' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation (SW and LW) +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation (SW and LW) +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Boundary layer height +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of sub-gridscale orography +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'Numeric' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'radians' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'Numeric' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Surface short-wave (solar) radiation downwards +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; + } +#Albedo (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Surface long-wave (thermal) radiation downwards +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; + } +#Top net short-wave (solar) radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Time-integrated eastward turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; + } +#Time-integrated northward turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; + } +#Evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Low cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net short-wave (solar) radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net long-wave (thermal) radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net short-wave (solar) radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net long-wave (thermal) radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident short-wave (solar) radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat net flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Logarithm of surface roughness length for heat (climatological) +'Numeric' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Temperature of snow layer +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Forecast albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Numeric' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Mean surface net radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Particulate matter d <= 1 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d <= 2.5 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d <= 10 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#UV visible albedo for direct radiation, isotropic component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component (climatological) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Ammonia mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Surface direct short-wave (solar) radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Surface direct short-wave radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#0 degrees C isothermal level (atm) +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Maximum 10 metre wind gust in the last 3 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Height of zero-degree wet-bulb temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Carbon dioxide net ecosystem exchange flux +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Carbon dioxide gross primary production flux +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Carbon dioxide ecosystem respiration flux +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface short-wave (solar) radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface long-wave (thermal) radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#100 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Potential evaporation +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } #Mean 2 metre dewpoint temperature in the last 24 hours gradient 'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; -} -#Mean surface downward solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; -} -#Mean surface downward thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; -} -#Mean surface net solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; -} -#Mean surface net thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; -} -#Mean top net solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; -} -#Mean top net thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; -} -#East-West surface stress rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; -} -#North-South surface stress rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; -} + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Mean vertical velocity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#Period corresponding to maximum individual wave height +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Envelop-maximum individual wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'radians' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'radians' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'radians' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Mean direction of wind waves +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Significant height of total swell +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } #Standard deviation wave height 'm' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } #Mean of 10 metre wind speed 'm s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } #Mean wind direction 'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } #Standard deviation of 10 metre wind speed 'm s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; -} -#Top net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; -} -#Top net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; -} -#Surface net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; -} -#Solar insolation rate of accumulation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; -} + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (single) +'m**2 s radian**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } #Wave spectral peakedness 'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Sea water potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Eastward surface sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Northward surface sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Upward sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Sea surface height +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Surface downward eastward stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Depth of 20C isotherm +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average sea water practical salinity in the upper 300m +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Skin reservoir content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Surface geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Total column vertically-integrated mass of atmosphere +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Total column vertically-integrated temperature +'K kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Total column vertically-integrated water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Total column vertically-integrated cloud liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Total column vertically-integrated cloud frozen water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Total column vertically-integrated ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Total column vertically-integrated kinetic energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Total column vertically-integrated enthalpy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Total column vertically-integrated potential + internal energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Total column vertically-integrated potential+internal+latent energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Total column vertically-integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Total column vertically-integrated energy conversion +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Total column vertically-integrated eastward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Total column vertically-integrated northward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Total column vertically-integrated eastward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Total column vertically-integrated northward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Total column vertically-integrated eastward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Total column vertically-integrated northward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Total column vertically-integrated eastward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Total column vertically-integrated northward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Total column vertically-integrated eastward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Total column vertically-integrated northward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Total column vertically-integrated eastward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Total column vertically-integrated northward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Total column vertically-integrated eastward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Total column vertically-integrated northward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Total column vertically-integrated divergence of mass flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Total column vertically-integrated divergence of kinetic energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Total column vertically-integrated divergence of thermal energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Total column vertically-integrated moisture divergence flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Total column vertically-integrated divergence of geopotential flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Total column vertically-integrated divergence of total energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Total column vertically-integrated divergence of ozone flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Time-integrated temperature tendency due to short-wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Time-integrated temperature tendency due to long-wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Time-integrated temperature tendency due to short wave radiation, clear sky +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Time-integrated temperature tendency due to long-wave radiation, clear sky +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Time-integrated updraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Time-integrated downdraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Time-integrated updraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Time-integrated downdraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Time-integrated total precipitation flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Time-integrated turbulent diffusion coefficient for heat +'m**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Time-integrated temperature tendency due to parametrisations +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Time-integrated specific humidity tendency due to parametrisations +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Time-integrated eastward wind tendency due to parametrisations +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Time-integrated northward wind tendency due to parametrisations +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'m**4 s**-4' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'m**2 K s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'K**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'m s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Mean large-scale precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Mean surface sensible heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface downward solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean runoff rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Surface runoff +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; + } +#Sea-ice thickness +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Snow depth +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Nitrogen dioxide mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#Nitrogen dioxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#Friction velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Time-mean 2 metre temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Time-mean 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake total depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice total depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#10 metre u-component of neutral wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#10 metre v-component of neutral wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#U-component surface stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component surface stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#100 metre U wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; } diff --git a/definitions/grib2/name.legacy.def b/definitions/grib2/name.legacy.def index 8d87c229c..3a0b639dc 100644 --- a/definitions/grib2/name.legacy.def +++ b/definitions/grib2/name.legacy.def @@ -1,254 +1,249 @@ -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Upper layer soil temperature -'Upper layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'Upper layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'Lower layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'Bottom layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } +# Automatically generated by ./create_def.pl, do not edit #Instantaneous eastward turbulent surface stress 'Instantaneous eastward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - typeOfFirstFixedSurface = 1 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + typeOfFirstFixedSurface = 1 ; + } #Instantaneous northward turbulent surface stress 'Instantaneous northward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; -} -#Evaporation in the last 6 hours -'Evaporation in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; -} -#Time-mean evapotranspiration rate in the last 24h -'Time-mean evapotranspiration rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 39 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated potential evapotranspiration rate in the last 24h -'Time-integrated potential evapotranspiration rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean potential evapotranspiration rate in the last 24h -'Time-mean potential evapotranspiration rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean volumetric soil moisture -'Time-mean volumetric soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated water runoff and drainage rate in the last 24h -'Time-integrated water runoff and drainage rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean water runoff and drainage rate in the last 24h -'Time-mean water runoff and drainage rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean snow depth water equivalent -'Time-mean snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean skin temperature -'Time-mean skin temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated snow melt rate in the last 24h -'Time-integrated snow melt rate in the last 24h' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 41 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Upward sea water velocity -'Upward sea water velocity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; -} -#Time-mean upward sea water velocity -'Time-mean upward sea water velocity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; - typeOfStatisticalProcessing = 0 ; -} -#Maximum individual wave height -'Maximum individual wave height' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; -} -#Soil temperature -'Soil temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; -} -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + } #Minimum dew point depression 'Minimum dew point depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; -} + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } #Maximum relative humidity 'Maximum relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } #Maximum absolute humidity 'Maximum absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } #Maximum wind speed 'Maximum wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } #Net long wave radiation flux (surface) 'Net long wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } #Net long wave radiation flux (top of atmosphere) 'Net long wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } #Maximum snow albedo 'Maximum snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; -} -#Soil temperature -'Soil temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Upper layer soil temperature +'Upper layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'Upper layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'Lower layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'Bottom layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Evaporation in the last 6 hours +'Evaporation in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Time-mean evapotranspiration rate in the last 24h +'Time-mean evapotranspiration rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated potential evapotranspiration rate in the last 24h +'Time-integrated potential evapotranspiration rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean potential evapotranspiration rate in the last 24h +'Time-mean potential evapotranspiration rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean volumetric soil moisture +'Time-mean volumetric soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated water runoff and drainage rate in the last 24h +'Time-integrated water runoff and drainage rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean water runoff and drainage rate in the last 24h +'Time-mean water runoff and drainage rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean snow depth water equivalent +'Time-mean snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean skin temperature +'Time-mean skin temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated snow melt rate in the last 24h +'Time-integrated snow melt rate in the last 24h' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 41 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Upward sea water velocity +'Upward sea water velocity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + } +#Time-mean upward sea water velocity +'Time-mean upward sea water velocity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + typeOfStatisticalProcessing = 0 ; + } +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Envelop-maximum individual wave height +'Envelop-maximum individual wave height' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } #Soil moisture 'Soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil temperature +'Soil temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; } diff --git a/definitions/grib2/paramId.legacy.def b/definitions/grib2/paramId.legacy.def index 9d4bb8961..33c4e0364 100644 --- a/definitions/grib2/paramId.legacy.def +++ b/definitions/grib2/paramId.legacy.def @@ -1,254 +1,249 @@ -#Volumetric soil moisture content -'260185' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Upper layer soil temperature -'260201' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'260202' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'260203' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'260204' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'260205' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Transpiration stress-onset (soil moisture) -'260207' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'260208' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'260209' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } +# Automatically generated by ./create_def.pl, do not edit #Instantaneous eastward turbulent surface stress '229' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - typeOfFirstFixedSurface = 1 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + typeOfFirstFixedSurface = 1 ; + } #Instantaneous northward turbulent surface stress '230' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; -} -#Evaporation in the last 6 hours -'260265' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; -} -#Time-mean evapotranspiration rate in the last 24h -'260435' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 39 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated potential evapotranspiration rate in the last 24h -'260437' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean potential evapotranspiration rate in the last 24h -'260438' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean volumetric soil moisture -'260440' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated water runoff and drainage rate in the last 24h -'260444' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean water runoff and drainage rate in the last 24h -'260445' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean snow depth water equivalent -'260472' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean skin temperature -'260473' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated snow melt rate in the last 24h -'260476' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 41 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Upward sea water velocity -'262507' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; -} -#Time-mean upward sea water velocity -'263507' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; - typeOfStatisticalProcessing = 0 ; -} -#Maximum individual wave height -'140218' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; -} -#Soil temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} -#Maximum temperature -'3015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; -} -#Minimum temperature -'3016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + } #Minimum dew point depression '260006' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; -} + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } #Maximum relative humidity '260023' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } #Maximum absolute humidity '260024' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } #Maximum wind speed '260064' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } #Net long wave radiation flux (surface) '260095' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } #Net long wave radiation flux (top of atmosphere) '260096' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } #Maximum snow albedo '260161' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; -} -#Soil temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Volumetric soil moisture content +'260185' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Upper layer soil temperature +'260201' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'260202' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'260203' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'260204' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'260205' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Transpiration stress-onset (soil moisture) +'260207' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'260208' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'260209' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Evaporation in the last 6 hours +'260265' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Time-mean evapotranspiration rate in the last 24h +'260435' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated potential evapotranspiration rate in the last 24h +'260437' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean potential evapotranspiration rate in the last 24h +'260438' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean volumetric soil moisture +'260440' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated water runoff and drainage rate in the last 24h +'260444' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean water runoff and drainage rate in the last 24h +'260445' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean snow depth water equivalent +'260472' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean skin temperature +'260473' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated snow melt rate in the last 24h +'260476' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 41 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Upward sea water velocity +'262507' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + } +#Time-mean upward sea water velocity +'263507' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + typeOfStatisticalProcessing = 0 ; + } +#Maximum temperature +'3015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'3016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Envelop-maximum individual wave height +'140218' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } #Soil moisture '228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; } diff --git a/definitions/grib2/shortName.legacy.def b/definitions/grib2/shortName.legacy.def index e21fd8b0f..0ba485578 100644 --- a/definitions/grib2/shortName.legacy.def +++ b/definitions/grib2/shortName.legacy.def @@ -1,254 +1,249 @@ -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Upper layer soil temperature -'uplst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'uplsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'lowlsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'botlst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'soill' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Transpiration stress-onset (soil moisture) -'smref' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'smdry' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'poros' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } +# Automatically generated by ./create_def.pl, do not edit #Instantaneous eastward turbulent surface stress 'iews' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - typeOfFirstFixedSurface = 1 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + typeOfFirstFixedSurface = 1 ; + } #Instantaneous northward turbulent surface stress 'inss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; -} -#Evaporation in the last 6 hours -'eva06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; -} -#Time-mean evapotranspiration rate in the last 24h -'avg_et24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 39 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated potential evapotranspiration rate in the last 24h -'acc_pet24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean potential evapotranspiration rate in the last 24h -'avg_pet24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean volumetric soil moisture -'avg_swv24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated water runoff and drainage rate in the last 24h -'acc_rod24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean water runoff and drainage rate in the last 24h -'avg_rod24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean snow depth water equivalent -'avg_sd24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean skin temperature -'avg_skt24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated snow melt rate in the last 24h -'acc_smr24' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 41 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Upward sea water velocity -'wo' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; -} -#Time-mean upward sea water velocity -'avg_wo' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; - typeOfStatisticalProcessing = 0 ; -} -#Maximum individual wave height -'hmax' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; -} -#Soil temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; -} -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + } #Minimum dew point depression 'mindpd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; -} + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } #Maximum relative humidity 'maxrh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } #Maximum absolute humidity 'maxah' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } #Maximum wind speed 'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } #Net long wave radiation flux (surface) 'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } #Net long wave radiation flux (top of atmosphere) 'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } #Maximum snow albedo 'mxsalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; -} -#Soil temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Upper layer soil temperature +'uplst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'uplsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'lowlsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'botlst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'soill' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Transpiration stress-onset (soil moisture) +'smref' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'smdry' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'poros' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Evaporation in the last 6 hours +'eva06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Time-mean evapotranspiration rate in the last 24h +'avg_et24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated potential evapotranspiration rate in the last 24h +'acc_pet24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean potential evapotranspiration rate in the last 24h +'avg_pet24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean volumetric soil moisture +'avg_swv24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated water runoff and drainage rate in the last 24h +'acc_rod24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean water runoff and drainage rate in the last 24h +'avg_rod24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean snow depth water equivalent +'avg_sd24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean skin temperature +'avg_skt24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated snow melt rate in the last 24h +'acc_smr24' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 41 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Upward sea water velocity +'wo' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + } +#Time-mean upward sea water velocity +'avg_wo' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + typeOfStatisticalProcessing = 0 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Envelop-maximum individual wave height +'hmax' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } #Soil moisture 'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; } diff --git a/definitions/grib2/units.legacy.def b/definitions/grib2/units.legacy.def index efe70cc8c..6786ffc6b 100644 --- a/definitions/grib2/units.legacy.def +++ b/definitions/grib2/units.legacy.def @@ -1,254 +1,249 @@ -#Volumetric soil moisture content -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Upper layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Transpiration stress-onset (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } +# Automatically generated by ./create_def.pl, do not edit #Instantaneous eastward turbulent surface stress 'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - typeOfFirstFixedSurface = 1 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + typeOfFirstFixedSurface = 1 ; + } #Instantaneous northward turbulent surface stress 'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; -} -#Evaporation in the last 6 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; -} -#Time-mean evapotranspiration rate in the last 24h -'kg m**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 39 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated potential evapotranspiration rate in the last 24h -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean potential evapotranspiration rate in the last 24h -'kg m**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 40 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean volumetric soil moisture -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated water runoff and drainage rate in the last 24h -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Time-mean water runoff and drainage rate in the last 24h -'kg m**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 42 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean snow depth water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-mean skin temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; -} -#Time-integrated snow melt rate in the last 24h -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 41 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; -} -#Upward sea water velocity -'m s**-1' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; -} -#Time-mean upward sea water velocity -'m s**-1' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 168 ; - typeOfSecondFixedSurface = 168 ; - typeOfStatisticalProcessing = 0 ; -} -#Maximum individual wave height -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; -} -#Soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; -} -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + } #Minimum dew point depression 'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; -} + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } #Maximum relative humidity '%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } #Maximum absolute humidity 'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; -} + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } #Maximum wind speed 'm s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; -} + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } #Net long wave radiation flux (surface) 'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } #Net long wave radiation flux (top of atmosphere) 'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; -} + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } #Maximum snow albedo '%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; -} -#Soil temperature + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Volumetric soil moisture content +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Upper layer soil temperature 'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; -} + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Transpiration stress-onset (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Evaporation in the last 6 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Time-mean evapotranspiration rate in the last 24h +'kg m**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated potential evapotranspiration rate in the last 24h +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean potential evapotranspiration rate in the last 24h +'kg m**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 40 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean volumetric soil moisture +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated water runoff and drainage rate in the last 24h +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Time-mean water runoff and drainage rate in the last 24h +'kg m**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 42 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean snow depth water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-mean skin temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Time-integrated snow melt rate in the last 24h +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 41 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } +#Upward sea water velocity +'m s**-1' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + } +#Time-mean upward sea water velocity +'m s**-1' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 168 ; + typeOfSecondFixedSurface = 168 ; + typeOfStatisticalProcessing = 0 ; + } +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Envelop-maximum individual wave height +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } #Soil moisture 'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; } From 8581938ac41dd5ba798af064151e0514b2cb0b76 Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 25 Oct 2024 15:12:09 +0100 Subject: [PATCH 06/23] No need to check nullptr before calling free() --- src/grib_filepool.cc | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/grib_filepool.cc b/src/grib_filepool.cc index f651c590d..a55bb562c 100644 --- a/src/grib_filepool.cc +++ b/src/grib_filepool.cc @@ -423,14 +423,9 @@ void grib_file_delete(grib_file* file) // } //} - if (file->name) - free(file->name); - if (file->mode) - free(file->mode); - - if (file->buffer) { - free(file->buffer); - } + free(file->name); + free(file->mode); + free(file->buffer); grib_context_free(file->context, file); /* file = NULL; */ GRIB_MUTEX_UNLOCK(&mutex1); From 6180c42ef6a52a0b6f87b28f52e86742ee39508d Mon Sep 17 00:00:00 2001 From: shahramn Date: Mon, 28 Oct 2024 15:36:35 +0000 Subject: [PATCH 07/23] ECC-1898: Add more tests --- tests/grib_ecc-1898.sh | 13 +++++-------- tests/grib_uerra.sh | 11 +++++++++++ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/tests/grib_ecc-1898.sh b/tests/grib_ecc-1898.sh index 0c6aaf44f..6718dc868 100755 --- a/tests/grib_ecc-1898.sh +++ b/tests/grib_ecc-1898.sh @@ -28,14 +28,11 @@ grep -q '288-288 g2level level = 1000 \[vertical.level\]' $tempOut $tools_dir/grib_dump -p levelist -Da $tempGrib 2> $tempOut grep -q 'levelist: Key/value not found' $tempOut -set +e -$tools_dir/grib_get -p levelist $tempGrib 2> $tempOut -set -e -grep -q 'levelist (Key/value not found)' $tempOut +result=$($tools_dir/grib_get -fp levelist $tempGrib) +[ "$result" = "not_found" ] -set +e -$tools_dir/grib_get -p mars.levelist $tempGrib 2> $tempOut -set -e -grep -q 'mars.levelist (Key/value not found)' $tempOut +result=$($tools_dir/grib_get -fp mars.levelist $tempGrib) +[ "$result" = "not_found" ] +# Clean up rm -f $tempGrib $tempOut diff --git a/tests/grib_uerra.sh b/tests/grib_uerra.sh index 9b6ec7bd3..0c4c5a8da 100755 --- a/tests/grib_uerra.sh +++ b/tests/grib_uerra.sh @@ -98,5 +98,16 @@ $grib2_sample $temp1 grib_check_key_equals $temp1 'marsExpver,mars.expver' '0078 0078' +# Stream 'dame' +${tools_dir}/grib_set -s productionStatusOfProcessedData=10 $grib2_sample $temp1 +grib_check_key_equals $temp1 'mars.time,mars.step' '1200 0' + +${tools_dir}/grib_set -s \ + productionStatusOfProcessedData=10,productDefinitionTemplateNumber=8,outerLoopTypeOfTimeIncrement=1,outerLoopLengthOfTimeRange=21 \ + $grib2_sample $temp1 +grib_check_key_equals $temp1 'mars.stream' 'dame' +result=$(${tools_dir}/grib_get -fp mars.time,mars.step $temp1) +[ "$result" = "not_found not_found" ] + # Clean up rm -f $temp1 $temp2 $tempSample From df2b452ff14791c75e1d036964ad38b54b94a7cf Mon Sep 17 00:00:00 2001 From: shahramn Date: Tue, 29 Oct 2024 13:38:31 +0000 Subject: [PATCH 08/23] ECC-1954: GRIB1 to GRIB2 conversion does not preserve ensemble product template --- definitions/grib1/section.1.def | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index 244cbfc31..c4ee91b86 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -334,3 +334,10 @@ meta md5Product md5(offsetSection1,section1Length,gridDefinition,section1Flags,d # ECC-1806 concept_nofail paramIdForConversion(zero, "paramIdForConversion.def", conceptsDir2, conceptsDir1) : long_type,read_only; + +if (productDefinitionTemplateNumber == 0 && defined(perturbationNumber) && numberOfForecastsInEnsemble > 0) { + alias productDefinitionTemplateNumber = one; # ensemble instant +} +if (productDefinitionTemplateNumber == 8 && defined(perturbationNumber) && numberOfForecastsInEnsemble > 0) { + alias productDefinitionTemplateNumber = eleven; # ensemble interval +} From f9561ed7d4f8c5cb8187dbc060f1aeb35a441773 Mon Sep 17 00:00:00 2001 From: shahramn Date: Tue, 29 Oct 2024 16:26:56 +0000 Subject: [PATCH 09/23] ECC-1954: Test --- definitions/grib1/section.1.def | 1 + tests/grib1to2.sh | 24 +++++++++++++++++++----- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index c4ee91b86..3bc733b1f 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -335,6 +335,7 @@ meta md5Product md5(offsetSection1,section1Length,gridDefinition,section1Flags,d # ECC-1806 concept_nofail paramIdForConversion(zero, "paramIdForConversion.def", conceptsDir2, conceptsDir1) : long_type,read_only; +# ECC-1954 if (productDefinitionTemplateNumber == 0 && defined(perturbationNumber) && numberOfForecastsInEnsemble > 0) { alias productDefinitionTemplateNumber = one; # ensemble instant } diff --git a/tests/grib1to2.sh b/tests/grib1to2.sh index 46a73ecd6..b09103229 100755 --- a/tests/grib1to2.sh +++ b/tests/grib1to2.sh @@ -11,6 +11,7 @@ . ./include.ctest.sh REDIRECT=/dev/null +label="grib1to2_test" files="constant_field\ reduced_gaussian_pressure_level_constant \ @@ -29,6 +30,8 @@ files="constant_field\ spherical_pressure_level \ spherical_model_level " +tempLog=temp.$label.log + for f in `echo $files` do file=${data_dir}/$f @@ -53,7 +56,7 @@ done echo "ECC-457,ECC-1298 ECMWF total precipitation..." # --------------------------------------------------- input=${data_dir}/tp_ecmwf.grib -output=temp.grib1to2.grib +output=temp.$label.grib ${tools_dir}/grib_set -s edition=2 $input $output res=`${tools_dir}/grib_get -w count=1 -p edition,paramId,units $output` [ "$res" = "2 228 m" ] @@ -93,8 +96,8 @@ grib_check_key_equals $output shapeOfTheEarth 0 echo "ECC-1329: Cannot convert runoff (paramId=205)" # -------------------------------------------------------- -temp1="temp1.grib1to2.grib1" -temp2="temp2.grib1to2.grib2" +temp1="temp1.$label.grib1" +temp2="temp2.$label.grib2" ${tools_dir}/grib_set -s paramId=205,P1=240,marsType=fc $sample_g1 $temp1 ${tools_dir}/grib_set -s edition=2 $temp1 $temp2 grib_check_key_equals $temp2 discipline,stepType,shortName,paramId '2 accum ro 205' @@ -111,10 +114,20 @@ for sn in e lsp pev sro uvb; do ${tools_dir}/grib_compare -e -b param $temp1 $temp2 done + +echo "ECC-1954: preserve ensemble product template..." +# -------------------------------------------------------- +${tools_dir}/grib_set -s \ + indicatorOfParameter=49,P2=1,timeRangeIndicator=2,localDefinitionNumber=30,perturbationNumber=1,numberOfForecastsInEnsemble=51 \ + $sample_g1 $temp1 +${tools_dir}/grib_set -s edition=2 $temp1 $temp2 +grib_check_key_equals $temp2 productDefinitionTemplateNumber,perturbationNumber '11 1' + + # Turn on (brief) DEBUGGING messages sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl -output=temp.grib1to2.grib -ECCODES_DEBUG=-1 ${tools_dir}/grib_set -s edition=2 $sample_g1 $output +output=temp.$label.grib +ECCODES_DEBUG=-1 ${tools_dir}/grib_set -s edition=2 $sample_g1 $output > $tempLog 2>&1 # -G option sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl @@ -124,3 +137,4 @@ ${tools_dir}/grib_set -G -s edition=2 $sample_g1 $temp2 # Clean up rm -f $output rm -f $temp1 $temp2 +rm -f $tempLog From 3365fb536e66a1180113740095c85ccbe43df3ed Mon Sep 17 00:00:00 2001 From: shahramn Date: Tue, 29 Oct 2024 17:06:17 +0000 Subject: [PATCH 10/23] ECC-1954: Fix the padding test --- definitions/grib1/section.1.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index 3bc733b1f..beef92bbb 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -336,9 +336,9 @@ meta md5Product md5(offsetSection1,section1Length,gridDefinition,section1Flags,d concept_nofail paramIdForConversion(zero, "paramIdForConversion.def", conceptsDir2, conceptsDir1) : long_type,read_only; # ECC-1954 -if (productDefinitionTemplateNumber == 0 && defined(perturbationNumber) && numberOfForecastsInEnsemble > 0) { +if (productDefinitionTemplateNumber == 0 && defined(perturbationNumber) && defined(numberOfForecastsInEnsemble) && numberOfForecastsInEnsemble > 0) { alias productDefinitionTemplateNumber = one; # ensemble instant } -if (productDefinitionTemplateNumber == 8 && defined(perturbationNumber) && numberOfForecastsInEnsemble > 0) { +if (productDefinitionTemplateNumber == 8 && defined(perturbationNumber) && defined(numberOfForecastsInEnsemble) && numberOfForecastsInEnsemble > 0) { alias productDefinitionTemplateNumber = eleven; # ensemble interval } From 7112c139eccfb36cfe9effe347e7a99cfcfb4171 Mon Sep 17 00:00:00 2001 From: shahramn Date: Tue, 29 Oct 2024 17:29:02 +0000 Subject: [PATCH 11/23] Definitions: GRIB1 key numberOfForecastsInEnsemble --- definitions/grib1/local.98.19.def | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/grib1/local.98.19.def b/definitions/grib1/local.98.19.def index 7c9a4f613..5e3c27e64 100644 --- a/definitions/grib1/local.98.19.def +++ b/definitions/grib1/local.98.19.def @@ -12,6 +12,7 @@ alias perturbationNumber=number; unsigned[1] ensembleSize : dump; alias totalNumber=ensembleSize; +alias numberOfForecastsInEnsemble=ensembleSize; meta quantile sprintf("%s:%s",number,ensembleSize); From 3769fd7a64877f4fb58a6292894b5905b649a706 Mon Sep 17 00:00:00 2001 From: shahramn Date: Wed, 30 Oct 2024 10:41:59 +0000 Subject: [PATCH 12/23] Update list of keys and hash --- src/grib_hash_keys.cc | 14410 ++++++++++++++++++++++------------------ tests/keys | 4473 +++++++------ 2 files changed, 10050 insertions(+), 8833 deletions(-) diff --git a/src/grib_hash_keys.cc b/src/grib_hash_keys.cc index b6e389dc2..aa24e9aa6 100644 --- a/src/grib_hash_keys.cc +++ b/src/grib_hash_keys.cc @@ -1,6 +1,6 @@ /* ANSI-C code produced by gperf version 3.1 */ /* Command-line: gperf -l -C -I -t -G -H hash_keys -N grib_keys_hash_get -m 3 ../tests/keys */ -/* Computed positions: -k'1-16,19-20,23-26,28,$' */ +/* Computed positions: -k'1-16,19-20,23-26,28,32,$' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ @@ -31,15 +31,15 @@ #include "grib_api_internal.h" -struct grib_keys_hash { const char* name; int id;}; +struct grib_keys_hash { const char* name; int id; }; #include -#define TOTAL_KEYWORDS 2535 +#define TOTAL_KEYWORDS 2584 #define MIN_WORD_LENGTH 1 #define MAX_WORD_LENGTH 74 #define MIN_HASH_VALUE 5 -#define MAX_HASH_VALUE 31933 -/* maximum key range = 31929, duplicates = 0 */ +#define MAX_HASH_VALUE 38061 +/* maximum key range = 38057, duplicates = 0 */ #ifdef __GNUC__ __inline @@ -49,42 +49,48 @@ inline #endif #endif static unsigned int -hash_keys ( const char *str, size_t len) +hash_keys (const char *str, size_t len) { - static const unsigned short asso_values[] = + static const unsigned short asso_values[] = { - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 4, 31934, 31934, 3, 31934, 31934, 128, 2530, - 2404, 2966, 1876, 4070, 2455, 1706, 29, 8, 3, 2, - 2, 31934, 31934, 31934, 31934, 1215, 5157, 2523, 271, 2023, - 345, 5101, 4026, 1640, 545, 118, 46, 2382, 974, 289, - 1046, 28, 528, 161, 96, 4953, 1277, 3682, 373, 5709, - 2, 3, 2, 31934, 31934, 1817, 31934, 2, 372, 30, - 5, 3, 92, 103, 97, 8, 2721, 3959, 75, 3, - 2, 23, 18, 1060, 5, 14, 4, 48, 321, 249, - 1467, 224, 572, 5, 1867, 2, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, - 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934, 31934 + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 2, 38062, 38062, 2, 38062, 38062, 202, 2876, + 2227, 2754, 1876, 2072, 1935, 1016, 144, 14, 5, 2, + 4, 38062, 38062, 38062, 38062, 2577, 5544, 2312, 271, 1395, + 345, 5503, 3428, 1938, 312, 194, 46, 1936, 754, 289, + 969, 125, 759, 161, 96, 5557, 1710, 3538, 592, 5783, + 12, 2, 3, 38062, 38062, 2847, 38062, 2, 540, 30, + 5, 3, 92, 103, 97, 8, 3157, 2984, 75, 3, + 2, 23, 18, 1630, 5, 14, 4, 48, 321, 249, + 1698, 224, 577, 7, 2986, 5, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, + 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062, 38062 }; - unsigned int hval = len; + unsigned int hval = len; switch (hval) { default: + hval += asso_values[(unsigned char)str[31]]; + /*FALLTHROUGH*/ + case 31: + case 30: + case 29: + case 28: hval += asso_values[(unsigned char)str[27]]; /*FALLTHROUGH*/ case 27: @@ -159,7 +165,7 @@ hash_keys ( const char *str, size_t len) hval += asso_values[(unsigned char)str[0]]; break; } - return hval + asso_values[(unsigned char)str[len - 1]]; + return hval + asso_values[(unsigned char)str[len - 1]]; } static const unsigned char lengthtable[] = @@ -171,874 +177,1246 @@ static const unsigned char lengthtable[] = 6, 0, 4, 9, 7, 4, 7, 0, 0, 0, 7, 4, 4, 5, 9, 0, 0, 7, 0, 0, 0, 6, 0, 9, 0, 0, 5, 10, 0, 7, 9, 3, 6, 6, 10, 0, 0, 7, 2, 5, 10, 4, - 0, 9, 0, 0, 6, 8, 0, 0, 6, 10, 3, 3, 0, 0, - 10, 0, 8, 0, 5, 0, 4, 5, 5, 0, 9, 5, 7, 0, + 0, 9, 0, 0, 6, 0, 0, 0, 6, 10, 3, 3, 0, 0, + 10, 8, 8, 0, 5, 0, 4, 5, 5, 0, 9, 5, 7, 0, 10, 3, 7, 0, 4, 0, 7, 0, 8, 8, 0, 0, 9, 0, - 0, 6, 5, 4, 7, 10, 6, 0, 0, 0, 8, 0, 0, 10, + 0, 6, 5, 4, 7, 10, 6, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 6, 9, 0, 8, 0, 0, 0, 0, 0, 0, 10, 0, 0, 2, 0, 0, 9, 0, 10, 0, 7, 0, 0, 0, 0, 4, 0, 10, 4, 9, 0, 5, 5, 0, 6, 0, 0, 5, 0, 0, 8, 4, 0, 15, 9, 0, 7, 10, 0, 11, 1, 8, 0, 0, 0, 0, 0, 0, 10, 0, 10, 6, 10, 0, 7, 6, 0, - 5, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 8, 1, - 6, 10, 10, 0, 9, 4, 8, 0, 0, 17, 0, 0, 13, 12, + 5, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 8, 0, + 6, 10, 10, 0, 9, 4, 8, 0, 0, 17, 0, 0, 13, 0, 0, 7, 0, 10, 4, 0, 0, 10, 0, 0, 0, 0, 0, 8, 0, 11, 0, 0, 0, 6, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 5, 0, 0, 0, 2, 2, 9, 0, 7, 0, 0, 0, 0, 0, 5, 0, 0, 3, 0, 8, 5, 0, 0, 0, 10, 6, 2, 0, 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 9, 0, 9, 0, 11, 0, 0, 0, 6, - 0, 9, 0, 0, 0, 0, 9, 0, 8, 10, 0, 0, 0, 6, + 0, 9, 0, 0, 0, 0, 9, 0, 8, 10, 0, 0, 12, 6, 8, 12, 0, 0, 0, 7, 12, 0, 0, 20, 0, 0, 0, 0, 14, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 10, 8, 0, - 0, 4, 0, 5, 0, 9, 10, 7, 13, 0, 0, 0, 4, 8, - 10, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, - 0, 12, 0, 10, 7, 2, 10, 8, 0, 6, 0, 0, 0, 13, - 2, 2, 0, 8, 14, 0, 0, 0, 0, 0, 6, 6, 0, 0, - 0, 0, 19, 0, 10, 0, 10, 0, 2, 0, 6, 0, 0, 0, + 0, 4, 8, 5, 0, 0, 10, 7, 13, 0, 0, 1, 0, 8, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, + 0, 12, 0, 10, 0, 0, 10, 8, 0, 6, 0, 0, 0, 13, + 2, 0, 0, 8, 14, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 19, 0, 10, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 9, 0, 0, 2, 0, 0, 3, 0, 0, 18, - 0, 0, 0, 11, 0, 0, 9, 0, 0, 0, 0, 8, 0, 0, + 0, 0, 0, 11, 0, 0, 9, 0, 8, 0, 0, 8, 0, 9, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 13, 0, 24, 0, 14, 0, 2, 9, 0, 0, 11, 0, 8, 0, 10, 0, 0, 0, 0, 0, 0, 6, 5, 0, 0, 8, 12, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, - 3, 0, 0, 0, 11, 0, 14, 0, 0, 0, 17, 11, 11, 3, - 0, 0, 15, 0, 0, 0, 10, 16, 0, 0, 9, 5, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, + 3, 0, 0, 0, 11, 0, 0, 0, 0, 0, 17, 11, 11, 3, + 0, 0, 15, 0, 14, 0, 10, 16, 0, 0, 9, 5, 4, 0, 0, 0, 0, 0, 0, 0, 10, 7, 0, 0, 0, 0, 12, 0, - 0, 0, 8, 0, 0, 11, 14, 0, 11, 0, 0, 0, 10, 0, - 0, 13, 0, 0, 0, 3, 11, 0, 0, 12, 14, 0, 0, 0, - 0, 8, 0, 20, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 0, 8, 11, 15, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 4, 0, 17, 0, 15, 0, 5, 0, 17, 0, 0, 0, 0, 13, + 0, 0, 8, 0, 7, 11, 0, 0, 11, 0, 13, 0, 10, 0, + 0, 13, 0, 0, 0, 3, 11, 0, 0, 12, 14, 6, 0, 0, + 0, 8, 0, 20, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, + 0, 8, 0, 15, 0, 0, 0, 0, 0, 1, 13, 0, 0, 0, + 2, 0, 17, 0, 0, 4, 2, 0, 17, 0, 2, 5, 0, 13, 0, 0, 0, 0, 0, 8, 17, 0, 17, 23, 0, 0, 10, 0, - 7, 8, 14, 0, 2, 18, 0, 0, 12, 0, 7, 0, 0, 0, - 0, 0, 9, 0, 0, 12, 0, 0, 0, 0, 13, 0, 0, 14, - 0, 19, 0, 9, 13, 0, 0, 13, 0, 13, 12, 0, 0, 0, + 7, 0, 14, 0, 2, 18, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 13, 0, 0, 14, + 0, 0, 0, 19, 13, 0, 0, 13, 0, 13, 12, 0, 0, 0, 23, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 14, 0, 0, 0, 0, 2, 0, 3, 0, 0, 4, 0, - 18, 14, 0, 6, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 0, 0, - 13, 0, 12, 0, 0, 0, 15, 0, 0, 8, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 11, 0, 0, 0, 0, 17, 19, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 17, 0, 0, 24, 0, 0, 0, - 11, 0, 0, 0, 19, 0, 9, 15, 0, 0, 0, 0, 0, 10, - 0, 0, 0, 23, 9, 22, 0, 8, 10, 0, 0, 0, 0, 0, - 12, 0, 9, 0, 0, 7, 0, 14, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 25, 0, 12, 0, - 0, 2, 14, 0, 0, 0, 0, 0, 0, 12, 0, 9, 11, 12, + 17, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 4, 0, + 18, 14, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 11, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 17, + 8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 10, 0, 0, 0, 18, 5, 17, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 24, 0, 14, 0, + 11, 0, 0, 0, 19, 0, 0, 15, 0, 0, 0, 9, 0, 10, + 0, 0, 0, 23, 9, 22, 0, 8, 0, 0, 7, 0, 0, 10, + 12, 13, 9, 0, 0, 0, 0, 14, 2, 17, 0, 9, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 19, 0, 8, 25, 0, 12, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 12, + 0, 9, 9, 0, 0, 0, 0, 0, 8, 0, 0, 6, 8, 0, + 10, 0, 15, 6, 0, 7, 0, 0, 14, 9, 0, 0, 14, 0, + 0, 0, 31, 0, 0, 0, 10, 9, 0, 9, 9, 0, 0, 0, + 0, 0, 14, 0, 0, 12, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 15, + 0, 0, 0, 15, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 27, 0, 10, 13, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 14, 0, 0, 13, 0, 0, 0, 0, 9, 0, 0, 12, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 18, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 11, 0, + 0, 0, 24, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 12, 0, 0, 17, 22, 0, 0, 0, 0, 0, 0, 8, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 18, 0, + 10, 0, 0, 0, 0, 0, 0, 11, 21, 15, 0, 0, 0, 0, + 8, 13, 0, 0, 0, 15, 11, 0, 10, 21, 21, 0, 0, 0, + 0, 18, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 20, 10, 13, 0, 16, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 39, 0, + 0, 0, 0, 7, 21, 15, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 0, 15, 0, 0, 0, 0, 0, 14, 0, 0, 0, 14, 0, - 0, 11, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 15, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 27, 0, 0, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 27, 2, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 10, 19, - 0, 14, 0, 0, 5, 37, 0, 0, 0, 0, 0, 0, 12, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 11, 0, 0, 0, 18, - 0, 0, 0, 0, 0, 0, 10, 0, 0, 13, 0, 14, 0, 0, - 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 14, - 0, 0, 12, 0, 2, 17, 22, 9, 0, 0, 0, 12, 0, 0, - 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 18, 0, 18, 1, - 10, 0, 9, 0, 12, 10, 0, 0, 0, 15, 0, 9, 0, 0, - 0, 3, 0, 0, 0, 15, 11, 6, 8, 21, 21, 0, 0, 0, - 0, 18, 0, 0, 14, 0, 0, 0, 3, 0, 8, 10, 0, 0, - 22, 20, 0, 9, 0, 9, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 8, 39, 40, 0, 0, 0, 2, 3, - 0, 0, 0, 0, 21, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 30, 0, 8, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 15, 0, 10, 0, 0, 0, 0, 21, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, - 0, 0, 10, 16, 0, 0, 0, 12, 0, 0, 0, 0, 16, 12, - 0, 0, 14, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3, 0, 10, 0, 0, 0, 0, 0, 12, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 10, + 0, 0, 0, 16, 0, 0, 0, 12, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 10, 0, 0, + 0, 0, 0, 15, 0, 16, 0, 0, 0, 0, 20, 0, 0, 14, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 19, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 11, 0, 0, 0, 0, 0, + 11, 7, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 30, 0, 0, 0, 16, 0, 17, 0, 27, 23, + 0, 0, 10, 0, 0, 0, 0, 0, 15, 0, 0, 0, 15, 12, + 0, 0, 14, 0, 0, 0, 0, 0, 15, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 16, 0, 0, 0, 0, 0, 21, 31, 0, + 0, 0, 0, 0, 18, 21, 0, 31, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 11, 24, 0, 0, 11, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 9, 0, 44, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 17, 15, 0, 0, + 0, 3, 0, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 30, 9, 16, 14, 0, 15, + 11, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 19, 0, 0, 0, 31, 26, 0, 21, 0, 0, 0, 0, 11, + 21, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 16, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 3, 17, 0, 19, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 48, + 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 14, + 0, 0, 0, 57, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, - 0, 18, 0, 11, 0, 0, 0, 0, 0, 0, 0, 13, 0, 19, - 0, 0, 0, 21, 0, 0, 0, 0, 13, 0, 0, 6, 0, 0, - 11, 0, 0, 0, 12, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 10, 13, 0, 0, 0, 0, 0, 13, 0, 21, 0, 15, 0, 0, - 0, 30, 0, 0, 0, 0, 15, 0, 16, 0, 0, 0, 16, 0, - 0, 0, 24, 0, 23, 0, 14, 0, 11, 0, 0, 15, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 48, 8, 0, 0, 0, 0, 2, 15, 30, 30, - 0, 16, 0, 2, 0, 0, 0, 0, 0, 0, 0, 15, 27, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 10, 3, - 10, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 16, 12, 0, 0, 0, 0, 0, 31, 16, - 0, 0, 0, 0, 0, 0, 0, 31, 12, 0, 0, 0, 0, 0, - 0, 16, 9, 0, 30, 0, 23, 14, 23, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 12, 0, 23, 0, - 0, 15, 5, 0, 7, 20, 0, 0, 44, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, + 22, 0, 0, 37, 0, 12, 9, 0, 0, 5, 24, 7, 0, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 48, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 12, 0, 0, 18, 0, 0, 0, 30, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 3, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 27, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 16, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 23, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 10, + 0, 0, 0, 0, 0, 29, 0, 0, 0, 26, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 23, 11, 0, 0, 23, + 12, 23, 0, 0, 0, 0, 0, 23, 13, 0, 29, 20, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 14, 18, 0, 0, 20, 0, 24, 0, + 9, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0, 6, 0, 7, 0, 0, + 0, 9, 0, 15, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 0, 13, 0, 0, 10, 0, 10, 0, 0, 0, + 0, 0, 0, 0, 0, 32, 22, 0, 0, 0, 0, 0, 9, 0, + 13, 0, 0, 0, 0, 13, 11, 0, 0, 26, 0, 15, 0, 0, + 35, 23, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, + 0, 6, 12, 0, 0, 12, 12, 0, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 14, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 32, 0, 0, 0, 10, 0, 0, 27, 0, 14, 0, 34, 2, 0, + 0, 17, 0, 0, 0, 0, 0, 19, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 30, 0, 0, 10, 0, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 9, 11, 0, 0, 0, 0, 0, 0, 0, 0, - 48, 0, 27, 0, 0, 24, 0, 0, 14, 0, 11, 0, 0, 11, - 0, 0, 0, 0, 0, 0, 26, 0, 11, 8, 0, 0, 0, 0, - 21, 0, 0, 17, 15, 13, 0, 0, 0, 23, 0, 25, 18, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, + 0, 0, 23, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 15, 0, 28, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 10, 11, 0, 0, 23, 24, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 13, 39, 0, 0, + 0, 13, 15, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 19, 9, 0, 13, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 12, 0, 17, 0, 11, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 9, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 17, 0, - 0, 0, 13, 16, 0, 6, 0, 7, 0, 19, 6, 9, 0, 16, - 12, 0, 0, 0, 0, 7, 9, 0, 0, 26, 0, 0, 0, 0, - 0, 23, 0, 0, 0, 0, 10, 0, 0, 57, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 30, 0, 23, - 0, 0, 3, 0, 0, 19, 0, 0, 14, 32, 0, 0, 42, 18, - 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 8, 11, 13, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 0, 18, 0, 34, 0, 22, - 0, 15, 0, 19, 15, 0, 14, 13, 15, 0, 0, 0, 13, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 11, 0, 0, - 0, 12, 0, 0, 0, 0, 0, 0, 6, 0, 11, 0, 12, 0, - 0, 0, 0, 0, 14, 0, 0, 22, 0, 0, 0, 0, 18, 10, - 14, 31, 32, 0, 13, 6, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 20, 13, 0, 0, 0, 0, 0, 26, 35, 0, 12, - 0, 0, 14, 0, 0, 0, 15, 0, 31, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 20, 0, 8, 0, 0, 0, 15, 0, - 0, 0, 11, 0, 23, 0, 0, 0, 0, 0, 29, 19, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 11, 12, 1, 0, 0, 0, 13, 0, 39, 0, 0, 0, 18, - 0, 22, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 29, 0, - 0, 9, 0, 13, 0, 0, 0, 0, 12, 10, 11, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 19, - 0, 0, 3, 0, 0, 26, 0, 0, 0, 2, 0, 0, 9, 0, - 0, 0, 23, 0, 0, 18, 0, 0, 0, 14, 0, 0, 0, 13, - 15, 0, 2, 0, 0, 0, 0, 0, 26, 8, 0, 16, 0, 0, - 0, 0, 0, 19, 0, 25, 0, 0, 0, 0, 0, 10, 0, 0, - 27, 0, 0, 10, 9, 0, 13, 27, 10, 0, 10, 10, 25, 0, - 9, 0, 19, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 0, 0, 1, 32, 0, 5, 10, 12, 9, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 10, 0, 22, 0, 0, 0, - 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 31, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 18, 0, 0, + 0, 0, 19, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 14, 15, 0, 0, 0, 18, 0, 0, 0, 12, + 0, 16, 11, 0, 0, 0, 0, 0, 0, 0, 10, 0, 11, 0, + 0, 25, 0, 0, 0, 0, 0, 14, 0, 0, 0, 15, 32, 0, + 0, 0, 7, 0, 18, 0, 0, 0, 10, 0, 31, 19, 0, 0, + 11, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 10, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 14, 0, 12, 0, 0, 0, 0, 13, 26, + 22, 0, 0, 0, 10, 0, 28, 0, 0, 12, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 18, 0, 19, 0, 0, 0, 0, 0, 10, 9, 0, - 0, 0, 12, 13, 15, 0, 0, 0, 0, 0, 0, 0, 23, 18, - 0, 0, 15, 0, 0, 0, 30, 0, 0, 0, 0, 25, 0, 0, - 23, 0, 17, 0, 18, 0, 27, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 11, 9, 12, 0, 12, 0, 0, 0, 0, 21, 3, 20, - 0, 0, 0, 0, 0, 25, 10, 33, 0, 0, 10, 0, 0, 0, - 16, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 11, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 23, 0, - 0, 15, 12, 0, 0, 0, 0, 0, 0, 16, 0, 0, 14, 0, - 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 0, 0, 0, 0, 23, 0, 0, 6, 12, + 9, 0, 17, 13, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 15, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 27, 19, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 12, 0, 14, 0, 0, 0, 0, 0, + 18, 0, 0, 23, 0, 13, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 18, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 15, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 25, - 35, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 15, 0, 10, 0, 22, 0, 0, 0, - 0, 0, 0, 0, 3, 0, 0, 23, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 35, 0, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 23, 0, 14, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 21, 0, 0, 21, 0, 0, 16, - 0, 29, 11, 0, 0, 0, 0, 0, 22, 0, 0, 10, 0, 27, - 0, 24, 0, 0, 0, 0, 11, 0, 0, 0, 0, 21, 0, 19, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 18, - 0, 13, 10, 0, 0, 22, 25, 32, 0, 9, 0, 0, 12, 0, - 0, 0, 0, 0, 0, 22, 13, 0, 10, 0, 0, 28, 10, 0, - 0, 33, 38, 0, 23, 13, 0, 0, 0, 30, 0, 31, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, - 0, 27, 0, 0, 22, 0, 9, 11, 16, 0, 0, 0, 17, 42, - 0, 0, 0, 0, 19, 0, 10, 0, 0, 0, 0, 0, 16, 0, - 0, 15, 17, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 13, 10, 6, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 18, 11, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 9, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 16, 0, 0, 0, 0, 0, 0, 0, 23, + 0, 18, 13, 0, 0, 11, 22, 0, 0, 0, 0, 0, 11, 27, + 0, 11, 30, 0, 0, 0, 0, 0, 0, 0, 15, 0, 10, 0, + 6, 0, 0, 33, 25, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 12, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 13, 0, 0, 0, 10, 0, 0, 15, 10, + 0, 23, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 20, 0, 13, 19, 0, 0, 0, 0, 8, 0, 0, 22, 0, + 20, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 21, 0, 0, 0, 0, 23, 0, 0, 0, 22, 22, 0, 15, + 0, 0, 0, 18, 0, 0, 0, 0, 12, 0, 25, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 9, 0, 13, 0, 0, 0, 17, 0, 24, 0, 0, 0, 31, - 0, 0, 0, 0, 12, 0, 0, 13, 0, 0, 0, 23, 0, 0, - 14, 18, 16, 0, 2, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 19, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 13, 0, 28, 0, 0, 0, 0, 9, - 0, 0, 11, 0, 0, 16, 0, 39, 0, 0, 0, 0, 0, 12, - 0, 0, 13, 15, 0, 0, 0, 15, 0, 0, 0, 12, 0, 31, - 0, 24, 20, 0, 12, 0, 15, 0, 10, 0, 0, 0, 0, 30, - 22, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 38, - 42, 0, 18, 0, 21, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 13, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 14, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 11, - 30, 11, 0, 0, 16, 0, 16, 0, 19, 13, 26, 0, 0, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 18, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 15, 0, 15, 0, 0, 16, 0, 0, 0, 22, - 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 18, 2, 3, 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, - 0, 0, 12, 0, 12, 0, 23, 0, 0, 0, 0, 0, 0, 0, - 2, 23, 7, 20, 9, 0, 0, 0, 0, 17, 0, 37, 0, 0, - 14, 0, 18, 0, 0, 0, 0, 0, 34, 0, 19, 0, 0, 0, - 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, - 0, 10, 21, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 16, 15, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 20, 13, 0, 0, 0, 0, 0, 14, 0, - 34, 0, 2, 0, 15, 0, 0, 0, 0, 0, 0, 20, 0, 17, - 0, 0, 0, 0, 0, 12, 0, 13, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 29, 22, 0, 0, 30, 0, 0, 0, 26, 0, - 0, 0, 22, 0, 13, 0, 0, 0, 0, 0, 18, 16, 23, 10, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 6, 0, 0, 0, 0, - 0, 22, 27, 0, 0, 0, 0, 0, 0, 0, 15, 32, 15, 28, - 0, 0, 0, 0, 0, 31, 0, 0, 0, 24, 0, 17, 0, 0, - 0, 2, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 20, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 11, 0, - 0, 0, 0, 0, 0, 28, 17, 0, 0, 28, 0, 25, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 14, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 22, 0, 0, 0, 17, 15, - 0, 0, 0, 0, 36, 30, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 28, 31, 0, 0, - 0, 0, 0, 0, 17, 15, 0, 0, 0, 21, 0, 0, 0, 17, - 0, 9, 0, 15, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 22, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 19, 0, 19, 0, 0, 0, 0, 0, 24, 29, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 28, 17, 0, 0, 0, 0, 12, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 9, 0, 24, - 23, 0, 5, 0, 0, 0, 0, 0, 0, 0, 21, 0, 23, 0, - 0, 0, 0, 13, 0, 0, 24, 0, 18, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 24, 0, 0, 0, 0, 0, 17, 0, 31, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 19, 26, 35, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 4, 0, 8, 0, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, - 13, 22, 2, 0, 0, 0, 40, 0, 14, 0, 16, 0, 21, 0, - 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 48, 0, 0, 20, 0, 0, 30, 0, 0, - 0, 0, 0, 0, 29, 16, 4, 0, 0, 0, 0, 0, 0, 23, - 31, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 26, 0, 24, 0, 0, 0, 0, 0, 0, 38, 31, - 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 18, 0, - 0, 42, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 11, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 3, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 8, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, 0, 0, 37, 0, 0, 0, 0, 21, 13, 0, - 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, - 0, 27, 0, 0, 0, 0, 0, 0, 0, 25, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, - 0, 21, 0, 0, 0, 18, 17, 14, 24, 12, 0, 0, 0, 0, - 0, 0, 25, 30, 20, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 30, 14, 0, 0, 6, 24, 0, 0, 0, 0, 0, 0, - 0, 0, 37, 0, 0, 0, 0, 0, 0, 12, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 20, 0, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 14, 0, - 19, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 25, 0, 15, - 21, 0, 16, 18, 0, 0, 30, 14, 0, 0, 0, 14, 0, 0, - 14, 37, 0, 0, 0, 29, 0, 3, 0, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, - 0, 12, 35, 0, 0, 0, 31, 0, 0, 0, 0, 15, 0, 0, - 0, 15, 0, 0, 23, 0, 0, 0, 0, 15, 25, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 33, 24, 0, 0, 0, 0, 4, 23, 15, 0, 0, 0, 15, 0, - 0, 13, 0, 33, 0, 0, 0, 26, 24, 31, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 20, 13, 0, - 0, 0, 33, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 15, - 0, 0, 0, 15, 0, 0, 22, 0, 0, 26, 0, 0, 14, 0, - 18, 0, 0, 0, 0, 0, 13, 0, 0, 8, 0, 15, 10, 0, - 36, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 11, 0, - 0, 0, 0, 0, 18, 21, 0, 0, 0, 0, 0, 10, 0, 16, - 27, 0, 0, 0, 14, 27, 0, 16, 16, 0, 0, 0, 0, 0, - 18, 0, 0, 14, 0, 0, 0, 0, 0, 0, 16, 14, 0, 17, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 14, 0, 33, - 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 18, 0, 15, 0, 0, 0, - 0, 0, 47, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 26, 0, 29, 18, - 18, 0, 31, 0, 0, 17, 0, 0, 0, 34, 0, 0, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 14, 0, - 13, 0, 0, 0, 0, 15, 20, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 23, 0, 13, 0, 7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 11, 32, 0, 12, 0, - 0, 0, 0, 0, 17, 0, 18, 0, 31, 9, 0, 0, 22, 0, - 15, 0, 0, 0, 11, 0, 15, 11, 13, 0, 0, 0, 35, 11, - 15, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, - 0, 0, 10, 15, 0, 23, 0, 0, 0, 6, 0, 0, 7, 19, - 0, 0, 14, 31, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 12, 0, 0, 23, 0, 0, 0, 0, 0, 15, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 14, 0, - 0, 14, 0, 10, 0, 0, 0, 0, 0, 46, 12, 0, 0, 0, - 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 15, 29, 14, - 17, 14, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, - 18, 0, 18, 15, 34, 0, 0, 0, 7, 0, 16, 19, 4, 0, - 0, 0, 0, 0, 19, 0, 42, 0, 13, 0, 0, 0, 0, 13, - 0, 16, 25, 0, 15, 0, 0, 0, 0, 0, 20, 0, 0, 0, - 0, 0, 0, 0, 18, 20, 0, 0, 22, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 13, 0, 0, 0, 24, 0, 15, 0, 15, - 0, 0, 12, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 35, - 11, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 11, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 10, 23, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 22, 0, 10, 17, 0, 0, 23, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 19, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 32, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 12, - 0, 0, 22, 0, 0, 0, 0, 19, 0, 0, 0, 21, 29, 22, - 27, 0, 0, 0, 25, 0, 29, 9, 14, 11, 0, 0, 14, 0, - 23, 24, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 11, - 0, 0, 0, 0, 13, 0, 0, 0, 28, 0, 0, 0, 13, 0, - 0, 0, 23, 28, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 30, 0, 0, 0, 18, 13, 0, 0, 16, 0, 0, 22, 0, 31, - 32, 39, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 20, 0, - 0, 0, 0, 0, 0, 1, 0, 0, 24, 0, 22, 0, 0, 0, - 0, 15, 0, 26, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, - 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 24, 0, 2, 0, 26, 0, - 0, 0, 0, 0, 0, 0, 12, 25, 17, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 13, 3, - 0, 0, 0, 0, 0, 0, 15, 0, 32, 15, 0, 0, 6, 0, - 30, 3, 0, 0, 21, 13, 0, 4, 0, 0, 0, 12, 20, 0, - 0, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 14, 0, 0, - 4, 0, 0, 0, 0, 25, 0, 12, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 27, 0, 15, 0, 0, 0, - 19, 0, 14, 0, 0, 0, 0, 0, 2, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 27, 0, 0, 15, 0, 0, 0, 14, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, - 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, - 0, 0, 0, 9, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 33, 0, 33, 0, 0, 0, 0, - 0, 0, 12, 0, 14, 0, 0, 0, 0, 0, 14, 0, 0, 13, - 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 3, - 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, - 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 28, 0, 13, - 0, 0, 0, 0, 6, 0, 16, 0, 3, 0, 12, 0, 0, 34, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 0, 20, 8, 0, 0, 0, 0, 0, 0, 6, 0, 27, - 17, 0, 9, 0, 0, 0, 17, 0, 0, 0, 9, 0, 0, 73, - 74, 0, 9, 2, 0, 0, 19, 0, 0, 11, 0, 0, 0, 0, - 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 23, 18, 0, 0, 13, 0, 0, 0, 14, 0, 0, 0, - 20, 27, 0, 10, 0, 0, 0, 0, 0, 23, 22, 33, 0, 0, - 0, 50, 24, 22, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 9, 0, 0, 20, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 21, 0, 37, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 14, 0, 11, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 15, 0, - 0, 6, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 18, 11, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 43, 11, 29, 15, 0, 0, 9, 0, 13, 0, - 14, 0, 9, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, - 0, 0, 0, 12, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 15, - 0, 0, 21, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 0, 3, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 33, 16, 0, 11, 16, 0, 0, 0, 14, 0, - 0, 0, 22, 11, 0, 34, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 24, - 0, 0, 16, 27, 0, 0, 29, 0, 0, 15, 0, 12, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 19, 0, 0, 0, 9, 0, 0, 8, 0, 0, 31, 20, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 28, 0, 26, 0, 0, 0, 19, 0, 0, 25, 0, 27, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, - 0, 30, 0, 2, 15, 25, 12, 0, 0, 0, 0, 7, 0, 0, - 0, 14, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 25, 0, 11, 0, 2, 0, 0, 23, 0, 0, 0, - 0, 0, 0, 2, 24, 0, 0, 0, 0, 0, 10, 22, 0, 18, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 21, 0, 15, 0, - 28, 0, 2, 0, 0, 0, 0, 15, 24, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, - 26, 0, 32, 0, 0, 10, 13, 0, 0, 0, 0, 32, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 14, 0, 29, 0, 6, 0, - 13, 0, 0, 0, 34, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 2, 0, 0, 0, 12, 0, 14, 12, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 12, 0, 0, 0, 0, - 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 38, 0, 0, 0, 0, 0, 21, 0, 0, 32, 0, 24, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 12, 0, 19, - 30, 0, 0, 0, 0, 28, 11, 0, 0, 32, 0, 0, 0, 0, - 2, 18, 9, 0, 0, 0, 0, 0, 19, 0, 11, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 35, 0, 15, 0, 0, 0, 0, - 0, 30, 15, 3, 0, 0, 23, 31, 0, 0, 31, 0, 0, 0, - 21, 0, 6, 0, 18, 30, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 16, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 16, 15, 0, 0, 0, 0, 14, 26, 22, 0, 0, 24, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 11, 23, 0, 6, 14, - 0, 0, 2, 0, 32, 25, 0, 0, 0, 0, 0, 0, 34, 0, - 19, 0, 0, 28, 0, 0, 0, 28, 0, 4, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 14, 0, 0, 30, 0, 8, - 0, 0, 23, 0, 2, 18, 0, 25, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 32, 11, 0, 0, - 6, 12, 0, 19, 22, 13, 0, 11, 0, 0, 0, 13, 25, 0, - 0, 0, 0, 12, 0, 0, 0, 0, 0, 17, 0, 0, 8, 29, - 0, 20, 8, 16, 0, 0, 0, 0, 0, 0, 0, 13, 34, 0, - 0, 27, 0, 0, 11, 14, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 34, 0, 28, 0, 13, 0, 0, 0, 0, 0, 28, 0, 0, - 0, 19, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 30, - 0, 0, 31, 0, 0, 0, 0, 13, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 19, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 17, 0, 0, 43, - 0, 0, 0, 0, 0, 0, 0, 22, 23, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 34, 0, 0, 8, 0, 0, 0, 21, 0, - 0, 11, 0, 0, 0, 25, 0, 0, 0, 0, 38, 0, 0, 0, - 9, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 19, 26, - 11, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 29, 0, 0, - 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 29, 39, 30, 0, 0, 0, 0, 0, - 0, 53, 0, 0, 0, 28, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 39, 0, 31, 0, 15, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 16, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 14, 43, 0, 0, 38, 0, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 16, 0, 0, 0, 0, 19, 23, - 29, 0, 0, 18, 0, 23, 31, 0, 0, 13, 7, 0, 0, 0, - 27, 0, 30, 0, 0, 0, 18, 0, 35, 0, 0, 0, 0, 0, - 0, 0, 32, 0, 0, 0, 14, 0, 0, 13, 0, 21, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 12, 0, 0, 0, 22, - 0, 14, 0, 0, 0, 0, 0, 17, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 30, 44, 0, 0, 7, 15, 11, 0, 0, 16, - 0, 0, 10, 33, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 18, 0, 36, 3, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 24, 0, 0, 15, - 14, 0, 0, 0, 0, 0, 0, 21, 15, 0, 17, 28, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 9, 24, - 11, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 20, 0, 0, - 19, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 23, 0, 2, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 5, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 22, 0, 0, 24, 32, 0, 0, 21, 0, 29, 19, 0, - 0, 0, 9, 0, 0, 0, 0, 13, 0, 0, 41, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 27, 0, - 0, 10, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 14, 0, 20, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, - 14, 0, 0, 25, 0, 0, 0, 24, 0, 0, 0, 28, 0, 0, - 0, 0, 26, 0, 15, 0, 0, 12, 0, 0, 21, 0, 18, 0, - 0, 0, 0, 3, 15, 10, 0, 8, 0, 19, 0, 0, 23, 24, - 0, 0, 0, 12, 0, 0, 0, 0, 16, 0, 0, 24, 9, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 27, 0, 0, 0, 0, - 11, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 21, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, - 0, 0, 0, 24, 0, 0, 19, 0, 0, 0, 30, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 37, 31, 0, 0, 0, 0, 10, - 14, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, - 35, 12, 15, 0, 0, 0, 15, 23, 14, 0, 0, 0, 0, 0, - 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 7, 12, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, - 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 29, 17, - 0, 0, 0, 0, 0, 8, 0, 24, 0, 0, 0, 0, 11, 0, - 0, 0, 0, 25, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 12, 0, 23, 0, 0, 0, 0, 0, - 0, 11, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 30, 0, 35, 0, 0, 13, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 19, 0, - 24, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, - 14, 0, 0, 0, 15, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 29, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 20, 0, 0, 0, - 22, 0, 0, 0, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 43, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, - 0, 0, 28, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 31, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 72, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 12, 14, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, - 0, 0, 0, 0, 0, 0, 8, 0, 35, 0, 0, 0, 22, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 24, 0, 22, 0, 30, 0, 0, 14, 0, 0, 0, 0, - 12, 34, 0, 23, 0, 33, 22, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 18, 13, 23, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 9, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, - 25, 20, 0, 23, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, - 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 35, - 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 0, 0, 14, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 26, 0, 0, - 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 31, 0, 0, - 0, 24, 29, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 29, 0, - 0, 0, 0, 0, 18, 10, 4, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, - 0, 0, 0, 16, 29, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 28, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 19, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 0, 21, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, - 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 14, 0, 0, 29, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 14, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 29, 21, 31, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 22, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 19, 0, 27, - 30, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 36, 0, 0, 27, 0, 0, 0, 0, - 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, - 0, 28, 0, 0, 0, 11, 0, 33, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 13, 7, 0, 0, 29, 0, 0, - 30, 0, 0, 0, 0, 30, 0, 27, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 43, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6, - 43, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 33, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 14, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, - 15, 0, 0, 0, 0, 18, 0, 0, 0, 18, 14, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 17, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 18, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 30, 0, 0, 0, 17, 0, 0, 0, 0, - 37, 26, 0, 0, 11, 0, 0, 0, 0, 23, 10, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 25, - 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 14, 0, 0, 0, 0, 0, 0, - 16, 16, 0, 0, 0, 0, 0, 0, 0, 35, 27, 0, 0, 0, - 0, 18, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, - 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 17, 0, 0, - 0, 0, 20, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 17, 25, 19, 0, 0, 23, 20, 0, 0, 0, - 0, 0, 0, 0, 32, 0, 0, 0, 0, 35, 27, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 36, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 14, 0, 36, 0, 27, 14, 0, 0, 0, 0, 0, 33, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 30, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 20, 0, 0, 0, 0, 18, 20, 0, 33, 35, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 20, 0, 17, 0, 0, 16, 0, + 0, 0, 32, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 25, 35, 0, + 0, 0, 0, 0, 0, 0, 19, 16, 13, 0, 0, 0, 0, 0, + 0, 0, 8, 9, 0, 0, 0, 25, 0, 0, 0, 0, 17, 11, + 0, 0, 0, 15, 0, 0, 0, 0, 6, 16, 0, 0, 0, 0, + 23, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 13, 0, 0, + 20, 0, 18, 0, 0, 0, 0, 27, 0, 9, 11, 0, 17, 0, + 0, 0, 0, 10, 14, 15, 0, 19, 0, 0, 0, 19, 0, 0, + 22, 42, 0, 0, 0, 17, 0, 22, 0, 29, 0, 0, 11, 31, + 0, 12, 0, 2, 0, 15, 9, 0, 0, 0, 0, 4, 0, 0, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 0, 38, 0, 0, 0, 0, 0, 0, 21, 26, + 0, 0, 0, 15, 0, 0, 21, 0, 12, 0, 0, 10, 9, 0, + 0, 17, 10, 15, 10, 10, 0, 22, 0, 18, 0, 0, 15, 9, + 0, 0, 0, 0, 15, 0, 0, 0, 21, 20, 0, 0, 18, 0, + 8, 0, 0, 0, 15, 0, 4, 9, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 15, 0, + 14, 11, 10, 0, 0, 0, 32, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 11, 24, 10, 0, 3, 31, 0, 0, 0, + 10, 0, 0, 0, 0, 13, 28, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 24, 0, 28, 14, 0, 4, 0, 0, 0, + 0, 0, 0, 19, 0, 20, 0, 11, 0, 21, 12, 0, 0, 0, + 0, 0, 19, 18, 0, 25, 15, 0, 9, 9, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 13, 0, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 14, 0, 0, 0, 0, 29, 0, 14, 24, 0, 0, + 0, 14, 0, 31, 0, 0, 3, 0, 0, 0, 20, 0, 0, 30, + 3, 0, 0, 0, 0, 0, 28, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 13, 0, 0, 0, 0, 0, 0, 17, 13, 0, 0, 0, + 0, 7, 0, 18, 0, 22, 0, 0, 17, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 20, 0, 26, 17, 33, 11, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 11, 0, + 0, 0, 17, 23, 30, 0, 3, 0, 15, 0, 0, 19, 15, 31, + 0, 0, 0, 0, 0, 12, 23, 0, 0, 0, 18, 0, 0, 30, + 6, 0, 0, 0, 12, 0, 0, 14, 0, 0, 23, 0, 0, 0, + 0, 2, 3, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 34, 0, 0, 0, 0, 0, 0, 31, 0, + 0, 10, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, + 2, 16, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 10, 0, 30, 0, 0, 0, 21, 30, 0, 0, 0, + 0, 0, 0, 3, 0, 0, 18, 10, 42, 0, 0, 0, 0, 13, + 0, 17, 0, 0, 28, 0, 3, 3, 0, 0, 29, 0, 12, 7, + 0, 0, 18, 4, 0, 0, 0, 22, 22, 0, 0, 18, 0, 20, + 11, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 3, 0, + 0, 10, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 29, 0, 0, 3, 15, 0, 0, 0, 20, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 30, 0, 0, 0, 0, 0, 36, 22, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 35, - 0, 0, 0, 11, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 24, 0, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 24, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 35, 27, 0, - 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 27, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 36, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 25, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 14, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, - 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 21, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 29, 11, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 31, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, - 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 15, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 20, 22, 0, 0, 0, 0, 0, 0, 9, 0, 9, 0, - 0, 0, 0, 0, 0, 0, 0, 7, 0, 31, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 20, 17, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 26, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 19, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 20, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 33, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, - 0, 26, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 27, 11, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 14, 0, - 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 25, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 17, 0, 0, 26, 0, 20, 11, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 11, 16, + 0, 10, 20, 0, 32, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 37, 0, 0, 16, 0, 29, 11, 12, 0, 0, 0, 28, 0, + 15, 0, 23, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 23, 0, 0, 24, 0, 0, 22, 15, 0, 0, 16, + 0, 0, 0, 0, 14, 29, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 12, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 11, 0, 0, 15, 0, 0, 13, 9, + 21, 14, 0, 0, 0, 0, 16, 15, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 0, 17, 0, 13, 13, 0, 12, 0, 13, + 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 29, 0, 0, 0, 18, 22, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 10, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 30, 15, 6, 0, 0, 15, 0, 16, 13, 0, + 47, 24, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 24, 20, + 0, 0, 0, 0, 23, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 17, 0, 27, 0, 0, 0, 0, 0, 8, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, + 0, 22, 0, 0, 18, 0, 32, 15, 0, 1, 0, 0, 0, 16, + 0, 15, 18, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 18, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 12, + 30, 0, 0, 0, 11, 31, 0, 0, 27, 13, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 0, 21, 0, 0, 35, 0, 22, 26, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 13, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 28, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 25, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 23, 0, 21, 9, 0, 0, 0, 0, 0, 18, 0, 0, 48, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, + 0, 34, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 26, 0, + 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 18, 25, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 13, 0, 20, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, + 15, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 19, 14, + 0, 11, 0, 0, 0, 0, 0, 16, 0, 13, 0, 35, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 14, 0, + 0, 0, 0, 26, 33, 20, 0, 0, 0, 16, 0, 0, 0, 18, + 0, 0, 0, 19, 2, 0, 13, 0, 0, 21, 13, 3, 0, 17, + 16, 0, 15, 14, 0, 0, 0, 0, 0, 11, 36, 0, 0, 10, + 0, 3, 0, 0, 0, 0, 28, 38, 10, 20, 0, 0, 0, 0, + 0, 0, 0, 15, 13, 30, 0, 28, 0, 37, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 18, 0, 8, 0, 0, 0, 0, 0, + 0, 37, 23, 0, 15, 25, 0, 0, 0, 0, 15, 0, 0, 15, + 0, 0, 0, 27, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 11, 14, 13, 14, 0, 15, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 45, 0, + 0, 0, 17, 0, 0, 14, 0, 15, 18, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 13, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 29, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 35, 13, + 15, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 23, 0, 0, 33, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, - 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 33, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 15, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 25, 0, 0, 0, 0, 20, 0, 0, 0, 25, 0, 0, 16, - 0, 0, 6, 0, 0, 0, 2, 0, 0, 0, 22, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 16, 0, 0, 0, 37, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 28, - 0, 0, 16, 0, 0, 0, 0, 0, 15, 0, 0, 14, 0, 0, - 0, 0, 0, 0, 19, 0, 2, 0, 0, 0, 0, 0, 37, 0, - 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 37, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 36, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 15, 0, 0, 0, 17, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 22, 17, 0, 12, 11, 0, 0, 0, 18, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 2, 0, 14, 0, 0, 0, 19, 24, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, + 13, 0, 0, 0, 23, 0, 0, 0, 0, 3, 8, 20, 0, 0, + 0, 0, 0, 0, 33, 0, 20, 0, 6, 0, 0, 3, 0, 0, + 0, 0, 42, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 25, + 0, 11, 11, 0, 40, 0, 0, 0, 0, 0, 0, 26, 12, 14, + 0, 0, 0, 0, 0, 11, 0, 15, 22, 0, 0, 0, 0, 0, + 32, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 22, 0, 34, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 19, 0, 16, 0, 0, 0, 0, 11, 0, 0, 0, 20, + 0, 7, 21, 0, 0, 0, 0, 35, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 29, 0, 0, 0, 28, 0, 0, + 0, 0, 24, 0, 13, 13, 0, 0, 0, 0, 15, 0, 0, 15, + 15, 0, 0, 0, 29, 0, 0, 0, 23, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 6, 14, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, + 0, 0, 12, 0, 0, 0, 21, 0, 0, 33, 0, 0, 0, 16, + 0, 27, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 12, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 30, + 0, 0, 24, 0, 0, 31, 0, 0, 0, 0, 14, 0, 0, 0, + 33, 26, 0, 0, 0, 0, 9, 0, 17, 0, 0, 0, 9, 0, + 0, 0, 0, 11, 13, 0, 21, 13, 0, 0, 0, 24, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 21, 0, 23, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 0, 32, 0, 0, 34, 0, 0, 25, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 24, + 0, 0, 0, 14, 0, 0, 0, 25, 0, 11, 0, 0, 0, 0, + 0, 0, 9, 17, 0, 0, 14, 0, 0, 0, 0, 27, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, + 0, 0, 50, 0, 0, 0, 0, 0, 13, 0, 26, 0, 35, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 18, 12, 16, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 18, + 15, 0, 0, 0, 12, 31, 0, 0, 2, 0, 0, 0, 0, 39, + 20, 0, 25, 0, 0, 0, 29, 39, 0, 0, 0, 12, 0, 0, + 0, 34, 16, 15, 0, 0, 24, 15, 0, 0, 15, 0, 0, 0, + 0, 0, 4, 11, 15, 0, 14, 0, 0, 0, 14, 0, 0, 0, + 0, 16, 37, 4, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 12, 0, 19, 0, 0, 18, 0, 0, 0, 0, + 0, 0, 18, 23, 0, 22, 0, 0, 0, 0, 0, 0, 32, 0, + 0, 0, 12, 17, 0, 13, 0, 0, 14, 0, 0, 0, 33, 0, + 33, 18, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 42, 0, 0, 10, 12, 0, 0, 0, + 16, 0, 0, 17, 13, 0, 19, 0, 7, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 23, 16, 0, 11, 12, 0, 0, 25, 0, 0, 0, + 0, 0, 13, 0, 0, 34, 0, 0, 0, 0, 0, 0, 29, 0, + 0, 0, 0, 12, 0, 0, 20, 25, 21, 0, 0, 0, 0, 0, + 20, 15, 27, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 16, 0, 0, 0, 0, 14, 0, + 0, 0, 10, 0, 27, 23, 0, 0, 0, 0, 0, 0, 0, 22, + 0, 0, 43, 0, 23, 0, 28, 0, 0, 21, 0, 0, 19, 0, + 0, 0, 0, 0, 28, 0, 0, 32, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 26, 17, 0, 22, 0, 27, 0, + 14, 0, 0, 0, 19, 0, 21, 0, 22, 7, 0, 0, 15, 22, + 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 19, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 12, + 0, 31, 12, 0, 0, 0, 0, 2, 0, 0, 0, 26, 0, 0, + 0, 14, 0, 14, 0, 0, 0, 29, 0, 11, 0, 9, 0, 0, + 0, 0, 0, 38, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 18, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 12, 26, 16, 0, 0, 0, 13, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 0, 0, 29, 43, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 17, 0, 0, 0, 0, 3, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 15, 6, 0, + 8, 0, 0, 0, 14, 0, 10, 0, 11, 15, 0, 31, 9, 0, + 0, 0, 73, 74, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 16, 13, 0, 0, 0, 15, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 12, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 34, 9, 14, 0, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 12, 0, 12, 9, 36, 0, + 37, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 15, 0, 0, 0, 12, 0, 0, 0, 19, + 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 22, + 0, 0, 12, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 11, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 30, 15, 17, 31, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 31, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3, 32, 23, 0, 0, 0, 0, 6, 0, + 0, 32, 0, 0, 6, 0, 0, 3, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 23, 6, 2, 0, 30, + 3, 0, 24, 0, 0, 11, 4, 2, 0, 0, 0, 27, 0, 35, + 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 33, + 0, 25, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 42, 0, 0, 0, 12, 9, 0, 0, 0, 9, 0, 24, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 19, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 26, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 24, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 23, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 18, 0, 27, 0, 0, 0, 0, 0, 11, 28, 0, 17, 4, + 14, 12, 0, 0, 0, 18, 22, 6, 0, 0, 0, 31, 0, 0, + 27, 0, 0, 0, 0, 11, 9, 13, 0, 0, 0, 0, 23, 0, + 0, 0, 4, 0, 0, 0, 15, 11, 25, 11, 14, 0, 0, 0, + 13, 0, 25, 0, 18, 0, 0, 6, 0, 0, 0, 17, 0, 0, + 16, 32, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 24, 0, 20, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 23, 0, 27, 0, 0, 11, 0, + 0, 15, 0, 0, 0, 30, 14, 0, 0, 0, 31, 0, 0, 0, + 0, 18, 9, 0, 34, 0, 0, 7, 9, 0, 0, 0, 0, 0, + 11, 15, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 10, 20, 0, 18, 17, 15, 0, 0, + 0, 18, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 0, 0, 31, 0, 0, 0, 0, 0, + 0, 23, 0, 13, 0, 0, 0, 0, 27, 0, 0, 11, 0, 0, + 0, 0, 0, 0, 0, 10, 0, 0, 0, 15, 28, 0, 0, 0, + 13, 0, 15, 0, 0, 20, 0, 0, 0, 0, 26, 15, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 0, 32, 28, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 14, 30, 0, 12, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 16, 16, 0, 0, 0, 0, 0, 0, 34, 0, 14, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, - 0, 13, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, + 17, 0, 18, 0, 0, 0, 0, 16, 0, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 25, 0, 0, 0, 8, 0, 13, 0, 0, + 24, 23, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 13, 0, 0, 18, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 14, 0, 0, 0, + 14, 0, 26, 0, 0, 0, 9, 0, 11, 0, 0, 0, 20, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 15, 31, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 13, 13, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 16, + 0, 12, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 18, 0, 0, 0, 0, 0, 0, 0, 18, 11, 0, 0, + 0, 13, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 15, 0, + 0, 14, 0, 0, 14, 21, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 30, 2, 31, 19, 0, 0, 0, 0, + 35, 21, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 32, 0, 0, 0, 28, 0, 0, 11, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 15, 31, 0, 14, 0, 0, 0, 0, 33, 0, + 0, 0, 27, 0, 29, 14, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 9, 0, 14, 16, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 0, 0, 15, 24, 0, 0, 0, 0, + 0, 0, 0, 0, 26, 0, 22, 0, 50, 0, 0, 21, 0, 0, + 0, 0, 15, 0, 14, 0, 16, 27, 0, 0, 0, 0, 26, 0, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, + 0, 0, 0, 43, 0, 0, 25, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 9, 15, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 14, + 0, 0, 23, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 0, 15, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 37, 0, 0, 0, + 32, 0, 0, 10, 26, 0, 0, 0, 0, 13, 11, 0, 0, 0, + 18, 0, 0, 0, 41, 0, 0, 0, 29, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, + 25, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 43, 0, 8, 0, + 0, 0, 0, 0, 39, 0, 20, 0, 14, 0, 0, 11, 0, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 16, 0, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 24, 18, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 14, 0, 0, + 2, 19, 0, 17, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 19, 23, 22, 0, 0, 19, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 0, 29, 0, 0, 12, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 29, 0, 18, 0, 0, 0, 0, 26, 0, 0, 30, 25, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 18, 0, 0, 30, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 34, 0, 14, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 22, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 44, 0, 0, 0, 28, 0, 53, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 10, 0, 16, 0, 0, 0, 22, + 22, 0, 0, 0, 0, 0, 0, 11, 0, 2, 0, 26, 0, 0, + 0, 3, 0, 18, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 28, 0, 10, 0, 14, 0, 0, 0, 19, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 29, 19, 15, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 0, 9, 30, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, + 0, 13, 0, 24, 0, 19, 0, 0, 0, 20, 23, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 0, 0, 0, 26, 0, 14, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3, 24, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 21, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 22, 0, 0, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 14, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 14, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 29, 32, 0, + 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 23, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 21, 0, 19, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 29, 0, 0, 0, 0, 0, 28, 0, 6, 17, 0, + 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 11, 0, 23, 0, 14, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 22, 19, 0, 0, 0, 24, 7, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 35, + 0, 15, 18, 24, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 33, 24, 0, 30, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 27, 11, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 24, + 14, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 24, 0, 0, 0, 15, 17, 0, 0, 0, 0, 0, 0, 37, 0, + 0, 0, 19, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 24, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 23, 0, 0, 0, + 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 40, 14, 0, + 0, 0, 0, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 33, + 22, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 15, 23, 0, 0, 0, 23, 0, 0, 0, 0, 15, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 24, 16, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 29, 14, 30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 35, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 18, 0, 0, + 0, 18, 0, 0, 0, 30, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 29, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 27, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 11, + 0, 36, 22, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 14, 0, 0, 0, + 0, 0, 72, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 31, + 0, 20, 0, 17, 23, 0, 0, 0, 0, 29, 0, 0, 22, 0, + 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 30, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 10, + 0, 0, 39, 7, 0, 0, 0, 0, 0, 11, 0, 0, 26, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 34, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 9, 18, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 19, 19, 0, 0, 0, 0, 0, 0, 0, 26, 0, + 0, 0, 14, 11, 8, 0, 27, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 17, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 29, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 29, 0, 28, + 0, 3, 36, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, + 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, + 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 43, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 16, + 0, 0, 0, 0, 21, 28, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 34, 28, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 17, 0, + 0, 29, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 16, 0, 18, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 0, 0, 0, 27, 0, 22, 24, 0, 0, 15, 24, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 0, 21, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 29, 23, 0, 16, 0, 0, 0, + 0, 23, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 28, 0, 0, 0, 0, 0, 17, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 29, 0, + 33, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 16, 29, 0, + 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 27, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, + 23, 0, 0, 0, 0, 23, 0, 36, 0, 0, 29, 0, 28, 0, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 29, 0, 0, 0, + 33, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, + 0, 0, 21, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 37, 0, 0, + 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 14, 0, 0, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 41, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 19, 0, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 22, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 24, 0, 31, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 22, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 7, + 19, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, + 0, 0, 22, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 22, 0, 0, 0, 0, 0, 0, 0, + 35, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, + 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 17, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 15, 0, 0, 0, 27, 0, 0, 10, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 43, 14, + 0, 0, 0, 0, 26, 17, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 35, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, + 6, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 0, 16, 27, 0, 0, 0, 0, 27, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 16, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 28, 0, 6, 0, 22, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 17, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 22, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 17, + 0, 16, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 28, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 23, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 13, 0, 0, 0, 0, + 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 33, + 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, + 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 14, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 6, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 36, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 19, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 6, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 0, 0, 0, 25, 43, 7, 0, 14, 0, 0, 0, + 0, 0, 15, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 20, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 36, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 15, 0, 37, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 7, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 36, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 16, 0, 0, 0, 0, 34, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 40, + 0, 0, 0, 7, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 6, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 0, 0, 15, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 17, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 15, 0, 0, 0, 28, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 15, 15, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 6, 0, 0, 0, 18, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 36, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 30, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 15, 20, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1046,137 +1424,32 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, - 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 24, 0, 0, 0, 17, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 22, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 37, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 13, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 27, 0, 0, 37, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, - 16, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 15, 24, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 14, 0, 7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 23, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1186,170 +1459,48 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, - 0, 8, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 28, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 27, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1357,8 +1508,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1367,7 +1516,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1375,7 +1523,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1387,65 +1534,33 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 4, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1460,33 +1575,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1508,20 +1597,18 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1543,103 +1630,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 33, 0, 3, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1687,6 +1677,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1713,10 +1704,10 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1749,6 +1740,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1759,8 +1751,10 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1774,6 +1768,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1808,6 +1803,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1828,7 +1824,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1851,6 +1846,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1880,8 +1876,8 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1910,6 +1906,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1935,6 +1932,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1960,6 +1958,217 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2002,7 +2211,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2012,7 +2220,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2053,7 +2260,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2083,7 +2289,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2104,7 +2309,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2126,6 +2330,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2135,7 +2340,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2158,10 +2362,11 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2274,6 +2479,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2355,7 +2561,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2398,6 +2603,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2418,6 +2624,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2444,5139 +2651,5531 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 }; static const struct grib_keys_hash wordlist[] = { {""}, {""}, {""}, {""}, {""}, - {"n",1368}, + {"n",1375}, {""}, - {"m",1244}, - {"na",1374}, - {"t",2242}, + {"m",1250}, + {"na",1381}, + {"t",2276}, {""}, - {"nnn",1385}, - {"nt",1400}, + {"nnn",1393}, + {"nt",1409}, {""}, - {"nd",1381}, + {"nd",1388}, {"ed",737}, - {"td",2253}, - {"name",1375}, - {"min",1327}, - {"data",633}, + {"td",2287}, + {"name",1382}, + {"min",1333}, + {"data",632}, {""}, - {"date",654}, + {"date",653}, {""}, {""}, {""}, - {"time",2283}, - {"sd",2020}, + {"time",2325}, + {"sd",2044}, {""}, {""}, {""}, {""}, - {"ident",982}, + {"ident",986}, {""}, {""}, - {"one",1584}, - {"metadata",1323}, + {"one",1594}, + {"metadata",1329}, {""}, {""}, - {"param",1699}, + {"param",1710}, {""}, - {"stream",2214}, + {"stream",2248}, {""}, - {"mars",1247}, - {"names",1380}, + {"mars",1253}, + {"names",1387}, {"enorm",780}, - {"dataset",651}, + {"dataset",650}, {""}, {""}, {""}, {""}, - {"spare",2173}, + {"spare",2200}, {"domain",719}, {"eps",785}, {""}, - {"sort",2156}, + {"sort",2183}, {""}, {"centre",406}, {""}, - {"oper",1595}, - {"parameter",1706}, - {"present",1754}, - {"step",2202}, + {"oper",1605}, + {"parameter",1718}, + {"present",1765}, + {"step",2236}, {"edition",738}, {""}, {""}, {""}, - {"rectime",1842}, - {"true",2322}, - {"core",608}, - {"Latin",112}, - {"iteration",1059}, + {"rectime",1854}, + {"true",2365}, + {"core",607}, + {"Latin",111}, + {"iteration",1065}, {""}, {""}, - {"opttime",1602}, + {"opttime",1612}, {""}, {""}, {""}, - {"minute",1329}, + {"minute",1335}, {""}, {"dimension",702}, {""}, {""}, - {"const",581}, - {"parameters",1714}, + {"const",580}, + {"parameters",1726}, {""}, - {"minimum",1328}, - {"assertion",322}, - {"Lap",107}, - {"second",2021}, - {"points",1741}, - {"timerepres",2297}, + {"minimum",1334}, + {"assertion",321}, + {"Lap",106}, + {"second",2045}, + {"points",1753}, + {"timerepres",2339}, {""}, {""}, - {"section",2046}, - {"Lo",122}, - {"units",2391}, - {"restricted",1885}, - {"tile",2277}, + {"section",2073}, + {"Lo",121}, + {"units",2434}, + {"restricted",1904}, + {"tile",2318}, {""}, {"direction",705}, {""}, {""}, - {"radius",1816}, - {"stepZero",2212}, - {""}, {""}, - {"status",2201}, - {"instrument",1014}, - {"Lop",142}, - {"ucs",2382}, - {""}, {""}, - {"partitions",1720}, - {""}, - {"leadtime",1124}, - {""}, - {"count",622}, - {""}, - {"uuid",2423}, - {"hdate",952}, - {"three",2266}, - {""}, - {"precision",1749}, - {"range",1821}, - {"refdate",1848}, - {""}, - {"statistics",2200}, - {"uco",2381}, - {"process",1784}, - {""}, - {"grid",929}, - {""}, - {"radials",1815}, - {""}, - {"dataTime",648}, - {"dateTime",664}, - {""}, {""}, - {"stepunits",2213}, - {""}, {""}, - {"daLoop",632}, - {"phase",1734}, - {"char",431}, - {"product",1786}, - {"correction",613}, - {"method",1324}, + {"radius",1828}, {""}, {""}, {""}, - {"section8",2085}, + {"status",2235}, + {"instrument",1018}, + {"Lop",141}, + {"ucs",2425}, {""}, {""}, - {"identifier",986}, - {"class",434}, - {""}, {""}, - {"origin",1609}, - {"reference",1849}, + {"partitions",1732}, + {"stepZero",2246}, + {"leadtime",1130}, {""}, - {"latitude",1089}, + {"count",621}, + {""}, + {"uuid",2466}, + {"hdate",956}, + {"three",2307}, + {""}, + {"precision",1760}, + {"range",1833}, + {"refdate",1860}, + {""}, + {"statistics",2234}, + {"uco",2424}, + {"process",1795}, + {""}, + {"grid",933}, + {""}, + {"radials",1827}, + {""}, + {"dataTime",647}, + {"dateTime",663}, + {""}, {""}, + {"stepunits",2247}, + {""}, {""}, + {"daLoop",631}, + {"phase",1746}, + {"char",430}, + {"product",1797}, + {"correction",612}, + {"method",1330}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generation",916}, + {"identifier",990}, + {"class",433}, {""}, {""}, - {"pl",1738}, + {"origin",1619}, + {"reference",1861}, + {""}, + {"latitude",1095}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"generation",920}, {""}, {""}, - {"consensus",579}, + {"pl",1750}, + {""}, {""}, + {"consensus",578}, {""}, - {"upperLimit",2413}, + {"upperLimit",2456}, {""}, - {"hundred",974}, + {"hundred",978}, {""}, {""}, {""}, {""}, - {"hour",964}, + {"hour",968}, {""}, {"discipline",711}, - {"file",865}, - {"latitudes",1120}, + {"file",866}, + {"latitudes",1126}, {""}, - {"total",2299}, - {"model",1348}, + {"total",2341}, + {"model",1354}, {""}, - {"normal",1388}, + {"normal",1396}, {""}, {""}, - {"false",858}, + {"false",859}, {""}, {""}, - {"fcperiod",862}, - {"nref",1399}, + {"fcperiod",863}, + {"nref",1407}, {""}, - {"datasetTemplate",653}, - {"signature",2139}, + {"datasetTemplate",652}, + {"signature",2166}, {""}, - {"million",1326}, - {"dataStream",646}, + {"million",1332}, + {"dataStream",645}, {""}, - {"temperature",2255}, - {"g",905}, - {"thousand",2265}, + {"temperature",2290}, + {"g",909}, + {"thousand",2306}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsStream",1272}, + {"marsStream",1278}, {""}, - {"resolution",1876}, - {"nTiles",1373}, + {"resolution",1895}, + {"nTiles",1380}, {"categories",389}, {""}, {"endStep",771}, - {"isSens",1044}, + {"isSens",1048}, {""}, {"eight",742}, {""}, {""}, {""}, {""}, {""}, {""}, - {"month",1355}, + {"month",1362}, {""}, - {"platform",1739}, + {"platform",1751}, {""}, {""}, - {"marsStep",1271}, - {"K",94}, - {"offset",1547}, + {"marsStep",1277}, + {""}, + {"offset",1557}, {"diagnostic",698}, - {"operStream",1596}, + {"operStream",1606}, {""}, - {"startStep",2193}, - {"year",2525}, - {"anoffset",317}, + {"startStep",2227}, + {"year",2574}, + {"anoffset",316}, {""}, {""}, - {"truncateLaplacian",2325}, + {"truncateLaplacian",2368}, {""}, {""}, {"elementsTable",743}, - {"marsQuantile",1268}, - {""}, - {"padding",1628}, - {""}, - {"offsetdate",1581}, - {"type",2333}, {""}, {""}, - {"offsettime",1582}, + {"padding",1638}, + {""}, + {"offsetdate",1591}, + {"type",2376}, + {""}, {""}, + {"offsettime",1592}, {""}, {""}, {""}, {""}, {""}, - {"ordering",1605}, + {"ordering",1615}, {""}, - {"oceanStream",1545}, + {"oceanStream",1555}, {""}, {""}, {""}, - {"system",2240}, + {"system",2274}, {""}, - {"partitionTable",1719}, + {"partitionTable",1731}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitude",1203}, + {"longitude",1209}, {""}, - {"local",1167}, + {"local",1173}, {""}, {""}, {""}, {"Di",30}, - {"TT",240}, - {"paramtype",1716}, + {"TT",239}, + {"paramtype",1728}, {""}, - {"channel",429}, + {"channel",428}, {""}, {""}, {""}, {""}, {""}, - {"yLast",2524}, + {"yLast",2573}, {""}, {""}, - {"two",2331}, + {"two",2374}, {""}, - {"dataDate",636}, - {"flags",882}, + {"dataDate",635}, + {"flags",886}, {""}, {""}, {""}, - {"longitudes",1234}, + {"longitudes",1240}, {"Dstart",38}, - {"gg",918}, + {"gg",922}, {""}, {""}, - {"fgTime",864}, + {"fgTime",865}, {""}, {""}, {""}, {""}, {""}, - {"marsDir",1251}, + {"marsDir",1257}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localTime",1195}, + {"localTime",1201}, {""}, - {"masterDir",1280}, + {"masterDir",1286}, {""}, {"endTimeStep",774}, {""}, {""}, {""}, - {"crcrlf",627}, + {"crcrlf",626}, {""}, - {"threshold",2267}, + {"threshold",2308}, {""}, {""}, {""}, {""}, - {"matchSort",1287}, + {"matchSort",1293}, {""}, - {"landtype",1081}, - {"marsDomain",1252}, - {""}, {""}, {""}, + {"landtype",1087}, + {"marsDomain",1258}, + {""}, {""}, + {"marsQuantile",1274}, {"dummyc",724}, - {"hideThis",957}, - {"marsLatitude",1262}, + {"hideThis",961}, + {"marsLatitude",1268}, {""}, {""}, {""}, - {"fcmonth",861}, - {"siteLatitude",2147}, + {"fcmonth",862}, + {"siteLatitude",2174}, {""}, {""}, - {"instrumentIdentifier",1015}, + {"instrumentIdentifier",1019}, {""}, {""}, {""}, {""}, - {"forecastperiod",895}, - {"dataType",649}, + {"forecastperiod",899}, + {"dataType",648}, {""}, {""}, {""}, {""}, {""}, {""}, - {"reserved",1867}, + {"reserved",1886}, {""}, {""}, - {"dataLength",639}, - {"marsType",1275}, + {"dataLength",638}, + {"marsType",1281}, {""}, {""}, - {"flag",877}, + {"flag",881}, + {"section8",2112}, + {"varno",2486}, + {""}, {""}, + {"notDecoded",1406}, + {"version",2491}, + {"dataSelection",644}, + {""}, {""}, + {"K",93}, {""}, - {"varno",2443}, - {""}, - {"paramType",1703}, - {"notDecoded",1398}, - {"version",2448}, - {"dataSelection",645}, - {""}, {""}, {""}, - {"band",334}, - {"stepType",2208}, - {"countTotal",625}, - {""}, - {"dataKeys",638}, + {"stepType",2242}, + {"countTotal",624}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"isSpectral",1049}, {""}, - {"isSpectral",1045}, + {"forecastTime",898}, {""}, - {"forecastTime",894}, - {""}, - {"conceptDir",571}, - {"rdbtime",1827}, - {"Xp",274}, - {"reportType",1863}, - {"codeType",558}, + {"conceptDir",570}, + {""}, {""}, + {"reportType",1881}, + {"codeType",557}, {""}, {"eleven",745}, {""}, {""}, {""}, - {"userTimeStart",2422}, - {"TS",238}, - {"Xo",273}, - {""}, + {"userTimeStart",2465}, + {"TS",237}, + {""}, {""}, {"efiOrder",741}, - {"selectedSecond",2122}, + {"selectedSecond",2149}, {""}, {""}, {""}, {""}, {""}, - {"TScalc",239}, - {"bitmap",372}, - {""}, {""}, {""}, {""}, - {"additionalParameter",302}, + {"TScalc",238}, + {""}, {""}, {""}, {""}, {""}, + {"additionalParameter",301}, {""}, - {"lowerLimit",1237}, + {"lowerLimit",1243}, {""}, - {"dataOrigin",640}, - {""}, - {"KS",95}, - {""}, - {"number",1401}, - {""}, {""}, {""}, {""}, - {"average",326}, + {"dataOrigin",639}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"average",325}, {""}, {""}, {"elevation",744}, {""}, {""}, {"dy",726}, {""}, {""}, - {"day",666}, + {"day",665}, {""}, {""}, - {"statisticalProcess",2198}, + {"statisticalProcess",2232}, {""}, {""}, {""}, - {"isSatellite",1042}, + {"isSatellite",1046}, {""}, {""}, - {"windSpeed",2495}, - {""}, {""}, {""}, {""}, - {"gridType",939}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"values",2431}, - {"fgDate",863}, + {"windSpeed",2544}, + {""}, + {"dataKeys",637}, + {""}, {""}, + {"gridType",943}, + {""}, + {"nspatvals",1408}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"values",2474}, + {"fgDate",864}, {""}, {""}, {""}, {""}, {""}, - {"forecastSteps",893}, + {"forecastSteps",897}, {""}, - {"statisticalProcessesList",2199}, + {"statisticalProcessesList",2233}, {""}, - {"aerosolpacking",307}, + {"aerosolpacking",306}, {""}, - {"Ly",153}, - {"localDate",1168}, + {"Ly",152}, + {"localDate",1174}, {""}, {""}, - {"coefsSecond",563}, + {"coefsSecond",562}, {""}, - {"localDir",1176}, + {"localDir",1182}, {""}, - {"ieeeFloats",987}, + {"ieeeFloats",991}, {""}, {""}, {""}, {""}, {""}, {""}, - {"levels",1147}, + {"levels",1153}, {"dummy",721}, {""}, {""}, - {"levelist",1146}, - {"logTransform",1202}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"levelist",1152}, + {"logTransform",1208}, {""}, - {"Lcy",119}, - {""}, {""}, {""}, {""}, - {"avg",330}, - {""}, {""}, {""}, - {"recDateTime",1839}, - {""}, - {"offsetSection9",1578}, - {""}, {""}, {""}, - {"centreDescription",407}, - {"localSecond",1190}, - {"unitsFactor",2397}, - {"Luy",149}, - {""}, {""}, - {"satelliteSeries",1950}, - {""}, {""}, {""}, - {"coefsFirst",562}, - {"forecastLeadTime",886}, - {""}, {""}, - {"marsLevel",1263}, - {"level",1141}, + {"KS",94}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitOfTime",2388}, - {"country",626}, + {"Lcy",118}, {""}, {""}, {""}, {""}, - {"isOctahedral",1040}, + {"avg",329}, {""}, {""}, {""}, - {"topLevel",2298}, + {"recDateTime",1851}, + {""}, {""}, {""}, {""}, {""}, + {"centreDescription",407}, + {"localSecond",1196}, + {"unitsFactor",2440}, + {"Luy",148}, {""}, {""}, - {"typicalTime",2377}, - {"offsetSection8",1577}, + {"satelliteSeries",1969}, {""}, - {"productType",1791}, - {""}, {""}, {""}, - {"codeFigure",557}, + {"offsetSection9",1588}, + {""}, + {"coefsFirst",561}, + {"forecastLeadTime",890}, {""}, {""}, - {"userDateStart",2418}, + {"marsLevel",1269}, + {"level",1147}, + {"band",333}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitOfTime",2431}, + {"country",625}, + {""}, {""}, {""}, {""}, + {"isOctahedral",1044}, {""}, {""}, {""}, - {"LaD",104}, - {"aerosolType",304}, + {"topLevel",2340}, + {""}, + {"rdbtime",1839}, + {"typicalTime",2420}, {""}, {""}, - {"spectralType",2183}, + {"productType",1803}, + {""}, + {"paramTypeTile",1715}, + {""}, + {"codeFigure",556}, + {""}, {""}, + {"userDateStart",2461}, + {""}, {""}, {""}, + {"LaD",103}, + {"aerosolType",303}, + {""}, {""}, + {"spectralType",2217}, {"destineSection",696}, - {""}, {""}, {""}, {""}, - {"accuracy",296}, - {""}, - {"indicatorOfParameter",1000}, - {""}, {""}, {""}, {""}, - {"yFirst",2523}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"isFillup",1037}, - {"rdbtimeTime",1834}, - {"centreLongitude",412}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudesList",1121}, + {"bitmap",372}, {""}, {""}, {""}, - {"zero",2534}, + {"accuracy",295}, + {""}, + {"indicatorOfParameter",1004}, + {""}, {""}, {""}, {""}, + {"yFirst",2572}, + {""}, + {"number",1410}, + {""}, {""}, {""}, {""}, + {"isFillup",1041}, + {""}, + {"centreLongitude",412}, + {""}, {""}, {""}, {""}, {""}, + {"J",91}, + {"latitudesList",1127}, + {""}, {""}, {""}, + {"Xp",273}, {""}, {"distinctLatitudes",713}, + {""}, {""}, + {"zero",2583}, + {"JS",92}, {""}, - {"aerosolTypeName",305}, + {"gridSpecification",942}, {""}, - {"zeros",2535}, + {"Xo",272}, + {"zeros",2584}, {""}, - {"gridSpecification",938}, - {""}, {""}, {""}, {""}, - {"pressureLevel",1774}, + {"pressureLevel",1785}, {""}, {""}, {""}, {""}, {""}, - {"dataFlag",637}, - {"standardDeviation",2185}, + {"dataFlag",636}, + {"standardDeviation",2219}, {""}, - {"laplacianOperator",1082}, - {"referenceSampleInterval",1857}, + {"laplacianOperator",1088}, + {"referenceSampleInterval",1869}, {""}, {""}, {"ccsdsFlags",395}, {""}, - {"levtype",1148}, - {"ccsdsRsi",396}, + {"levtype",1154}, + {""}, {"endDescriptors",750}, {""}, - {"pv",1800}, - {"setLocalDefinition",2129}, + {"pv",1812}, + {"setLocalDefinition",2156}, {""}, {""}, - {"fireTemplate",867}, + {"fireTemplate",868}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"obstype",1542}, - {""}, {""}, {""}, {""}, {""}, - {"marsRange",1269}, - {""}, {""}, - {"periodOfTime",1730}, + {"periodOfTime",1742}, {""}, {""}, {""}, {""}, - {"windDirection",2484}, + {"windDirection",2533}, {""}, {""}, - {"longitudesList",1235}, - {""}, - {"latitudeSexagesimal",1117}, - {""}, - {"stepRange",2206}, - {"referenceDate",1850}, - {""}, {""}, - {"localDateTime",1169}, - {""}, - {"startTimeStep",2196}, - {"optionalData",1601}, + {"longitudesList",1241}, {""}, {""}, {""}, - {"unitsDecimalScaleFactor",2395}, + {"latitudeSexagesimal",1123}, + {"referenceDate",1862}, + {""}, {""}, + {"localDateTime",1175}, {""}, - {"referenceStep",1858}, + {"startTimeStep",2230}, + {"optionalData",1611}, + {""}, {""}, {""}, + {"unitsDecimalScaleFactor",2438}, + {""}, + {"referenceStep",1870}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"templatesLocalDir",2257}, - {""}, - {"pointsOrdering",1742}, - {""}, {""}, {""}, {""}, + {"templatesLocalDir",2294}, + {""}, {""}, {""}, {""}, {""}, {""}, {"Dy",42}, {""}, - {"lev",1139}, + {"lev",1145}, {""}, {""}, - {"nlev",1384}, + {"nlev",1392}, {""}, - {"coordinatesPresent",607}, + {"coordinatesPresent",606}, {"centreForLocal",408}, {""}, - {"global",919}, - {""}, - {"rdbType",1825}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"upperRange",2414}, - {""}, {""}, {""}, {""}, - {"tubeDomain",2329}, - {"typicalDate",2370}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsStartStep",1270}, - {""}, - {"ensembleSize",783}, - {""}, {""}, {""}, - {"heightLevelName",954}, - {""}, {""}, - {"meanSize",1315}, - {""}, {""}, {""}, - {"computeStatistics",570}, + {"aerosolTypeName",304}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection0",1567}, + {"billion",369}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rectimeDay",1843}, - {"rdbtimeDate",1828}, - {""}, {""}, {""}, {""}, - {"offsetDescriptors",1561}, - {"preferLocalConcepts",1753}, + {"typicalDate",2413}, {""}, {""}, {""}, {""}, {""}, - {"boustrophedonic",379}, + {"tempLevtype",2288}, + {"marsStartStep",1276}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Nr",200}, + {""}, {""}, + {"computeStatistics",569}, + {"meanSize",1321}, + {""}, + {"Ni",198}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"userDateTimeStart",2420}, + {"rdbtimeTime",1846}, + {"rectimeDay",1855}, + {""}, {""}, {""}, + {"releaseStartSecond",1878}, + {"Nside",203}, + {"offsetDescriptors",1571}, + {"preferLocalConcepts",1764}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"userDateTimeStart",2463}, {""}, {""}, {"centreLongitudeInDegrees",413}, - {""}, {""}, {""}, - {"runwayState",1944}, - {""}, {""}, {""}, - {"parameterDiscipline",1709}, {""}, - {"datumSize",665}, - {"overlayTemplate",1622}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfTile",2362}, - {""}, {""}, {""}, - {"localDecimalScaleFactor",1171}, - {"levelType",1143}, - {"laplacianOperatorIsSet",1083}, + {"offsetSection8",1587}, {""}, - {"activity",298}, - {"secondSize",2035}, - {""}, {""}, {""}, {""}, {""}, + {"runwayState",1963}, + {""}, {""}, {""}, + {"parameterDiscipline",1721}, + {""}, {""}, + {"overlayTemplate",1632}, + {""}, {""}, {""}, + {"datumSize",664}, + {""}, + {"typeOfTile",2405}, + {""}, {""}, {""}, + {"localDecimalScaleFactor",1177}, + {"levelType",1149}, + {"laplacianOperatorIsSet",1089}, + {""}, + {"activity",297}, + {""}, {""}, + {"obstype",1552}, + {""}, {""}, + {"secondSize",2059}, {"categoryType",390}, - {""}, - {"localFlag",1178}, - {""}, {""}, - {"subSetK",2229}, - {""}, - {"firstDimension",868}, - {""}, - {"lengthDescriptors",1129}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"conceptsLocalDirAll",574}, - {""}, {""}, - {"generatingProcessTemplate",914}, - {""}, - {"anoffsetLast",320}, - {""}, {""}, - {"JS",93}, - {"gridDefinition",931}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"angleDivisor",311}, - {""}, - {"firstSize",876}, - {"rdbDateTime",1823}, - {"validityTime",2430}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"waveDomain",2472}, - {""}, - {"datasetForLocal",652}, - {""}, {""}, {""}, {""}, {""}, - {"dateOfForecast",656}, - {""}, {""}, {""}, - {"timeOfForecast",2290}, - {""}, {""}, - {"bottomLevel",378}, - {"longitudinalDirectionGridLength",1236}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"localDay",1170}, - {""}, - {"matchTimeRepres",1288}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oldSubtype",1583}, + {"parameterName",1723}, + {"localFlag",1184}, {""}, {""}, {""}, {""}, - {"derivedForecast",693}, - {""}, {""}, {""}, - {"localDefinition",1174}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"firstDimension",869}, + {"NL",185}, + {"lengthDescriptors",1135}, + {""}, + {"suiteName",2267}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generatingProcessIdentifier",913}, - {""}, {""}, - {"anoffsetFirst",318}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"heightLevelName",958}, {""}, - {"Nr",200}, - {""}, {""}, {""}, {""}, - {"originalSubCentreIdentifier",1613}, - {"Ni",198}, - {""}, {""}, {""}, {""}, - {"northernLatitudeOfDomain",1396}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lowerRange",1238}, - {"setDecimalPrecision",2128}, + {"conceptsLocalDirAll",573}, {""}, - {"groupSplitting",943}, - {""}, {""}, - {"Nside",203}, - {"generatingProcessIdentificationNumber",912}, + {"tileName",2323}, + {"generatingProcessTemplate",918}, + {""}, + {"anoffsetLast",319}, + {""}, {""}, {""}, + {"gridDefinition",935}, {""}, {""}, {""}, {""}, {""}, {""}, - {"freeFormData",900}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfCentrePoint",1207}, + {"angleDivisor",310}, {""}, {""}, {""}, - {"clusterSize",551}, - {""}, {""}, {""}, - {"incrementOfLengths",991}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endOfRange",770}, + {"validityTime",2473}, + {""}, + {"modelName",1357}, + {"firstSize",877}, + {""}, {""}, {""}, {""}, {""}, + {"ccsdsRsi",396}, {""}, {""}, - {"reservedOctet",1872}, - {""}, - {"lcwfvSuiteName",1123}, - {""}, {""}, {""}, {""}, - {"southernLatitudeOfDomain",2167}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"parameterName",1711}, - {""}, - {"hourOfForecast",967}, - {""}, {""}, - {"marsLevelist",1264}, - {""}, - {"NL",186}, - {"anoffsetFrequency",319}, - {"verticalDomainTemplate",2458}, - {"suiteName",2233}, - {""}, {""}, {""}, - {"bufrTemplate",384}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tileName",2282}, - {""}, {""}, {""}, {""}, - {"decimalScaleFactor",676}, - {""}, - {"integerScaleFactor",1018}, - {"J",92}, - {"typicalDay",2372}, - {""}, - {"marsParam",1267}, - {""}, - {"marsKeywords",1259}, - {"newSubtype",1383}, - {""}, {""}, {""}, - {"analysisOffsets",310}, - {""}, - {"modelName",1351}, - {""}, {""}, {""}, - {"LaR",106}, - {""}, {""}, {""}, - {"monthOfForecast",1358}, - {"typeOfLevel",2347}, {"cfName",417}, - {"gridName",936}, - {"latitudeOfCentrePoint",1094}, - {"localTimeForecastList",1196}, - {""}, {""}, {""}, {""}, - {"referenceOfLengths",1853}, + {"gridName",940}, + {""}, + {"waveDomain",2521}, + {""}, + {"datasetForLocal",651}, + {"global",923}, + {""}, + {"rdbType",1837}, {""}, {""}, - {"yearOfForecast",2529}, + {"dateOfForecast",655}, + {"marsRange",1275}, + {""}, {""}, + {"timeOfForecast",2332}, {""}, {""}, {""}, - {"LoR",127}, - {""}, - {"epsPoint",787}, - {"rdbtimeDay",1829}, - {""}, {""}, - {"controlForecastCluster",586}, - {"longitudeSexagesimal",1233}, - {""}, - {"shortName",2135}, + {"longitudinalDirectionGridLength",1242}, + {""}, {""}, {""}, + {"tubeDomain",2372}, + {"shortName",2162}, {""}, {"Nassigned",193}, - {""}, - {"scaledDirections",1981}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"defaultStepUnits",684}, + {"stepRange",2240}, + {""}, {""}, {""}, {""}, {""}, + {"offsetSection0",1577}, + {""}, {""}, + {"ensembleSize",783}, {""}, {""}, {""}, {""}, - {"realPart",1836}, - {"integerScalingFactorAppliedToDirections",1019}, - {"integerScalingFactorAppliedToFrequencies",1020}, - {""}, {""}, {""}, + {"localDay",1176}, + {""}, {""}, {""}, {""}, {""}, {"Nf",197}, - {"qfe",1802}, - {""}, {""}, {""}, {""}, - {"gridDefinitionSection",933}, - {""}, - {"NT",190}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ifsParam",988}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sequences",2125}, + {"NT",189}, + {""}, {""}, + {"derivedForecast",693}, + {""}, {""}, {""}, + {"localDefinition",1180}, + {"rdbtimeDate",1840}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"boustrophedonic",379}, + {""}, {""}, {""}, + {"generatingProcessIdentifier",917}, + {""}, + {"upperRange",2457}, + {"anoffsetFirst",317}, + {""}, {""}, {""}, {""}, {""}, {"editionNumber",739}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"originalSubCentreIdentifier",1623}, {""}, {""}, {""}, {""}, {""}, - {"minuteOfReference",1335}, - {""}, {""}, {""}, - {"multiplicationFactorForLatLong",1367}, - {""}, - {"quantile",1812}, - {""}, {""}, {""}, {""}, {""}, - {"dateOfReference",661}, - {""}, {""}, {""}, - {"timeOfReference",2293}, - {""}, - {"rdbSubtype",1824}, - {""}, {""}, {""}, {""}, - {"overlayTemplateNumber",1623}, - {""}, - {"sectionNumber",2094}, + {"northernLatitudeOfDomain",1404}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"setDecimalPrecision",2155}, {""}, - {"masterTableNumber",1281}, - {"climatologicalRegime",438}, - {""}, - {"numberOfTimeSteps",1516}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"qnh",1805}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"trueLengthOfLastGroup",2323}, - {""}, {""}, {""}, - {"visibility",2462}, - {"minuteOfForecast",1332}, - {""}, {""}, {""}, - {"validityDate",2428}, - {""}, {""}, {""}, {""}, - {"secondOfForecast",2028}, - {"observedData",1541}, + {"groupSplitting",947}, {""}, {""}, - {"numberOfFloats",1449}, + {"sectionNumber",2121}, {""}, {""}, {""}, {""}, - {"gridDefinitionDescription",932}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsParam",1273}, + {""}, {""}, + {"freeFormData",904}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfCentrePoint",1213}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Adelta",13}, - {""}, {""}, {""}, {""}, - {"numberOfDirections",1439}, + {"incrementOfLengths",995}, + {"clusterSize",550}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reservedOctet",1891}, + {""}, {""}, + {"rdbDateTime",1835}, + {""}, {""}, {""}, + {"southernLatitudeOfDomain",2194}, + {"epsPoint",787}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hourOfForecast",971}, + {""}, {""}, + {"marsLevelist",1270}, + {""}, {""}, + {"anoffsetFrequency",318}, + {"verticalDomainTemplate",2501}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"realPart",1848}, {""}, + {"bottomLevel",378}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"decimalScaleFactor",675}, + {""}, + {"integerScaleFactor",1022}, + {""}, + {"typicalDay",2415}, + {""}, {""}, {""}, {""}, {""}, {""}, {"defaultName",680}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterNumber",550}, + {"longitudeOfGridPoints",1220}, + {"analysisOffsets",309}, + {""}, {""}, {""}, {""}, + {"ifsParam",992}, + {"clusterNumber",549}, + {""}, {""}, {""}, + {"monthOfForecast",1365}, + {"typeOfLevel",2390}, {""}, - {"optimizeScaleFactor",1600}, - {""}, {""}, {""}, - {"longitudeOfGridPoints",1214}, + {"oldSubtype",1593}, + {"latitudeOfCentrePoint",1100}, + {"localTimeForecastList",1202}, {""}, {""}, {""}, {""}, - {"rectimeSecond",1846}, + {"referenceOfLengths",1865}, {""}, {""}, - {"isAuto",1027}, + {"yearOfForecast",2578}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"controlForecastCluster",585}, {""}, {""}, - {"crraSection",630}, - {""}, {""}, {""}, - {"uerraSection",2384}, - {""}, {""}, {""}, {""}, - {"numberingOrderOfDiamonds",1534}, - {""}, {""}, {""}, {""}, + {"longitudeSexagesimal",1239}, {"energyNorm",779}, - {"channelNumber",430}, - {""}, {""}, {""}, {""}, {""}, - {"dayOfForecast",669}, + {"channelNumber",429}, {""}, - {"localDefinitionNumber",1175}, - {""}, - {"numberOfSection",1506}, - {""}, {""}, {""}, - {"spectralDataRepresentationMode",2180}, - {""}, {""}, {""}, {""}, - {"hourOfReference",970}, - {""}, - {"optimisationTime",1599}, - {""}, {""}, {""}, - {"defaultParameter",681}, - {""}, {""}, {""}, - {"computeLaplacianOperator",569}, - {""}, - {"listOfScaledFrequencies",1163}, - {""}, - {"forecastPeriod",889}, - {""}, - {"waveLevType",2474}, + {"scaledDirections",2002}, {""}, {""}, - {"numberOfSubsets",1511}, + {"lcwfvSuiteName",1129}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfLocalDefinitions",1466}, - {""}, {""}, {""}, - {"standardParallel",2186}, - {""}, {""}, {""}, {""}, {""}, - {"dataAccessors",634}, + {"integerScalingFactorAppliedToFrequencies",1024}, + {"integerScalingFactorAppliedToDirections",1023}, {""}, {""}, {""}, {""}, - {"typeOfStatisticalPostProcessingOfEnsembleMembers",2359}, - {"nTileAtt",1371}, + {"subSetK",2263}, + {"gridDefinitionSection",937}, + {"matchTimeRepres",1294}, + {""}, {""}, {""}, {""}, + {"marsKeywords",1265}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Ny",208}, - {"angleOfRotation",313}, - {"horizontalCoordinateDefinition",959}, - {"horizontalCoordinateSupplement",960}, - {""}, - {"monthOfReference",1361}, - {""}, - {"XR",271}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yearOfReference",2532}, - {"typeOfStatisticalProcessing",2360}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"indicatorOfUnitOfTimeRange",1006}, - {""}, {""}, {""}, {""}, - {"modeNumber",1347}, - {"Ncy",196}, - {"dataValues",650}, - {"numberOfFrequencies",1456}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"multiplicationFactorForLatLong",1374}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Ncy",196}, + {""}, + {"lowerRange",1244}, + {""}, {""}, {""}, {""}, {""}, + {"bufrTemplate",384}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"uuidOfDataGroup",2467}, + {""}, {"Nuy",206}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"uuidOfDataGroup",2424}, - {""}, {""}, {""}, {""}, - {"validityDateTime",2429}, - {"localSection",1191}, - {""}, {""}, {""}, {""}, {""}, - {"minuteOfForecastUsedInLocalTime",1333}, - {"numberOfDiamonds",1438}, + {""}, {""}, + {"newSubtype",1390}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondOfForecastUsedInLocalTime",2029}, - {"tiggeSection",2273}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"forecastPeriodTo",891}, - {"probPoint",1780}, - {""}, - {"latitudeOfCentrePointInDegrees",1095}, - {""}, - {"originalParameterNumber",1611}, - {"referenceValue",1859}, - {"boustrophedonicOrdering",380}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"experiment",804}, + {"endOfRange",770}, + {""}, {""}, {""}, + {"minuteOfForecast",1338}, + {""}, {""}, {""}, + {"validityDate",2471}, + {""}, {""}, {""}, {""}, + {"secondOfForecast",2052}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"gridDefinitionDescription",936}, + {""}, {""}, {""}, + {"rdbtimeDay",1841}, {""}, {""}, {""}, {""}, {""}, - {"oceanLevName",1544}, + {"releaseStartDay",1874}, {""}, - {"iteratorDisableUnrotate",1061}, + {"defaultParameter",681}, + {""}, {""}, {""}, {""}, + {"yDirectionGridLength",2569}, {""}, {""}, - {"sectionPosition",2095}, - {"xLast",2517}, - {""}, - {"maximum",1293}, - {"yDirectionGridLength",2520}, - {""}, {""}, - {"atmosphericChemicalOrPhysicalConstituentType",323}, - {""}, {""}, - {"iDirectionIncrement",975}, + {"forecastPeriod",893}, + {"oceanLevName",1554}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"standardParallel",2220}, + {""}, {""}, {""}, + {"optimizeScaleFactor",1610}, + {""}, {""}, {""}, {""}, {""}, + {"correction4Part",620}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfForecast",668}, {""}, {""}, - {"totalNumber",2303}, + {"defaultStepUnits",684}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"listOfScaledFrequencies",1169}, + {""}, {""}, {""}, + {"waveLevType",2523}, + {""}, {""}, {""}, {""}, {""}, + {"faFieldName",856}, + {"subSetJ",2262}, + {"modeNumber",1353}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"faLevelName",857}, {""}, - {"spectralDataRepresentationType",2181}, + {"numberOfTimeSteps",1526}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"horizontalCoordinateDefinition",963}, + {"horizontalCoordinateSupplement",964}, + {""}, {""}, {""}, + {"forecastPeriodTo",895}, + {""}, + {"minuteOfReference",1341}, + {""}, + {"typeOfStatisticalProcessing",2403}, + {"originalParameterNumber",1621}, {""}, {""}, - {"charValues",432}, - {""}, + {"visibility",2505}, + {""}, {""}, {""}, {""}, {""}, + {"dateOfReference",660}, + {""}, {""}, {""}, + {"timeOfReference",2335}, + {"observedData",1551}, + {""}, {""}, + {"numberOfFloats",1458}, + {""}, {""}, {""}, {""}, {""}, + {"sectionPosition",2122}, + {""}, {""}, {""}, + {"isEps",1040}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"climatologicalRegime",437}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDirections",1448}, + {""}, {""}, {""}, + {"validityDateTime",2472}, + {""}, {""}, {""}, {""}, {""}, + {"overlayTemplateNumber",1633}, + {"minuteOfForecastUsedInLocalTime",1339}, + {""}, {""}, {""}, {""}, {""}, {"epsStatisticsPoint",789}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"trueLengthOfLastGroup",2366}, {""}, - {"applicationIdentifier",321}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"legNumber",1127}, - {"windPresent",2494}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfStatisticallyProcessedFieldsForLocalTime",1509}, - {""}, - {"significanceOfReferenceTime",2141}, - {""}, {""}, - {"angleOfRotationInDegrees",314}, - {""}, {""}, - {"neitherPresent",1382}, - {""}, - {"faFieldName",855}, - {""}, {""}, - {"pvlLocation",1801}, + {"secondOfForecastUsedInLocalTime",2053}, + {""}, {""}, {""}, + {"N",170}, {""}, {""}, {""}, {""}, {""}, {""}, - {"orderOfSpatialDifferencing",1604}, - {""}, - {"faLevelName",856}, - {"floatVal",883}, - {""}, {""}, {""}, {""}, - {"stepTypeForConversion",2209}, - {""}, {""}, - {"changingPrecision",428}, - {"numberOfRadials",1498}, - {"typicalSecond",2376}, + {"latitudeOfCentrePointInDegrees",1101}, {""}, {""}, {""}, - {"scaleFactorOfSecondSize",1970}, - {""}, - {"standardParallelInDegrees",2187}, - {"defaultTypeOfLevel",685}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumber",2345}, + {"numberingOrderOfDiamonds",1544}, + {""}, {""}, + {"windPresent",2543}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfSection",1515}, + {""}, {""}, {""}, + {"neitherPresent",1389}, {""}, {""}, {""}, {""}, {""}, {""}, - {"groupLeafNodeK",941}, + {"legNumber",1133}, + {""}, + {"atmosphericChemicalOrPhysicalConstituentType",322}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"rdbSubtype",1836}, {""}, {""}, - {"productDefinition",1787}, + {"changingPrecision",427}, + {"numberOfSubsets",1521}, {""}, {""}, {""}, - {"rdbtimeSecond",1833}, - {"clusteringMethod",553}, + {"LaR",105}, {""}, - {"siteId",2146}, - {""}, - {"paramId",1700}, - {""}, - {"referencePeriodList",1855}, - {"TAFstr",236}, - {"marsIdent",1258}, - {""}, - {"numberOfForcasts",1450}, - {"methodNumber",1325}, - {""}, {""}, {""}, {""}, - {"subSetJ",2228}, - {"frequency",901}, - {""}, {""}, - {"observablePropertyTemplate",1536}, - {""}, {""}, {""}, {""}, {""}, - {"ensembleForecastNumbers",781}, - {""}, {""}, {""}, {""}, - {"iIncrement",979}, - {""}, {""}, - {"typeOfStatisticalProcessingForTimeRangeForReferencePeriod",2361}, - {""}, {""}, - {"Nb",194}, + {"numberOfLocalDefinitions",1475}, + {"standardParallelInDegrees",2221}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"expoffset",809}, + {"LoR",126}, + {""}, {""}, {""}, {""}, + {"createNewData",627}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spectralDataRepresentationMode",2214}, + {"probPoint",1791}, + {"clusteringMethod",552}, + {"groupLeafNodeK",945}, + {""}, + {"hourOfReference",974}, + {"levTypeName",1146}, + {""}, + {"referencePeriodList",1867}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitOfTimeIncrement",2389}, - {""}, {""}, {""}, {""}, - {"scaleFactorOfStandardDeviation",1972}, + {"numberOfFrequencies",1465}, + {""}, {""}, {""}, + {"generatingProcessTemplateNumber",919}, + {"orderOfSpatialDifferencing",1614}, {""}, - {"numberOfForecastsInTube",1454}, - {""}, {""}, + {"localDefinitionNumber",1181}, + {""}, {""}, {""}, {""}, + {"marsEndStep",1259}, + {"stepTypeForConversion",2243}, + {""}, {""}, {""}, + {"methodNumber",1331}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"angleOfRotation",312}, + {""}, {""}, {""}, + {"monthOfReference",1368}, + {""}, {""}, {""}, {""}, + {"numberOfDiamonds",1447}, + {""}, {""}, {""}, {""}, + {"yearOfReference",2581}, + {""}, {""}, {""}, {""}, {"SPD",228}, - {""}, {""}, + {"masterTableNumber",1287}, + {""}, {"dewPointTemperature",697}, - {""}, {""}, - {"formatForLongs",897}, - {"observablePropertyTemplateNumber",1537}, - {""}, {""}, - {"scaleFactorOfStandardDeviationInTheCluster",1973}, - {"simpleThinningSkip",2143}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ensembleForecastNumbersList",782}, - {""}, {""}, - {"extraDim",812}, - {"realization",1838}, - {"firstLatitude",871}, - {""}, {""}, {""}, {""}, - {"treatmentOfMissingData",2321}, - {""}, {""}, {""}, {""}, {""}, - {"forecastPeriodFrom",890}, - {""}, - {"powerOfTenUsedToScaleClimateWeight",1746}, - {""}, - {"scaleFactorOfFirstSize",1959}, - {""}, - {"secondDimension",2022}, - {""}, - {"destineLocalVersion",694}, - {"averagingPeriod",329}, - {""}, - {"postProcessing",1745}, - {"marsLongitude",1265}, - {"internalVersion",1022}, {""}, {""}, {""}, - {"siteLongitude",2148}, - {""}, - {"Azi",15}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"createNewData",628}, - {""}, - {"codedValues",561}, - {""}, {""}, {""}, - {"systemNumber",2241}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"expver",810}, - {""}, - {"levTypeName",1140}, - {""}, - {"indexingTime",996}, - {""}, {""}, {""}, {""}, {""}, - {"isAccumulation",1026}, - {""}, {""}, - {"changeDecimalPrecision",423}, - {""}, {""}, {""}, {""}, - {"dataRepresentation",641}, - {"tubeNumber",2330}, - {"centreLatitude",410}, - {"generatingProcessTemplateNumber",915}, - {"numberOfForecastsUsedInLocalTime",1455}, - {""}, - {"sizeOfOffsets",2150}, - {"xFirst",2516}, - {""}, {""}, {""}, {""}, - {"localLatitude",1181}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"bitmapSectionPresent",374}, - {"tablesVersion",2249}, - {""}, {""}, {""}, {""}, {""}, - {"longitudeOfIcosahedronPole",1215}, - {"listOfDistributionFunctionParameter",1159}, - {""}, - {"endOfProduct",769}, - {""}, {""}, - {"secondLatitude",2025}, - {""}, {""}, {""}, - {"modelIdentifier",1350}, - {""}, - {"numberOfOperationalForecastTube",1477}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"inputDataPresentIndicator",1007}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"defaultShortName",683}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"userTimeEnd",2464}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"radialAngularSpacing",1814}, + {"treatmentOfMissingData",2364}, + {""}, {""}, + {"typeOfStatisticalPostProcessingOfEnsembleMembers",2402}, + {""}, {""}, + {"forecastPeriodFrom",894}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"averagingPeriod",328}, {""}, - {"is_uerra",1054}, + {"postProcessing",1756}, {""}, {""}, {""}, - {"ccccIdentifiers",392}, - {""}, {""}, {""}, - {"tableNumber",2245}, - {""}, - {"scaleFactorOfLowerLimit",1963}, + {"typeOfStatisticalProcessingForTimeRangeForReferencePeriod",2404}, {""}, {""}, {""}, {""}, {""}, - {"unitOfOffsetFromReferenceTime",2387}, - {"typeOfTimeIncrement",2363}, + {"qfe",1814}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"verificationDate",2444}, + {""}, {""}, {""}, {""}, {""}, + {"extras",849}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"experiment",804}, + {""}, {""}, + {"changeDecimalPrecision",422}, + {""}, {""}, + {"generatingProcessIdentificationNumber",916}, + {""}, + {"systemNumber",2275}, + {"sequences",2152}, + {""}, {""}, + {"xLast",2566}, + {"scaleFactorOfSecondLimit",1990}, + {"maximum",1299}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"floatValues",884}, - {"memberNumber",1321}, - {"N",171}, - {""}, {""}, {""}, - {"indexTemplate",992}, - {""}, - {"inputDelayedDescriptorReplicationFactor",1008}, - {""}, {""}, {""}, - {"offsetAfterPadding",1552}, - {""}, - {"minutesAfterDataCutoff",1337}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section_8",2114}, - {""}, {""}, {""}, - {"temperatureAndDewpointPresent",2256}, + {"quantile",1824}, {""}, {""}, - {"cnmc_isac",556}, - {""}, - {"expandedTypes",802}, - {""}, {""}, {""}, {""}, - {"stringValues",2218}, - {"short_name",2138}, - {"baseAddress",335}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"latLonValues",1088}, + {"numberOfStatisticallyProcessedFieldsForLocalTime",1519}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfIcosahedronPole",1221}, {""}, {""}, - {"simpleThinningStart",2144}, - {""}, {""}, - {"TAF",235}, - {""}, {""}, - {"typeOfDistributionFunction",2338}, - {""}, {""}, {""}, - {"_T",289}, - {""}, {""}, - {"cnmc_cmcc",555}, - {""}, {""}, {""}, - {"offsetAfterLocalSection",1551}, + {"endOfProduct",769}, {""}, {""}, {"defaultFaLevelName",678}, {""}, {""}, {""}, - {"SecondLatitude",229}, - {""}, {""}, {""}, - {"FirstLatitude",66}, - {"correction4Part",621}, - {""}, - {"NR",188}, - {""}, {""}, {""}, {""}, {""}, - {"dataRepresentationTemplate",642}, - {"_endStep",292}, - {""}, - {"stretchingFactor",2216}, - {""}, {""}, {""}, {""}, {""}, - {"waveDirectionNumber",2471}, - {""}, - {"numberOfDistinctSection9s",1446}, - {""}, {""}, {""}, {""}, {""}, - {"section_09",2104}, - {""}, {""}, - {"angleOfRotationOfProjection",315}, - {""}, {""}, - {"tigge_name",2275}, - {"_anoffset",291}, - {""}, - {"dimensionType",704}, - {"meaningOfVerticalCoordinate",1320}, - {"ecpt_model",736}, - {""}, - {"gts_header",950}, - {"is_aerosol",1046}, - {"numberOfDistinctSection8s",1445}, - {""}, - {"auxiliary",325}, - {""}, - {"sensitiveAreaDomain",2124}, - {""}, {""}, {""}, {""}, - {"satelliteIdentifier",1948}, + {"spectralDataRepresentationType",2215}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"orientationOfTheGrid",1607}, - {""}, {""}, - {"P",212}, - {"dataRepresentationTemplateNumber",643}, - {""}, - {"isEps",1036}, - {"section_08",2103}, - {"globalDomain",920}, - {"local_use",1201}, - {""}, {""}, {""}, {""}, {""}, - {"partitionItems",1717}, + {"inputDataPresentIndicator",1011}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"waveDirectionNumber",2520}, + {""}, + {"qnh",1817}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_chemical",1048}, - {"efas_model",740}, + {"Nb",194}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"significanceOfReferenceTime",2168}, + {""}, {""}, + {"angleOfRotationInDegrees",313}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stretchingFactorScaled",2217}, + {"sizeOfOffsets",2177}, {""}, {""}, {""}, - {"localLongitude",1184}, - {"typeOfRelationToReferenceDataset",2355}, + {"numberOfForcasts",1459}, + {""}, {""}, {""}, {""}, + {"userDateEnd",2460}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"diagnosticNumber",699}, - {""}, {""}, {""}, - {"scaleFactorOfSecondFixedSurface",1969}, - {""}, - {"dayOfStartOfReferencePeriod",673}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"dataRepresentationType",644}, - {""}, - {"defaultFaFieldName",677}, - {""}, - {"tablesVersionLatest",2250}, - {""}, {""}, {""}, {""}, {""}, - {"orderOfSPD",1603}, - {"PLPresent",215}, - {""}, {""}, {""}, - {"is_localtime",1051}, - {"matchLandType",1286}, - {"climateDateFrom",436}, + {"scaleFactorOfSecondSize",1991}, + {""}, {""}, + {"defaultTypeOfLevel",685}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"widthOfFirstOrderValues",2480}, - {"secondsOfReference",2045}, - {""}, {""}, - {"correction1Part",615}, - {""}, {""}, {""}, - {"scaleFactorOfFirstFixedSurface",1958}, - {""}, {""}, {""}, {""}, - {"ensembleStandardDeviation",784}, - {""}, {""}, - {"monthlyVerificationTime",1365}, - {""}, - {"angleSubdivisions",316}, - {""}, - {"numberOfPartitions",1481}, - {""}, - {"sampleSizeOfReferencePeriod",1946}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"levelValues",1144}, - {"corr4Data",612}, - {"scanPosition",2012}, - {""}, - {"indexingDate",995}, - {""}, {""}, {""}, {""}, - {"numberOfReservedBytes",1503}, - {"_TS",290}, - {"latitudeOfGridPoints",1098}, + {"dataValues",649}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfStretchingPole",1224}, - {"qfePresent",1803}, - {"numberOfReferencePeriodTimeRanges",1499}, - {""}, {""}, - {"qnhPresent",1807}, + {"temperatureAndDewpointPresent",2291}, {""}, {""}, {""}, - {"streamOfAnalysis",2215}, - {""}, {""}, {""}, {""}, - {"lengthOfProjectLocalTemplate",1136}, - {""}, {""}, {""}, {""}, {""}, - {"marsEndStep",1253}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"outerLoopLengthOfTimeRange",1619}, - {""}, - {"totalNumberOfdimensions",2319}, - {""}, {""}, - {"startingAzimuth",2197}, - {"numberOfRows",1504}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"minuteOfAnalysis",1330}, - {""}, {""}, - {"tableReference",2246}, - {""}, {""}, - {"offsetAfterCentreLocalSection",1549}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"indicatorOfUnitOfTimeRange",1010}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"userTimeEnd",2421}, - {""}, {""}, {""}, - {"section9Pointer",2090}, - {""}, - {"localDefNumberTwo",1173}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section8Pointer",2087}, - {""}, - {"unitsOfSecondFixedSurface",2400}, - {"secondDimensionPhysicalSignificance",2024}, + {"rectimeSecond",1858}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfFirstLimit",1978}, + {"crraSection",629}, {""}, {""}, - {"totalNumberOfTubes",2315}, + {"numberOfForecastsInTube",1463}, + {"uerraSection",2427}, + {"boustrophedonicOrdering",380}, + {""}, {""}, {""}, {""}, {""}, + {"iteratorDisableUnrotate",1067}, + {"siteElevation",2172}, + {""}, + {"unitOfOffsetFromReferenceTime",2430}, + {"latitudeOfGridPoints",1104}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P",212}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"optimisationTime",1609}, + {""}, + {"referenceValue",1871}, + {"defaultFaFieldName",677}, + {""}, {""}, + {"bitmapSectionPresent",374}, + {""}, + {"computeLaplacianOperator",568}, + {""}, + {"expoffset",809}, + {""}, {""}, + {"tubeNumber",2373}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfStretchingPole",1108}, + {"scaleFactorOfStandardDeviation",1993}, + {""}, {""}, {""}, {""}, + {"siteId",2173}, {""}, - {"missingDataFlag",1339}, + {"paramId",1711}, + {""}, {""}, {""}, + {"marsIdent",1264}, + {""}, + {"userDateTimeEnd",2462}, + {""}, {""}, {""}, + {"scaleFactorOfStandardDeviationInTheCluster",1994}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extraDim",812}, + {""}, + {"firstLatitude",872}, + {""}, {""}, + {"charValues",431}, + {""}, + {"iIncrement",983}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfForecastsUsedInLocalTime",1464}, + {"scaleFactorOfFirstSize",1979}, + {""}, {""}, {""}, {""}, {""}, + {"PLPresent",215}, + {""}, + {"marsLongitude",1271}, + {""}, {""}, {""}, {""}, + {"siteLongitude",2175}, + {"tableNumber",2279}, + {""}, {""}, + {"observablePropertyTemplate",1546}, + {""}, + {"numberOfRadials",1507}, + {""}, {""}, + {"listOfDistributionFunctionParameter",1165}, + {"ensembleForecastNumbers",781}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfOperationalForecastTube",1486}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"expver",810}, + {"localSection",1197}, + {""}, {""}, + {"indexingTime",1000}, + {"memberNumber",1327}, + {""}, + {"floatVal",887}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tiggeSection",2314}, + {""}, {""}, + {"centreLatitude",410}, + {""}, {""}, {""}, {""}, + {"xFirst",2565}, + {""}, {""}, {""}, {""}, + {"localLatitude",1187}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"molarMass",1361}, + {""}, {""}, + {"observablePropertyTemplateNumber",1547}, + {""}, {""}, {""}, + {"orderOfSPD",1613}, + {""}, {""}, + {"ensembleForecastNumbersList",782}, + {""}, + {"secondLatitude",2049}, + {""}, + {"powerOfTenUsedToScaleClimateWeight",1757}, + {"XR",270}, + {""}, {""}, + {"localDefNumberTwo",1179}, + {""}, {""}, {""}, {""}, {""}, + {"iDirectionIncrement",979}, + {""}, {""}, + {"section7",2108}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsModel",1272}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfLowerLimit",1983}, + {""}, + {"applicationIdentifier",320}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfDistributionFunction",2381}, + {""}, {""}, {""}, {""}, + {"modelIdentifier",1356}, + {""}, + {"lengthOfProjectLocalTemplate",1142}, + {""}, + {"indexTemplate",996}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"theMessage",2301}, + {"pvlLocation",1813}, + {""}, {""}, + {"widthOfFirstOrderValues",2529}, + {"longitudeOfLastGridPoint",1222}, + {""}, {""}, + {"correction1Part",614}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedTypes",802}, + {"inputDelayedDescriptorReplicationFactor",1012}, + {""}, {""}, {""}, + {"typicalSecond",2419}, + {"ccccIdentifiers",392}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDistinctSection9s",1455}, + {""}, {""}, {""}, {""}, + {"destineLocalVersion",694}, + {"corr4Data",611}, + {""}, + {"operatingMode",1607}, + {""}, + {"internalVersion",1026}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"marsLamModel",1267}, + {""}, + {"productDefinition",1798}, + {""}, + {"codedValues",560}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"correction3Part",618}, + {"MS",157}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterMember9",548}, + {""}, + {"frequency",905}, + {""}, {""}, {""}, + {"NR",187}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"auxiliary",324}, + {""}, {""}, {""}, + {"numberOfPartitions",1490}, + {""}, {""}, {""}, {""}, + {"unitOfTimeIncrement",2432}, + {""}, + {"localMinute",1193}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"spectralMode",2216}, + {""}, {""}, + {"formatForLongs",901}, + {"angleMultiplier",311}, + {""}, {""}, {""}, + {"simpleThinningSkip",2170}, + {""}, {""}, {""}, + {"scanningMode",2036}, + {""}, + {"stretchingFactor",2250}, + {"md5Section9",1314}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tiggeModel",2313}, + {""}, + {"realization",1850}, + {""}, {""}, + {"numberOfDistinctSection8s",1454}, + {""}, {""}, {""}, {""}, {""}, + {"localLongitude",1190}, + {""}, {""}, {""}, + {"secondDimension",2046}, + {"typeOfRelationToReferenceDataset",2398}, + {""}, {""}, {""}, + {"md5Data",1300}, + {""}, + {"representationMode",1882}, + {""}, {""}, {""}, + {"localMonth",1194}, + {""}, + {"scaleFactorOfSecondFixedSurface",1989}, + {"satelliteIdentifier",1967}, + {""}, {""}, + {"floatValues",888}, + {""}, {""}, {""}, + {"heightOrPressureOfLevel",959}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"correction2Part",616}, + {""}, {""}, + {"isConstant",1037}, + {""}, {""}, {""}, + {"partitionItems",1729}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"thisMarsStream",2304}, + {"earthMinorAxis",730}, + {""}, + {"stringValues",2252}, + {""}, {""}, {""}, {""}, + {"rdbtimeSecond",1845}, + {"coordinate4OfLastGridPoint",602}, + {"stretchingFactorScaled",2251}, + {""}, {""}, {""}, + {"widthOfSPD",2531}, + {""}, + {"verticalDomainTemplateNumber",2502}, + {""}, {""}, + {"latLonValues",1094}, + {""}, {""}, {""}, + {"scaleFactorOfFirstFixedSurface",1977}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfPostProcessing",2394}, + {""}, {""}, {""}, {""}, + {"totalNumberOfdimensions",2361}, + {""}, {""}, + {"g2grid",912}, + {"indexingDate",999}, + {"marsClass",1254}, + {""}, + {"gridPointPosition",941}, + {"tablesVersion",2283}, + {"md5Section8",1313}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"parameterCode",1720}, + {""}, + {"climateDateFrom",435}, + {""}, {""}, {""}, {""}, + {"bufrDataEncoded",381}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"meaningOfVerticalCoordinate",1326}, + {"typeOfTimeIncrement",2406}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"gridDefinitionTemplateNumber",938}, + {""}, + {"verificationDate",2487}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"angleOfRotationOfProjection",314}, + {""}, {""}, {""}, {""}, {""}, + {"thisMarsType",2305}, + {""}, + {"clusterMember8",547}, + {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfTubes",2357}, + {""}, {""}, + {"conceptsLocalMarsDirAll",575}, + {""}, + {"setCalendarId",2154}, + {"md5Structure",1315}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"typeOfEnsembleForecast",2382}, + {"oneMillionConstant",1596}, + {""}, + {"offsetSection7",1586}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"simpleThinningStart",2171}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"corr2Data",609}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"dayOfStartOfReferencePeriod",672}, + {""}, {""}, {""}, + {"cfVarName",420}, + {""}, {""}, {""}, {""}, {""}, + {"tileattribute",2324}, + {""}, {""}, {""}, + {"scanningMode8",2041}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfReservedBytes",1512}, + {"diagnosticNumber",699}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"monthlyVerificationTime",1372}, + {""}, + {"dataRepresentation",640}, + {"expandedNames",797}, + {""}, {""}, + {"oneConstant",1595}, + {"totalNumberOfQuantiles",2353}, + {""}, {""}, {""}, {""}, {""}, + {"tiggeCentre",2310}, + {"scaleFactorAtReferencePoint",1970}, + {""}, + {"levelValues",1150}, + {"interpretationOfNumberOfPoints",1028}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"missingDataFlag",1345}, {""}, {"diffInDays",700}, {""}, - {"totalNumberOfQuantiles",2311}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NAT",174}, + {"Adelta",13}, {""}, {""}, - {"monthlyVerificationDate",1363}, - {""}, {""}, {""}, {""}, - {"representationType",1865}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cfVarName",420}, + {"versionNumOfFilesFreeSpaceStorage",2492}, + {"longitudeOfStretchingPole",1230}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"sampleSizeOfReferencePeriod",1965}, + {""}, {""}, + {"numberOfRows",1513}, + {""}, {""}, {""}, {""}, {""}, + {"NP",186}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isAuto",1031}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"libraryVersion",1149}, - {""}, {""}, {""}, - {"scaleFactorOfRadiusOfSphericalEarth",1968}, - {""}, {""}, {""}, {""}, - {"centuryOfReference",415}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scalingFactorForFrequencies",2011}, - {""}, {""}, {""}, + {"isEPS",1039}, + {"targetCompressionRatio",2286}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scanPosition",2035}, + {""}, {""}, {""}, {""}, {""}, + {"tileClassification",2320}, + {""}, {""}, {""}, {""}, {""}, {"endOfInterval",767}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"section0Pointer",2048}, - {""}, - {"dayOfReference",672}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"perturbedType",1733}, - {""}, - {"heightOrPressureOfLevel",955}, - {""}, - {"levelIndicator",1142}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"decimalPrecision",675}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"verticalDomainTemplateNumber",2459}, - {""}, {""}, {""}, {""}, - {"windVariableDirection",2505}, + {""}, {""}, {""}, + {"qfePresent",1815}, {""}, {""}, - {"numberOfRemaininChars",1501}, - {""}, {""}, - {"stepTypeInternal",2210}, + {"localTimeMethod",1203}, + {"qnhPresent",1819}, {""}, - {"orientationOfTheGridInDegrees",1608}, - {"userDateEnd",2417}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfVerticalPoints",1529}, - {""}, {""}, - {"widthOfSPD",2482}, - {""}, - {"scaleFactorAtReferencePoint",1951}, - {""}, - {"longitudeOfLastGridPoint",1216}, + {"totalNumberOfDirections",2348}, {""}, {""}, {""}, {""}, - {"selectedDay",2117}, - {""}, {""}, {""}, {""}, - {"periodOfTimeIntervals",1731}, - {""}, {"expandedDescriptors",796}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"typeOfPostProcessing",2351}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"functionCode",908}, {""}, - {"offsetFreeFormData",1563}, - {""}, - {"extractSubset",843}, - {"gts_ddhh00",949}, + {"levelIndicator",1148}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"northLatitudeOfCluster",1397}, {""}, {""}, - {"northLatitudeOfCluster",1389}, - {"longitudeOfFirstGridPoint",1212}, - {"numberOfVerticalCoordinateValues",1527}, + {"representativeMember",1884}, {""}, - {"molarMass",1354}, + {"dataAccessors",633}, + {"tablesVersionLatest",2284}, + {""}, {""}, {""}, {""}, + {"nTileAtt",1378}, {""}, {""}, - {"nosigPresent",1397}, - {""}, {""}, {""}, {""}, {""}, {""}, {"eastLongitudeOfCluster",732}, - {"siteElevation",2145}, {""}, - {"lsdate_bug",1242}, + {"xDirectionGridLength",2562}, {""}, {""}, - {"gridDefinitionTemplateNumber",934}, - {"lstime_bug",1243}, - {""}, {""}, - {"versionNumOfFilesFreeSpaceStorage",2449}, - {"observationGeneratingProcessIdentifier",1539}, - {""}, - {"totalNumberOfDirections",2306}, - {"dayOfAnalysis",667}, - {""}, {""}, {""}, - {"interpretationOfNumberOfPoints",1024}, - {""}, - {"numberOfVerticalGridDescriptors",1528}, - {""}, {""}, - {"is_aerosol_optical",1047}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"perturbationNumber",1732}, - {""}, {""}, {""}, {""}, {""}, - {"tablesVersionLatestOfficial",2251}, - {""}, {""}, - {"southLatitudeOfCluster",2163}, - {""}, - {"marsModel",1266}, - {"headersOnly",953}, - {"secondOrderFlags",2032}, - {""}, {""}, {""}, - {"spatialProcessing",2178}, - {"scaleFactorOfDistributionFunctionParameter",1955}, - {""}, {""}, {""}, {""}, - {"numberOfLevelValues",1465}, - {""}, - {"isConstant",1033}, - {""}, {""}, {""}, {""}, {""}, - {"endOfFileAddress",765}, - {""}, {""}, - {"userDateTimeEnd",2419}, - {"gridPointPosition",937}, - {""}, {""}, {""}, {""}, {""}, - {"LoV",128}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unsignedIntegers",2406}, - {""}, - {"expandedNames",797}, - {"theMessage",2260}, - {"g2grid",908}, - {""}, {""}, {""}, - {"falseNorthing",860}, + {"stepTypeInternal",2244}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bitmapPresent",373}, - {"numberOfIterations",1464}, + {""}, {""}, {""}, {""}, + {"latitudeOfStretchingPole",1114}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"startOfMessage",2225}, + {""}, {""}, + {"periodOfTimeIntervals",1743}, + {""}, {""}, {""}, {""}, + {"monthlyVerificationDate",1370}, + {""}, {""}, {""}, + {"listOfModelIdentifiers",1167}, + {"southLatitudeOfCluster",2190}, + {""}, + {"section9Pointer",2117}, + {""}, {""}, {""}, + {"offsetFreeFormData",1573}, + {""}, {""}, {""}, {""}, + {"globalDomain",924}, + {""}, + {"longitudeOfFirstGridPoint",1218}, + {"dataRepresentationTemplate",641}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"versionNumberOfGribLocalTables",2496}, + {""}, {""}, + {"totalNumberOfFrequencies",2350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5TimeDomainSection",1316}, + {""}, {""}, {""}, {""}, + {"verticalCoordinate",2499}, + {"roundedMarsLongitude",1910}, + {""}, + {"numberOfReferencePeriodTimeRanges",1508}, + {"scaleFactorOfRadiusOfSphericalEarth",1988}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"orientationOfTheGrid",1617}, + {""}, + {"releaseStartMonth",1877}, + {""}, {""}, + {"secondOrderFlags",2056}, + {""}, {""}, {""}, + {"dataRepresentationTemplateNumber",642}, + {""}, {""}, {""}, + {"referenceReflectivityForEchoTop",1868}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"md5DataSection",1301}, + {""}, {""}, {""}, {""}, + {"unitsOfSecondFixedSurface",2443}, + {"secondDimensionPhysicalSignificance",2048}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"roundedMarsLatitude",1908}, + {"unsignedIntegers",2449}, + {"extractSubset",843}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"is_uerra",1060}, + {"subCentre",2253}, + {""}, {""}, {""}, + {"ensembleStandardDeviation",784}, + {""}, {""}, {""}, {""}, + {"angleSubdivisions",315}, {"DiInDegrees",32}, - {"numberOfAnalysis",1409}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsClass",1248}, - {""}, - {"operatingMode",1597}, {""}, {""}, {""}, - {"binaryScaleFactor",370}, - {""}, - {"totalNumberOfFrequencies",2308}, - {""}, {""}, {""}, - {"productDefinitionTemplateNumber",1788}, + {"section8Pointer",2114}, {""}, {""}, {""}, {""}, - {"marsLamModel",1261}, - {""}, {""}, - {"parameterCode",1708}, + {"CDFstr",22}, + {"decimalPrecision",674}, + {""}, {""}, {""}, {""}, + {"numberOfEffectiveValues",1457}, {""}, {""}, {""}, - {"scaledValueOfSecondSize",2001}, - {""}, {""}, - {"clusterMember9",549}, - {"is_chemical_distfn",1049}, - {"modelVersionTime",1353}, + {"dataRepresentationType",643}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"tableCode",2278}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"MS",158}, + {"groupSplittingMethodUsed",948}, {""}, {""}, - {"sfc_levtype",2132}, + {"falseNorthing",861}, + {""}, {""}, + {"identificationNumber",987}, + {""}, + {"secondsOfReference",2072}, + {""}, {""}, {""}, {""}, + {"scalingFactorForFrequencies",2034}, + {""}, + {"cnmc_isac",555}, + {"faModelName",858}, + {""}, + {"conceptsMasterDir",576}, + {""}, {""}, {""}, {""}, + {"short_name",2165}, + {"libraryVersion",1155}, + {"section0Pointer",2075}, + {""}, + {"indexTemplateNumber",997}, + {""}, {""}, {""}, + {"roundedMarsLevelist",1909}, + {""}, {""}, + {"clutterFilterIndicator",553}, + {"scaleFactorOfDistributionFunctionParameter",1974}, + {""}, {""}, {""}, + {"parameterCategory",1719}, + {""}, + {"westLongitudeOfCluster",2525}, + {""}, + {"productDefinitionTemplateName",1799}, + {""}, {""}, + {"correction4",619}, + {"productDefinitionTemplateNumber",1800}, + {""}, + {"nosigPresent",1405}, + {""}, + {"_T",288}, + {""}, + {"tablesMasterDir",2282}, + {"cnmc_cmcc",554}, + {""}, {""}, {""}, {""}, + {"kurt",1084}, + {""}, {""}, + {"TAFstr",235}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clutterFilterIndicator",554}, + {"_endStep",291}, + {""}, + {"observationGeneratingProcessIdentifier",1549}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierMakeTemplate",361}, + {"outerLoopLengthOfTimeRange",1629}, + {""}, {""}, {""}, + {"parameterNumber",1724}, {""}, {""}, - {"matchAerosolPacking",1285}, + {"windVariableDirection",2554}, + {""}, + {"LaDInDegrees",104}, + {""}, {""}, + {"tigge_name",2316}, + {"_anoffset",290}, + {""}, {""}, + {"spatialProcessing",2205}, + {"ecpt_model",736}, + {"iterationNumber",1066}, + {"gts_header",954}, + {"is_aerosol",1052}, + {""}, + {"numberOfVerticalPoints",1539}, + {""}, + {"perturbationNumber",1744}, + {""}, {""}, + {"dimensionNumber",703}, + {"corr3Data",610}, + {""}, {""}, {""}, {""}, + {"partitionNumber",1730}, + {""}, {""}, {""}, + {"latitudeLastInDegrees",1097}, + {"paramIdForConversion",1713}, + {""}, {""}, + {"numberOfIterations",1473}, + {""}, + {"kurtosis",1085}, + {""}, {""}, {""}, + {"directionNumber",706}, + {""}, + {"NDSP",178}, + {"local_use",1207}, + {""}, {""}, + {"totalNumberOfTileAttributePairs",2356}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember8",548}, + {"binaryScaleFactor",370}, + {""}, {""}, + {"complexPacking",565}, + {"is_chemical",1054}, + {"efas_model",740}, + {""}, {""}, {""}, + {"numberOfVerticalCoordinateValues",1537}, {""}, {""}, {""}, {""}, {""}, - {"setCalendarId",2127}, + {"totalNumberOfTileAttributeCombinations",2355}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"DyInDegrees",43}, + {"numberOfMembersInCluster",1477}, + {"section_09",2131}, {""}, - {"internationalDataSubCategory",1023}, + {"Azi",15}, + {"numberOfVerticalGridDescriptors",1538}, + {""}, {""}, {""}, + {"md5Product",1304}, {""}, {""}, {""}, {""}, - {"corr2Data",610}, - {""}, {""}, - {"localMinute",1187}, - {""}, {""}, - {"crraLocalVersion",629}, + {"dimensionType",704}, + {"verticalCoordinateDefinition",2500}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tablesVersionLatestOfficial",2285}, + {""}, {""}, {""}, {""}, + {"totalNumberOfRepetitions",2354}, {""}, - {"productDefinitionTemplateNumberInternal",1789}, + {"yDirectionGridLengthInMetres",2570}, + {"isAccumulation",1030}, + {""}, + {"NFSP",180}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfLevelValues",1474}, + {""}, + {"plusOneinOrdersOfSPD",1752}, + {""}, + {"ninety_nine",1391}, + {""}, + {"typeOfCompressionUsed",2380}, + {"is_localtime",1057}, {""}, {""}, {""}, {""}, {""}, - {"spectralMode",2182}, + {"typeOfPreProcessing",2395}, + {"centuryOfReference",415}, + {""}, + {"numberOfDistinctSection7s",1453}, + {"satelliteNumber",1968}, + {""}, + {"section_8",2141}, + {"corr1Data",608}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierTruncationType",368}, {""}, {""}, {"earthIsOblate",727}, - {"angleMultiplier",312}, - {""}, {""}, {""}, - {"correction3Part",619}, - {""}, {""}, {""}, - {"scanningMode",2013}, - {""}, - {"totalNumberOfTileAttributePairs",2314}, - {""}, - {"totalNumberOfRepetitions",2312}, - {"xDirectionGridLength",2513}, - {""}, - {"LaDInDegrees",105}, - {""}, - {"param_value_min",1705}, - {""}, - {"tiggeModel",2272}, - {""}, {""}, {""}, {""}, - {"scaledValueOfStandardDeviation",2003}, - {"westLongitudeOfCluster",2476}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfSizeInterval",2358}, - {""}, {""}, {""}, - {"totalNumberOfTileAttributeCombinations",2313}, - {"scaledValueOfStandardDeviationInTheCluster",2004}, - {""}, - {"representationMode",1864}, - {""}, - {"latitudeLastInDegrees",1091}, - {""}, - {"localMonth",1188}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierTruncationType",369}, - {"scanningMode8",2018}, - {""}, {""}, {""}, - {"scaledValueOfFirstSize",1990}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"earthMinorAxis",730}, - {"thisMarsStream",2263}, - {""}, {""}, {""}, - {"oneConstant",1585}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tiggeCentre",2269}, - {"indicatorOfUnitForForecastTime",1002}, - {"DyInDegrees",43}, + {"additionalFlagPresent",300}, + {""}, {""}, {""}, + {"dayOfReference",671}, + {""}, {""}, {""}, {""}, + {"monthOfStartOfReferencePeriod",1369}, + {""}, + {"numberOfModels",1483}, + {"scaledValueOfSecondLimit",2023}, + {""}, {""}, {""}, + {"tableReference",2280}, + {""}, + {"longitudeOfCentrePointInDegrees",1214}, {""}, {""}, - {"modelVersionDate",1352}, - {""}, - {"dirty_statistics",709}, - {""}, - {"localSectionPresent",1192}, - {"timeIncrement",2287}, - {"coordinate4OfLastGridPoint",603}, - {""}, {""}, - {"corr1Data",609}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dateOfForecastRun",657}, - {"verticalVisibility",2460}, - {""}, {""}, - {"parameterNumber",1712}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractSubsetList",846}, - {""}, - {"default_max_val",686}, - {""}, - {"iterationNumber",1060}, - {""}, {""}, - {"tigge_short_name",2276}, + {"_TS",289}, {""}, {""}, {""}, - {"targetCompressionRatio",2252}, - {""}, - {"dimensionNumber",703}, - {""}, {""}, {""}, {""}, {""}, - {"partitionNumber",1718}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"tileClassification",2279}, - {"dx",725}, - {"max",1291}, - {""}, {""}, {""}, {""}, - {"directionNumber",706}, - {""}, {""}, {""}, - {"bufrDataEncoded",381}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfCentrePointInDegrees",1208}, - {""}, {""}, - {"functionCode",904}, - {""}, - {"thisMarsType",2264}, - {""}, - {"scaledValueOfLowerLimit",1994}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Lx",151}, - {"conceptsLocalMarsDirAll",576}, - {"jdLocal",1070}, - {"identificationNumber",983}, - {"subCentre",2219}, - {""}, {""}, {""}, {""}, - {"localDefNumberOne",1172}, - {""}, - {"minutesAfterReferenceTimeOfDataCutoff",1338}, - {""}, {""}, - {"complexPacking",566}, - {""}, - {"oneMillionConstant",1586}, - {""}, {""}, {""}, {""}, {""}, - {"significanceOfReferenceDateAndTime",2140}, - {""}, - {"indexTemplateNumber",993}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Lcx",117}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tableCode",2244}, - {""}, {""}, - {"jdSelected",1071}, - {"additionalFlagPresent",301}, - {""}, {""}, {""}, {""}, - {"Lux",147}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"subcentreOfAnalysis",2231}, - {""}, {""}, {""}, - {"formatForDoubles",896}, - {"satelliteNumber",1949}, - {""}, {""}, {""}, {""}, - {"numberOfInts",1463}, - {""}, {""}, {""}, {""}, - {"plusOneinOrdersOfSPD",1740}, - {"numericValues",1535}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfPoints",1482}, - {""}, - {"totalNumberOfForecastProbabilities",2307}, - {""}, - {"NP",187}, - {""}, - {"defaultSequence",682}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"projectLocalTemplate",1796}, - {""}, - {"calendarIdPresent",386}, - {""}, {""}, {""}, {""}, {""}, - {"missingValue",1340}, - {""}, - {"integerValues",1021}, - {"verticalCoordinate",2456}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"monthOfStartOfReferencePeriod",1362}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"coordinateIndexNumber",606}, - {""}, {""}, {""}, {""}, - {"extraLocalSectionPresent",815}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"gridDescriptionSectionPresent",935}, - {"calendarIdentification",387}, - {""}, {""}, - {"versionNumberOfGribLocalTables",2453}, - {""}, {""}, {""}, - {"addressOfFileFreeSpaceInfo",303}, - {""}, {""}, {""}, - {"latitudeOfSouthernPole",1106}, - {""}, - {"destineOrigin",695}, - {""}, {""}, {""}, {""}, {""}, - {"parameterIndicator",1710}, - {"centralLongitude",403}, - {"extraLocalSectionNumber",814}, - {"projString",1794}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondsOfAnalysis",2044}, - {""}, - {"CDFstr",22}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfEnsembleForecast",2339}, - {"indicatorOfUnitForTimeRange",1004}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localTimeMethod",1197}, - {"extractedDateTimeNumberOfSubsets",848}, - {"truncateDegrees",2324}, - {"centuryOfReferenceTimeOfData",416}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfSecondFixedSurface",2000}, - {""}, {""}, {""}, - {"extractAreaWestLongitude",822}, - {""}, - {"normAtInitialTime",1387}, - {""}, {""}, {""}, - {"Dx",39}, - {""}, {""}, {""}, {""}, {""}, - {"directionScalingFactor",708}, - {""}, {""}, {""}, {""}, {""}, - {"representativeMember",1866}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"accumulationInterval",295}, - {""}, - {"extraValues",816}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"hourOfStartOfReferencePeriod",971}, - {"parameterCategory",1707}, - {""}, {""}, - {"originalParameterTableNumber",1612}, - {""}, - {"forecastProbabilityNumber",892}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaledValueOfFirstFixedSurface",1989}, - {""}, - {"startOfMessage",2191}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfIntegers",1462}, - {""}, {""}, {""}, {""}, {""}, - {"listOfModelIdentifiers",1161}, - {""}, {""}, {""}, - {"scaledFrequencies",1982}, - {"predefined_grid",1751}, - {""}, {""}, {""}, {""}, - {"calendarIdentificationTemplateNumber",388}, - {"monthOfForecastUsedInLocalTime",1359}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPackedValues",1478}, - {""}, {""}, - {"yearOfStartOfReferencePeriod",2533}, - {"referenceReflectivityForEchoTop",1856}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"originatingCentre",1614}, - {"offsetSection10",1569}, - {""}, {""}, {""}, - {"extraDimensionPresent",813}, - {""}, {""}, {""}, - {"productIdentifier",1790}, - {""}, - {"corr3Data",611}, - {""}, - {"tablesMasterDir",2248}, - {""}, {""}, - {"roundedMarsLongitude",1891}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"iDirectionIncrementInDegrees",978}, - {"laplacianScalingFactor",1084}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"boot_edition",377}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierMakeTemplate",362}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterIdentifier",539}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"messageLength",1322}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfPreProcessing",2352}, - {""}, - {"roundedMarsLatitude",1889}, - {""}, {""}, {""}, {""}, {""}, - {"easternLongitudeOfDomain",735}, - {"numberInTheGridCoordinateList",1405}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"postAuxiliary",1743}, - {"verticalCoordinateDefinition",2457}, - {"centuryOfAnalysis",414}, - {""}, {""}, {""}, {""}, - {"grib2divider",924}, - {""}, {""}, {""}, {""}, - {"local_padding",1200}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"PVPresent",217}, - {""}, - {"unitsOfFirstFixedSurface",2399}, - {"shapeOfVerificationArea",2134}, - {""}, - {"isEPS",1035}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfCompressionUsed",2337}, - {""}, - {"numberOfEffectiveValues",1448}, - {""}, {""}, {""}, {""}, - {"tileAttribute",2278}, - {""}, {""}, - {"groupSplittingMethodUsed",944}, - {""}, - {"thresholdIndicator",2268}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section4Padding",2070}, - {""}, {""}, - {"numberOfMembersInCluster",1468}, - {""}, {""}, {""}, {""}, {""}, - {"conceptsMasterDir",577}, - {""}, - {"productionStatusOfProcessedData",1792}, - {""}, {""}, {""}, - {"startStepInHours",2194}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"roundedMarsLevelist",1890}, - {"projectLocalTemplateNumber",1797}, - {"scaledValueOfRadiusOfSphericalEarth",1999}, - {""}, {""}, {""}, {""}, {""}, - {"centralLongitudeInDegrees",404}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"originOfPostProcessing",1610}, - {""}, {""}, {""}, {""}, - {"CDF",21}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"aerosolbinnumber",306}, - {"NDSP",179}, - {""}, - {"section7",2081}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfDataPoints",1434}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"grib1divider",921}, - {"numberOfChars",1420}, - {"preProcessingParameter",1748}, - {"NV",192}, - {""}, {""}, {""}, - {"secondDimensionCoordinateValueDefinition",2023}, - {""}, - {"numberOfModels",1474}, - {""}, - {"coordinate1Start",594}, - {""}, - {"expandedAbbreviations",791}, - {""}, {""}, {""}, {""}, - {"indicatorOfUnitForTimeRangeForReferencePeriod",1005}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfTimeIncrementsOfForecastsUsedInLocalTime",1513}, - {""}, {""}, - {"projectionCenterFlag",1798}, + {"radialAngularSpacing",1826}, {""}, {""}, {"distanceFromTubeToEnsembleMean",712}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"driverInformationBlockAddress",720}, - {"level_value_list",1145}, - {"NFSP",181}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"identificationOfProject",985}, - {"northernLatitudeOfClusterDomain",1395}, - {""}, - {"julianDay",1072}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceValueError",1860}, - {""}, {""}, - {"listMembersUsed",1154}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"projectionCentreFlag",1799}, - {"longitudeFirstInDegrees",1204}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfValues",1526}, - {"coordinate3OfLastGridPoint",600}, - {""}, - {"westernLongitudeOfDomain",2479}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDistributionFunctionParameters",1447}, - {"southernLatitudeOfClusterDomain",2166}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AA",6}, - {""}, {""}, {""}, {""}, - {"numberOfCharacters",1419}, - {""}, {""}, - {"scaledValueOfDistributionFunctionParameter",1986}, - {"localNumberOfObservations",1189}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"offsetAfterBitmap",1548}, - {""}, {""}, {""}, - {"faModelName",857}, - {"originatingClass",1616}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"monthOfAnalysis",1356}, - {""}, {""}, - {"ITN",91}, - {""}, {""}, - {"classOfAnalysis",435}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfSubSatellitePoint",1226}, - {""}, {""}, {""}, - {"deletePV",692}, - {"isCorrection",1034}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qnhAPresent",1806}, - {""}, {""}, {""}, {""}, - {"longitudeOfSubSatellitePointInDegrees",1227}, - {""}, {""}, {""}, {""}, - {"paleontologicalOffset",1698}, - {"mars_labeling",1278}, - {""}, {""}, {""}, - {"correction4",620}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfAdditionalParameterForReferencePeriod",1952}, - {""}, {""}, - {"isotopeIdentificationNumber",1058}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection7s",1444}, - {""}, - {"coordinate4Flag",601}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"basicAngleOfTheInitialProductionDomain",340}, - {""}, {""}, {""}, - {"biFourierCoefficients",361}, - {""}, {""}, {""}, - {"timeRangeIndicator",2294}, - {"marsForecastMonth",1256}, - {"twoOrdersOfSPD",2332}, - {"centralClusterDefinition",402}, - {"startOfRange",2192}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfMembersInEnsemble",1469}, - {"sectionLengthLimitForEnsembles",2092}, - {"conceptsLocalDirECMF",575}, - {""}, - {"predefined_grid_values",1752}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"implementationDateOfModelCycle",990}, - {"gridCoordinate",930}, - {""}, {""}, - {"spare4",2177}, - {"nameOfSecondFixedSurface",1379}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"versionNumOfRootGroupSymbolTableEntry",2450}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"LoVInDegrees",129}, - {"lengthOfMessage",1134}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"missing_values",1344}, - {"numberOfDataMatrices",1433}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfAuxiliaryInformation",2335}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section4",2068}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"julianForecastDay",1073}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"marsExpver",1255}, - {""}, - {"yDirectionGridLengthInMetres",2521}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"standardParallelInMicrodegrees",2188}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"latitudeOfFirstGridPoint",1096}, + {"CDF",21}, {""}, {""}, {""}, {""}, {""}, - {"widthOfLengths",2481}, + {"originalParameterTableNumber",1622}, {""}, - {"g1conceptsMasterDir",907}, - {""}, {""}, {""}, - {"Nx",207}, + {"forecastProbabilityNumber",896}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"orientationOfTheGridInDegrees",1618}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"skewness",2181}, + {"matchLandType",1292}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection4s",1441}, - {""}, - {"coordinate1Flag",593}, - {"unitsConversionOffset",2393}, - {""}, - {"stepRangeInHours",2207}, - {"numberOfCategories",1418}, - {""}, {""}, - {"numberOfOctetsExtraDescriptors",1476}, - {"dateOfAnalysis",655}, - {""}, {""}, {""}, - {"timeOfAnalysis",2289}, - {""}, {""}, - {"offsetSection7",1576}, - {"scaleFactorOfDistanceFromEnsembleMean",1954}, - {""}, {""}, {""}, - {"dayOfEndOfOverallTimeInterval",668}, - {""}, - {"Ncx",195}, + {"extractSubsetList",846}, + {"bitmapPresent",373}, {""}, {""}, {""}, {""}, - {"section10Pointer",2051}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Nux",205}, - {""}, {""}, {""}, - {"grib3divider",925}, - {"codedNumberOfFirstOrderPackedValues",559}, - {""}, {""}, {""}, - {"listOfContributingSpectralBands",1158}, - {""}, {""}, {""}, {""}, - {"section2Padding",2059}, - {""}, {""}, {""}, - {"default_min_val",687}, - {""}, {""}, - {"totalNumberOfIterations",2310}, - {""}, {""}, {""}, {""}, - {"section2Present",2061}, - {"masterTablesVersionNumber",1282}, - {""}, {""}, {""}, - {"quantileValue",1813}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsExperimentOffset",1254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unknown",2444}, {""}, - {"scanningModeForOneDiamond",2019}, + {"offsetAfterPadding",1562}, + {""}, + {"minutesAfterDataCutoff",1343}, + {""}, {""}, + {"marsForecastMonth",1262}, + {""}, + {"originOfPostProcessing",1620}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"conceptsLocalDirECMF",574}, + {""}, + {"coordinate3OfLastGridPoint",599}, + {"localDefNumberOne",1178}, + {"yDirectionGridLengthInMillimetres",2571}, + {"md5Section7",1312}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yDirectionGridLengthInMillimetres",2522}, - {"sampleSizeOfModelClimate",1945}, {""}, {""}, {""}, {""}, - {"kurt",1078}, - {"deleteExtraLocalSection",690}, - {"section7Pointer",2083}, + {"coordinate4Flag",600}, + {"totalLength",2344}, {""}, {""}, {""}, - {"_numberOfValues",294}, - {""}, {""}, - {"nTileAttCombo",1372}, + {"dateOfForecastRun",656}, + {"scaledValueOfSecondSize",2024}, + {"standardParallelInMicrodegrees",2222}, {""}, - {"latitudeOfStretchingPoleInDegrees",1109}, - {""}, {""}, {""}, - {"biFourierSubTruncationType",368}, - {"typeOfSecondFixedSurface",2357}, - {"masterTablesVersionNumberLatest",1283}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"typeOfOriginalFieldValues",2349}, - {""}, {""}, {""}, - {"addExtraLocalSection",300}, - {"selectedMonth",2121}, - {""}, {""}, {""}, - {"lengthIncrementForTheGroupLengths",1130}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle4",534}, - {""}, {""}, {""}, - {"patch_precip_fp",1725}, - {""}, {""}, {""}, - {"numberOfMissing",1470}, - {""}, {""}, - {"epsStatisticsContinous",788}, - {""}, {""}, - {"southEastLatitudeOfLPOArea",2159}, - {""}, {""}, - {"hourOfAnalysis",965}, + {"TAF",234}, {""}, - {"orderingConvention",1606}, + {"section4Padding",2097}, + {""}, {""}, + {"localSectionPresent",1198}, + {"lengthOfMessage",1140}, + {"northernLatitudeOfClusterDomain",1403}, {""}, {""}, {""}, {""}, {""}, - {"forecastMonth",887}, - {""}, {""}, - {"kurtosis",1079}, - {""}, - {"section1Padding",2056}, - {"groupWidth",945}, - {""}, - {"outerLoopTypeOfStatisticalProcessing",1620}, + {"cloudsTitle4",533}, + {"offsetAfterLocalSection",1561}, {""}, {""}, {""}, - {"timeCoordinateDefinition",2284}, + {"typeOfSizeInterval",2401}, + {""}, {""}, + {"indicatorOfUnitForForecastTime",1006}, + {"keySat",1082}, + {""}, {""}, {""}, + {"grib2divider",928}, + {""}, {""}, + {"upperThreshold",2458}, + {""}, {""}, + {"scaledValueOfFirstLimit",2011}, + {""}, {""}, {""}, {""}, + {"dx",725}, + {"max",1297}, + {""}, {""}, + {"referenceValueError",1872}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"jdLocal",1076}, + {"totalNumberOfForecastProbabilities",2349}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"southernLatitudeOfClusterDomain",2193}, + {""}, {""}, + {"section_08",2130}, + {""}, {""}, {""}, {""}, + {"sensitiveAreaDomain",2151}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DxInDegrees",40}, - {""}, {""}, {""}, {""}, {""}, - {"distinctLongitudes",714}, - {"lengthOfIndexTemplate",1133}, - {""}, {""}, {""}, {""}, {""}, - {"isHindcast",1039}, + {"Lx",150}, + {"formatForDoubles",900}, + {"addressOfFileFreeSpaceInfo",302}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"iScansNegatively",980}, - {"numberOfForecastsInEnsemble",1452}, + {"numberOfRemaininChars",1510}, {""}, {""}, {""}, - {"section9Length",2089}, - {"simpleThinningMissingRadius",2142}, + {"jdSelected",1077}, {""}, - {"numberOfLogicals",1467}, - {"iScansPositively",981}, - {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfStandardDeviation",2026}, + {""}, {""}, {""}, + {"extraDimensionPresent",813}, + {"numberOfOctetsExtraDescriptors",1485}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Lcx",116}, + {""}, {""}, {"defaultFaModelName",679}, + {"marsExpver",1261}, + {"scaledValueOfStandardDeviationInTheCluster",2027}, + {""}, {""}, {""}, {""}, + {"numberOfChars",1429}, + {""}, + {"referenceOfWidths",1866}, {""}, {""}, - {"yearOfAnalysis",2526}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"mAngleMultiplier",1245}, - {"section8Length",2086}, + {"internationalDataSubCategory",1027}, {""}, - {"lengthOfTimeRange",1137}, - {""}, {""}, {""}, {""}, - {"typeOfAnalysis",2334}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"consensusCount",580}, + {"LoV",127}, + {"Lux",146}, + {""}, {""}, + {"gridDescriptionSectionPresent",939}, {""}, - {"longitudeOfLastGridPointInDegrees",1217}, - {""}, {""}, {""}, {""}, - {"longitudeOfStretchingPoleInDegrees",1225}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"rectimeMinute",1845}, + {"modelVersion",1358}, + {"keyData",1080}, + {""}, {""}, + {"verticalVisibility",2503}, + {"skew",2180}, + {""}, {""}, {""}, + {"scaledValueOfFirstSize",2012}, + {"latitudeOfSouthernPole",1112}, + {""}, {""}, + {"representationType",1883}, + {""}, + {"projectLocalTemplate",1808}, + {"baseAddress",334}, + {""}, {""}, {""}, + {"numberOfInts",1472}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfMissingInStatisticalProcess",1471}, + {"NAT",173}, {""}, {""}, - {"numberOfDataValues",1436}, - {""}, - {"section4Pointer",2071}, - {""}, {""}, {""}, {""}, {""}, - {"inputExtendedDelayedDescriptorReplicationFactor",1009}, - {""}, - {"numberOfForecastsInCluster",1451}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"rectimeHour",1844}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfModeOfDistribution",1473}, - {""}, - {"biFourierResolutionParameterN",365}, - {"groupInternalNodeK",940}, - {"timeDomainTemplate",2285}, - {""}, - {"indicatorOfUnitForTimeIncrement",1003}, - {""}, {""}, - {"doExtractDateTime",716}, - {""}, {""}, {""}, - {"southEastLatitudeOfVerficationArea",2160}, - {""}, {""}, - {"climateDateTo",437}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Experiment_Identifier",54}, - {""}, {""}, {""}, - {"section0Length",2047}, - {""}, - {"table2Version",2243}, + {"isHindcast",1043}, {""}, {""}, {""}, {""}, - {"section10Length",2050}, - {"missingValuesPresent",1343}, - {""}, - {"jDirectionIncrement",1062}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection4",1573}, - {""}, {""}, {""}, {""}, {""}, - {"skewness",2154}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeLongitudeValues",1092}, - {""}, - {"expandedCodes",792}, - {""}, - {"unknown",2401}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reservedNeedNotBePresent",1890}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfEndOfOverallTimeInterval",667}, {""}, {""}, - {"numberOfTimeRange",1514}, - {"_leg_number",293}, - {"sectionLengthLimitForProbability",2093}, + {"ITN",90}, + {"listMembersUsed",1160}, + {""}, {""}, {""}, + {"numberOfDataMatrices",1442}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"centralClusterDefinition",402}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"implementationDateOfModelCycle",994}, + {""}, {""}, {""}, {""}, + {"destineOrigin",695}, + {""}, {""}, {""}, {""}, {""}, + {"packingType",1637}, + {"centralLongitude",403}, {""}, + {"projString",1806}, + {"marsExperimentOffset",1260}, + {""}, + {"extractedDateTimeNumberOfSubsets",848}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfCharacters",1428}, + {""}, {""}, {""}, + {"scaleFactorOfDistanceFromEnsembleMean",1973}, + {""}, {""}, + {"streamOfAnalysis",2249}, + {""}, + {"numberInTheGridCoordinateList",1414}, + {"rectimeHour",1856}, {"endDayTrend4",749}, - {""}, {""}, {""}, {""}, {""}, - {"verificationMonth",2445}, + {""}, {""}, {""}, + {"hourOfStartOfReferencePeriod",975}, {""}, - {"numberOfTimeRanges",1515}, + {"truncateDegrees",2367}, {""}, - {"timeRangeIndicatorFromStepRange",2295}, - {"localHour",1180}, + {"deleteExtraLocalSection",690}, {""}, {""}, - {"inputOriginatingCentre",1010}, - {""}, - {"frequencyNumber",902}, + {"selectedDay",2144}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scenarioOrigin",2043}, {""}, {""}, {""}, - {"md5Section9",1308}, - {""}, - {"constituentType",584}, - {"totalLength",2302}, - {"scaleValuesBy",1980}, - {""}, {""}, {""}, - {"lengthOfTimeRangeForReferencePeriod",1138}, - {"groupWidths",946}, - {"swapScanningLat",2236}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"LyInMetres",154}, - {""}, {""}, {""}, - {"md5Section8",1307}, + {"scaledValueOfLowerLimit",2016}, + {""}, {""}, + {"unitsOfFirstFixedSurface",2442}, + {""}, {""}, + {"directionScalingFactor",708}, + {"startingAzimuth",2231}, + {""}, {""}, + {"minuteOfAnalysis",1336}, {""}, {""}, {""}, {""}, + {"lowerThreshold",1245}, + {"offsetAfterCentreLocalSection",1559}, + {"addExtraLocalSection",299}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Dx",39}, + {""}, {""}, + {"numberOfMembersInEnsemble",1478}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"yearOfStartOfReferencePeriod",2582}, + {"groupLengths",946}, + {""}, {""}, {""}, {""}, {""}, + {"PVPresent",217}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"modelVersionTime",1360}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"headersOnly",957}, + {""}, {""}, + {"section2Padding",2086}, + {""}, {""}, + {"numericValues",1545}, + {"localHour",1186}, + {"biFourierCoefficients",360}, + {"numberOfPoints",1491}, + {""}, {""}, {""}, {""}, + {"numberOfIntegers",1471}, + {"section2Present",2088}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"sfc_levtype",2159}, + {""}, {""}, {""}, {""}, + {"originatingCentre",1624}, + {""}, + {"perturbedType",1745}, + {"timeIncrement",2329}, + {""}, + {"missingValue",1346}, + {""}, + {"integerValues",1025}, + {""}, {""}, + {"lsdate_bug",1248}, + {""}, {""}, {""}, + {"lstime_bug",1249}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"crraLocalVersion",628}, + {""}, {""}, {""}, + {"listOfEnsembleForecastNumbers",1166}, + {""}, {""}, {""}, + {"is_aerosol_optical",1053}, + {"laplacianScalingFactor",1090}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extraLocalSectionPresent",815}, + {""}, {""}, {""}, + {"gts_ddhh00",953}, + {""}, {""}, {""}, {""}, + {"scanningModeForOneDiamond",2042}, + {""}, {""}, {""}, {""}, + {"monthOfForecastUsedInLocalTime",1366}, + {"numberOfMissing",1479}, + {"spare4",2204}, + {""}, {""}, + {"offsetSection10",1579}, + {""}, + {"reservedSection4",1894}, + {"messageLength",1328}, + {""}, + {"inputExtendedDelayedDescriptorReplicationFactor",1013}, + {"sampleSizeOfModelClimate",1964}, + {""}, {""}, + {"productionStatusOfProcessedData",1804}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"easternLongitudeOfDomain",735}, + {"numberOfPackedValues",1487}, + {""}, {""}, {""}, {""}, + {"extraLocalSectionNumber",814}, + {""}, {""}, + {"section7Pointer",2110}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"doExtractDateTime",716}, + {""}, + {"numberOfForecastsInEnsemble",1461}, + {""}, {""}, {""}, {""}, {""}, + {"section4",2095}, + {""}, {""}, {""}, + {"latitudeOfIcosahedronPole",1105}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scaledValueOfSecondFixedSurface",2022}, + {""}, {""}, {""}, + {"isTemplateExperimental",1051}, + {""}, {""}, + {"sphericalHarmonics",2218}, + {""}, + {"longitudeOfNorthWestCornerOfArea",1224}, + {"defaultSequence",682}, + {""}, + {"M",154}, + {""}, {""}, {""}, + {"modelVersionDate",1359}, + {""}, + {"predefined_grid",1762}, + {"numberOfCategories",1427}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfFirstGridPoint",1102}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extraValues",816}, + {""}, {""}, {""}, {""}, + {"is_chemical_distfn",1055}, + {""}, {""}, {""}, {""}, + {"dirty_statistics",709}, + {""}, {""}, {""}, {""}, + {"centralLongitudeInDegrees",404}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"grib3divider",929}, + {"scaledValueOfFirstFixedSurface",2010}, + {""}, {""}, {""}, + {"typicalHour",2416}, + {"listOfContributingSpectralBands",1164}, + {""}, {""}, + {"indicatorOfUnitForTimeRange",1008}, + {"dayOfAnalysis",666}, + {""}, {""}, {""}, {""}, {""}, + {"template_is_deprecated",2292}, + {""}, {""}, {""}, {""}, + {"unitsConversionOffset",2436}, + {""}, {""}, + {"numberOfMissingInStatisticalProcess",1480}, + {""}, + {"preProcessingParameter",1759}, + {"numberOfModeOfDistribution",1482}, + {"calendarIdPresent",386}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"groupWidth",949}, + {""}, {""}, {""}, {""}, {""}, + {"section6",2104}, + {""}, {""}, {""}, {""}, {""}, + {"rectimeMinute",1857}, + {""}, {""}, + {"coordinate1Start",593}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endOfFileAddress",765}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"param_value_min",1717}, + {""}, + {"centuryOfReferenceTimeOfData",416}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"projectionCenterFlag",1810}, + {""}, {""}, + {"localNumberOfObservations",1195}, + {""}, {""}, {""}, {""}, {""}, + {"calendarIdentification",387}, + {""}, {""}, {""}, {""}, + {"matchAerosolPacking",1291}, + {""}, {""}, {""}, {""}, + {"identificationOfProject",989}, + {""}, + {"Experiment_Identifier",54}, + {"julianDay",1078}, + {""}, {""}, {""}, {""}, {""}, + {"parameterIndicator",1722}, + {""}, {""}, + {"numberOfTimeIncrementsOfForecastsUsedInLocalTime",1523}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"grib1divider",925}, + {""}, {""}, {""}, {""}, {""}, + {"southEastLatitudeOfVerficationArea",2187}, + {""}, {""}, {""}, + {"projectionCentreFlag",1811}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCorrection",1038}, + {""}, {""}, {""}, {""}, {""}, + {"westernLongitudeOfDomain",2528}, + {""}, {""}, {""}, {""}, + {"projectLocalTemplateNumber",1809}, + {""}, {""}, + {"scaledFrequencies",2003}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeDomainTemplate",2327}, + {"numberOfDistinctSection4s",1450}, + {""}, {""}, {""}, {""}, + {"startOfHeaders",2224}, + {""}, {""}, {""}, {""}, {""}, + {"climateDateTo",436}, + {""}, + {"accumulationInterval",294}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"originatingClass",1626}, + {""}, {""}, {""}, + {"listMembersMissing",1156}, + {""}, {""}, + {"default_max_val",686}, + {""}, {""}, + {"tigge_short_name",2317}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spatialVicintiyList",2213}, + {"twoOrdersOfSPD",2375}, + {""}, + {"rdbtimeHour",1842}, + {""}, {""}, {""}, {""}, {""}, + {"releaseStartHour",1875}, + {""}, + {"scaleValuesBy",2001}, + {""}, + {"codedNumberOfFirstOrderPackedValues",558}, + {""}, {""}, + {"numberOfDistinctSection6s",1452}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Nx",207}, + {""}, {""}, {""}, + {"gridCoordinate",934}, + {""}, {""}, {""}, {""}, + {"numberOfForecastsInCluster",1460}, + {"longitudeOfLastGridPointInDegrees",1223}, + {"typeOfHorizontalLine",2387}, + {""}, {""}, {""}, + {"coordinate2Start",596}, + {""}, {""}, {""}, + {"numberOfDataPoints",1443}, + {""}, {""}, {""}, + {"g1conceptsMasterDir",911}, + {"NV",191}, + {""}, + {"epsContinuous",786}, + {""}, {""}, + {"coordinateIndexNumber",605}, + {"selectedMonth",2148}, + {"Ncx",195}, + {""}, + {"productIdentifier",1802}, + {"numberOfAnalysis",1418}, + {""}, + {"constituentType",583}, + {"consensusCount",579}, + {""}, {""}, {""}, {""}, {""}, + {"groupWidths",950}, + {"calendarIdentificationTemplateNumber",388}, + {""}, {""}, + {"LyInMetres",153}, + {""}, + {"Nux",205}, + {""}, {""}, {""}, {""}, + {"iDirectionIncrementInDegrees",982}, + {"numberOfDistributionFunctionParameters",1456}, {"DiInMetres",33}, - {"swapScanningLon",2237}, + {"typeOfEnsembleMember",2383}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate1Flag",592}, + {"forecastMonth",891}, + {"sectionLengthLimitForEnsembles",2119}, {""}, - {"nameOfFirstFixedSurface",1378}, + {"longitudeOfSubSatellitePoint",1232}, + {""}, + {"versionNumOfRootGroupSymbolTableEntry",2493}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterIdentifier",538}, + {""}, {""}, + {"releaseStartMinute",1876}, + {""}, + {"section5",2100}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSubSatellitePointInDegrees",1233}, + {"originatorLocalTemplate",1627}, + {""}, + {"section3Padding",2092}, + {"spatialVicinityProcessing",2208}, + {""}, {""}, {""}, {""}, + {"isSatelliteType",1047}, + {""}, {""}, + {"lengthOfHeaders",1138}, {""}, {""}, {""}, - {"keySat",1076}, + {"simpleThinningMissingRadius",2169}, + {""}, {""}, {""}, {""}, + {"constantFieldHalfByte",582}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section6",1311}, + {"clusterMember7",546}, + {"typicalMinute",2417}, + {"offsetSection4",1583}, + {""}, + {"coordinate3Flag",597}, + {""}, {""}, {""}, {""}, + {"numberOfDistinctSection5s",1451}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section10Pointer",2078}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"indicatorOfUnitForTimeRangeForReferencePeriod",1009}, + {""}, {""}, {""}, + {"julianForecastDay",1079}, {""}, {""}, - {"md5Data",1294}, - {"constituentTypeName",585}, + {"radiusInMetres",1829}, + {""}, + {"typicalDateTime",2414}, + {"thresholdIndicator",2309}, + {""}, {""}, {""}, {""}, {""}, + {"expandedCodes",792}, + {""}, {""}, {""}, {""}, + {"shortNameECMF",2163}, {""}, {""}, - {"upperThreshold",2415}, - {"lengthOfOriginatorLocalTemplate",1135}, + {"constituentTypeName",584}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierResolutionParameterN",364}, + {"subcentreOfAnalysis",2265}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"widthOfLengths",2530}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"backgroundProcess",332}, + {""}, {""}, + {"shapeOfTheEarth",2160}, + {""}, {""}, {""}, + {"scaledValueOfRadiusOfSphericalEarth",2021}, + {"scanningMode7",2040}, + {"section1Padding",2083}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfForecastsInTheCluster",1462}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"paleontologicalOffset",1709}, + {""}, {""}, {""}, + {"offsetSection6",1585}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetAfterBitmap",1558}, + {""}, + {"startStepInHours",2228}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend4",2509}, - {""}, {""}, {""}, {""}, - {"bitsPerValue",375}, - {""}, {""}, - {"originatorLocalTemplate",1617}, - {""}, {""}, {""}, {""}, {""}, - {"correction2Part",617}, - {""}, - {"isSatelliteType",1043}, + {"coordinate2Flag",595}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfForecastsInTheCluster",1453}, - {""}, {""}, {""}, {""}, - {"typeOfCalendar",2336}, - {""}, {""}, - {"verifyingMonth",2447}, {""}, - {"jIncrement",1066}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfAdditionalParametersForReferencePeriod",1408}, - {"epsContinous",786}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfIntervalForFirstAndSecondSize",2345}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalDateTime",2371}, - {"listOfEnsembleForecastNumbers",1160}, - {"radiusInMetres",1817}, - {"referenceOfWidths",1854}, - {"qualityControl",1809}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"operationalForecastCluster",1598}, - {""}, {""}, {""}, {""}, {""}, - {"sphericalHarmonics",2184}, - {""}, - {"listMembersMissing",1150}, - {"windSpeedTrend4",2499}, - {"longitudeOfFirstGridPointInDegrees",1213}, - {""}, {""}, {""}, - {"keyData",1074}, - {""}, - {"doSimpleThinning",718}, - {"primaryMissingValue",1777}, - {"skew",2153}, - {""}, {""}, {""}, {""}, {""}, - {"waveFrequencyNumber",2473}, - {""}, - {"numberOfParallelsBetweenAPoleAndTheEquator",1479}, - {""}, - {"typicalMinute",2374}, - {""}, {""}, {""}, {""}, - {"probContinous",1779}, - {""}, - {"reservedSection4",1875}, - {"numberOfDistinctSection6s",1443}, - {""}, - {"coordinate3Flag",598}, - {""}, {""}, {""}, {""}, {""}, - {"minuteOfModelVersion",1334}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfComponents",1428}, - {"secondOfModelVersion",2030}, - {""}, {""}, - {"totalInitialConditions",2301}, - {""}, {""}, {""}, {""}, {""}, - {"typicalHour",2373}, - {""}, {""}, {""}, {""}, - {"rdbtimeMinute",1831}, - {""}, {""}, {""}, - {"grib2LocalSectionPresent",923}, - {""}, - {"attributeOfTile",324}, - {""}, - {"section3Padding",2065}, - {""}, {""}, - {"md5Structure",1309}, - {""}, {""}, {""}, - {"typeOfIntervalForFirstAndSecondWavelength",2346}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierResolutionSubSetParameterN",367}, - {"correction1",614}, - {""}, {""}, {""}, - {"spatialSmoothingOfProduct",2179}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"rdbtimeHour",1830}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"packingType",1627}, {"DyInMetres",44}, - {"grib2LocalSectionNumber",922}, - {""}, - {"selectedFcIndex",2118}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"epsStatisticsContinous",788}, + {"verificationMonth",2488}, + {""}, + {"startOfRange",2226}, + {"correction2",615}, + {""}, {""}, {""}, + {"orderingConvention",1616}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfIterations",2352}, + {"n2",1376}, + {""}, + {"numberOfValues",1536}, + {""}, {""}, {""}, + {"primaryMissingValue",1788}, + {"timeCoordinateDefinition",2326}, + {""}, {""}, {""}, + {"windSpeedTrend4",2548}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"sizeOfLength",2176}, + {"rdbtimeMinute",1843}, + {""}, {""}, {""}, + {"longitudeFirstInDegrees",1210}, + {""}, {""}, {""}, {""}, + {"sp2",2196}, + {"deletePV",692}, + {"minuteOfModelVersion",1340}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"listOfParametersUsedForClustering",1168}, + {""}, + {"secondOfModelVersion",2054}, + {""}, + {"spare2",2202}, + {""}, {""}, + {"La2",101}, + {""}, {""}, {""}, {""}, + {"scaledValueOfDistributionFunctionParameter",2007}, + {"Lar2",109}, + {"marsStream2",1280}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Latin2",114}, + {""}, {""}, {""}, + {"Lo2",124}, + {""}, {""}, {""}, {""}, {""}, + {"Lor2",144}, + {""}, {""}, + {"masterTablesVersionNumber",1288}, + {""}, + {"LcyInMetres",119}, + {"md5Section5",1310}, + {""}, + {"secondDimensionCoordinateValueDefinition",2047}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"operationalForecastCluster",1608}, + {"LoVInDegrees",128}, + {"verifyingMonth",2490}, + {""}, {""}, {""}, {""}, {""}, + {"LuyInMetres",149}, + {""}, + {"attributeOfTile",323}, + {"predefined_grid_values",1763}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfPrimeMeridianOffset",1987}, + {""}, {""}, {""}, + {"unpackedError",2446}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"masterTablesVersionNumberLatest",1289}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"nameOfSecondFixedSurface",1386}, + {"totalInitialConditions",2343}, + {""}, + {"significanceOfReferenceDateAndTime",2167}, + {""}, {""}, {""}, {""}, {"bitMapIndicator",371}, - {""}, - {"frequencyScalingFactor",903}, - {""}, - {"gts_TTAAii",948}, - {"totalTileAttCombo",2320}, - {""}, {""}, - {"typeOfFirstFixedSurface",2341}, - {""}, {""}, {""}, - {"reservedNeedNotBePresent",1871}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsStream1",1273}, + {""}, {""}, + {"packingError",1636}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lowerThreshold",1239}, - {""}, {""}, - {"windDirectionTrend4",2488}, + {"windDirectionTrend4",2537}, + {""}, + {"aerosolbinnumber",305}, {""}, {""}, {""}, {""}, - {"combinationOfAttributesOfTile",564}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfOctectsForNumberOfPoints",1475}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"DxInDegrees",40}, {""}, {""}, {""}, - {"SecondOfModelVersion",230}, - {"groupLengths",942}, - {""}, {""}, - {"inputProcessIdentifier",1012}, + {"SecondOfModelVersion",229}, + {""}, + {"subSetM",2264}, + {"lengthOfIndexTemplate",1139}, {""}, {""}, {""}, {""}, - {"monthOfModelVersion",1360}, - {""}, {""}, {""}, - {"expandedOriginalCodes",798}, - {"extremeClockwiseWindDirection",849}, - {"expandedOriginalWidths",801}, - {"resolutionAndComponentFlags",1877}, - {""}, {""}, {""}, - {"ijDirectionIncrementGiven",989}, - {""}, - {"primaryMissingValueSubstitute",1778}, - {"tileIndex",2281}, - {"matrixOfValues",1290}, - {"LcyInMetres",120}, + {"biFourierResolutionSubSetParameterN",366}, + {"monthOfModelVersion",1367}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection5",1584}, {""}, {""}, - {"startOfHeaders",2190}, - {""}, - {"centreLatitudeInDegrees",411}, - {"monthlyVerificationMonth",1364}, - {""}, {""}, {""}, {""}, {""}, - {"section_10",2106}, - {""}, {""}, {""}, {""}, {""}, - {"LuyInMetres",150}, + {"primaryMissingValueSubstitute",1789}, + {""}, {""}, {""}, + {"xDirectionGridLengthInMetres",2563}, {""}, {""}, {""}, {""}, - {"maxLevelValue",1292}, - {""}, {""}, {""}, - {"extractedAreaNumberOfSubsets",847}, - {""}, {""}, {""}, - {"Lar2InDegrees",111}, - {""}, {""}, {""}, - {"secondLatitudeInDegrees",2026}, - {"resolutionAndComponentFlags8",1884}, - {""}, {""}, - {"section2Pointer",2060}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"forecastOrSingularVectorNumber",888}, - {""}, {""}, {""}, - {"coordAveragingTims",591}, - {"Lor2InDegrees",146}, - {""}, {""}, - {"is_ocean2d_param",1052}, - {""}, {""}, - {"expandedOriginalScales",800}, + {"monthlyVerificationMonth",1371}, {""}, - {"latitudeOfNorthWestCornerOfArea",1102}, - {"longitudeOfNorthWestCornerOfArea",1218}, - {"firstDimensionCoordinateValueDefinition",869}, - {""}, {""}, {""}, {""}, {""}, - {"extendedFlag",811}, + {"table2Version",2277}, + {"probContinous",1790}, {""}, {""}, {""}, {""}, - {"typeOfHorizontalLine",2344}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"M",155}, + {"tsectionNumber4",2370}, {""}, {""}, - {"extractSubsetIntervalEnd",844}, - {""}, - {"radiusOfCentralCluster",1818}, - {""}, {""}, {""}, {""}, - {"section6Pointer",2079}, - {""}, - {"extractSubsetIntervalStart",845}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"listOfParametersUsedForClustering",1162}, + {"section4Pointer",2098}, + {"isectionNumber4",1063}, {""}, {""}, {""}, - {"scaledValueOfAdditionalParameterForReferencePeriod",1983}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsConversionScaleFactor",2394}, - {""}, {""}, {""}, {""}, {""}, - {"coordAveraging0",587}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongXAxis",1490}, - {""}, - {"n2",1369}, - {""}, - {"expandedOriginalReferences",799}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataCategory",635}, - {"latitudeOfIcosahedronPole",1099}, - {"stepForClustering",2203}, + {"extremeClockwiseWindDirection",850}, {""}, {""}, {""}, - {"numberOfCoordinatesValues",1431}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"averaging2Flag",328}, - {""}, {""}, {""}, - {"Lar1InDegrees",109}, - {"sp2",2169}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section1Pointer",2057}, - {""}, - {"scaleFactorOfPrimeMeridianOffset",1967}, - {"lengthOfHeaders",1132}, - {""}, {""}, - {"spare2",2175}, - {""}, - {"yCoordinateOfSubSatellitePoint",2519}, - {"La2",102}, - {""}, {""}, - {"constantFieldHalfByte",583}, - {"Lor1InDegrees",144}, - {""}, - {"Lar2",110}, - {""}, {""}, {""}, - {"conceptsDir1",572}, - {"md5TimeDomainSection",1310}, - {""}, {""}, {""}, {""}, {""}, - {"Latin2",115}, - {""}, {""}, {""}, - {"Lo2",125}, - {""}, {""}, - {"azimuthalWidth",331}, - {""}, {""}, - {"Lor2",145}, - {""}, {""}, {""}, {""}, - {"numberInTheAuxiliaryArray",1404}, - {""}, - {"cloudsTitle1",519}, - {""}, {""}, {""}, {""}, - {"numberOfColumns",1427}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tsectionNumber4",2327}, - {""}, - {"windVariableDirectionTrend2",2507}, - {""}, - {"isectionNumber4",1057}, - {""}, {""}, {""}, - {"numberOfCodedValues",1424}, - {""}, - {"md5DataSection",1295}, - {""}, {""}, {""}, {""}, {""}, - {"II",87}, - {"La2InDegrees",103}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"doExtractArea",715}, - {""}, {""}, {""}, - {"Lo2InDegrees",126}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"formatVersionMajorNumber",898}, - {"originatingCentreOfAnalysis",1615}, - {""}, {""}, - {"shapeOfTheEarth",2133}, - {""}, {""}, {""}, - {"averaging1Flag",327}, - {""}, {""}, {""}, {""}, {""}, - {"tiggeLAMName",2270}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"XRInMetres",272}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfDistanceFromEnsembleMean",1985}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"section6",2077}, - {""}, {""}, {""}, {""}, - {"numberOfDistinctSection3s",1440}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"updateSequenceNumber",2412}, - {""}, {""}, - {"baseTimeEPS",338}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"swapScanningX",2238}, - {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend1",2506}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stepUnits",2211}, - {""}, {""}, {""}, {""}, {""}, - {"La1InDegrees",101}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"longitudeOfFirstDiamondCenterLine",1209}, - {""}, - {"longitudeOfFirstDiamondCentreLine",1210}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Lo1InDegrees",124}, - {""}, - {"typicalCentury",2369}, - {""}, {""}, {""}, {""}, {""}, - {"selectedMinute",2120}, - {""}, {""}, - {"presentTrend4",1758}, - {""}, - {"longitudeOfFirstDiamondCentreLineInDegrees",1211}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPoleInDegrees",1107}, - {""}, - {"sp1",2168}, - {""}, - {"dummy2",723}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"spare1",2174}, - {""}, {""}, - {"La1",100}, - {""}, {""}, {""}, {""}, {""}, - {"Lar1",108}, - {""}, {""}, {""}, - {"xDirectionGridLengthInMetres",2514}, - {""}, - {"yearOfCentury",2527}, - {""}, {""}, {""}, {""}, - {"Latin1",113}, + {"unpackedSubsetPrecision",2447}, {""}, {"bufrHeaderCentre",382}, - {""}, - {"Lo1",123}, - {""}, - {"endDayTrend1",746}, - {""}, {""}, - {"scaleFactorOfLengthOfSemiMinorAxis",1962}, - {"Lor1",143}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section1",2049}, - {""}, {""}, - {"fileConsistencyFlags",866}, - {"marsGrid",1257}, + {"formatVersionMajorNumber",902}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfLogicals",1476}, + {""}, + {"dummy2",723}, + {"azimuthalWidth",330}, + {""}, {""}, {""}, + {"section6Pointer",2106}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LLCOSP",98}, - {""}, - {"secondOrderOfDifferentWidth",2033}, - {"backgroundProcess",333}, - {""}, - {"isGridded",1038}, - {""}, {""}, {""}, - {"stepHumanReadable",2204}, - {""}, {""}, {""}, - {"reserved2",1869}, - {""}, {""}, - {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1425}, - {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1426}, - {""}, - {"marsType2",1277}, - {"X2",269}, - {""}, {""}, - {"runwayDepositState4",1903}, - {""}, {""}, - {"baseDateEPS",336}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfWaveDirections",1977}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfWaveDirectionSequenceParameter",1976}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfWaveFrequencies",1978}, + {"lengthIncrementForTheGroupLengths",1136}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfWavePeriodInterval",2367}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfValuesInUnpackedSubset",2316}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"verticalVisibilityCoded",2461}, - {"cloudsTitle4Trend4",538}, - {""}, {""}, - {"shortNameECMF",2136}, + {"conceptsDir2",572}, {""}, {""}, {""}, - {"compressedData",568}, + {"gribDataQualityChecks",930}, + {""}, {""}, + {"latitudeOfStretchingPoleInDegrees",1115}, {""}, {""}, {""}, - {"runwaySideCodeState4",1943}, - {"latitudeOfSubSatellitePoint",1110}, + {"level_value_list",1151}, {""}, - {"md5Product",1298}, + {"isotopeIdentificationNumber",1064}, {""}, {""}, {""}, {""}, {""}, - {"numberOfWaveFrequencies",1532}, - {"indicatorOfTypeOfLevel",1001}, - {"xDirectionGridLengthInMillimetres",2515}, - {""}, {""}, {""}, - {"totalNumberOfDataValuesMissingInStatisticalProcess",2305}, - {"timeDomainTemplateNumber",2286}, - {"numberOfWaveDirections",1531}, - {"windUnits",2500}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ls_labeling",1241}, - {""}, - {"unitsBias",2392}, - {""}, {""}, - {"typeOfEnsembleMember",2340}, - {""}, {""}, - {"section3Pointer",2066}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfRepresentativeMember",1502}, + {"typeOfCalendar",2379}, {""}, {""}, {""}, {""}, - {"is_ocean3d_param",1053}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localExtensionPadding",1177}, - {""}, - {"latitudeOfCentralPointInClusterDomain",1093}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_7",2113}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection2",1571}, - {""}, - {"reducedGrid",1847}, + {"cloudsTitle2",523}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"wrongPadding",2510}, + {"LLCOSP",97}, + {""}, {""}, + {"yCoordinateOfSubSatellitePoint",2568}, + {""}, {""}, + {"extractAreaWestLongitude",822}, + {""}, {""}, + {"lengthOfOriginatorLocalTemplate",1141}, + {""}, {""}, {""}, {""}, + {"qualityControl",1821}, + {""}, {""}, {""}, + {"xDirectionGridLengthInMillimetres",2564}, + {"southEastLatitudeOfLPOArea",2186}, + {""}, {""}, {""}, {""}, + {"reserved2",1888}, {""}, - {"normAtFinalTime",1386}, - {""}, {""}, - {"dummy1",722}, - {""}, {""}, - {"scaleFactorOfSecondWavelength",1971}, + {"lengthOfTimeRange",1143}, + {""}, {""}, {""}, + {"marsType2",1283}, + {""}, {""}, {""}, {""}, + {"correction3",617}, + {"thisMarsClass",2303}, + {""}, + {"localExtensionPadding",1183}, + {"Lar2InDegrees",110}, + {""}, {""}, {""}, + {"typeOfSecondFixedSurface",2400}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"missingValuesPresent",1349}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Lor2InDegrees",145}, + {""}, {""}, {""}, {""}, + {"normAtInitialTime",1395}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"timeRangeIndicator",2336}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"integerPointValues",1017}, - {"DjInDegrees",36}, - {""}, {""}, {""}, {""}, - {"subSetM",2230}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"flagForIrregularGridCoordinateList",879}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"GTSstr",78}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section5Pointer",2102}, + {"conceptsMasterMarsDir",577}, + {""}, + {"nameOfFirstFixedSurface",1385}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle1Trend4",523}, + {"correction1",613}, + {""}, {""}, {""}, {""}, {""}, + {"timeDomainTemplateNumber",2328}, + {""}, {""}, {""}, {""}, + {"numberOfOctectsForNumberOfPoints",1484}, + {""}, {""}, + {"longitudeOfStretchingPoleInDegrees",1231}, + {""}, {""}, + {"spatialSmoothingOfProduct",2206}, + {""}, + {"baseTimeEPS",337}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"groupInternalNodeK",944}, {""}, {""}, {""}, - {"scaleFactorOfWaveFrequencySequenceParameter",1979}, - {"endStepUnit",773}, - {"originatorLocalTemplateNumber",1618}, + {"grib2LocalSectionPresent",927}, + {""}, {""}, {""}, + {"averaging2Flag",327}, + {""}, {""}, {""}, + {"numberOfDistinctSection3s",1449}, + {""}, + {"marsStream1",1279}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_7",2140}, + {"stepHumanReadable",2238}, + {""}, {""}, + {"offsetSection2",1581}, + {""}, {""}, {""}, {""}, + {"windVariableDirectionTrend4",2558}, + {""}, {""}, {""}, {""}, {""}, + {"postAuxiliary",1754}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"grib2LocalSectionNumber",926}, + {""}, {""}, + {"totalNumberOfDataValuesMissingInStatisticalProcess",2347}, + {""}, {""}, {""}, {""}, {""}, + {"local_padding",1206}, + {""}, + {"biFourierSubTruncationType",367}, + {""}, + {"lengthOfTimeRangeForReferencePeriod",1144}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsConversionScaleFactor",2437}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfDataValues",1445}, + {"endDayTrend2",747}, + {"iScansNegatively",984}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags",1896}, + {""}, {""}, {""}, + {"numberOfComponents",1437}, + {"section2Pointer",2087}, + {""}, {""}, {""}, + {"La2InDegrees",102}, + {"indicatorOfUnitForTimeIncrement",1007}, + {""}, {""}, + {"X2",268}, + {""}, {""}, {""}, {""}, + {"productDefinitionTemplateNumberInternal",1801}, + {"temporalVicinityUnit",2299}, + {""}, + {"typeOfOriginalFieldValues",2392}, + {""}, {""}, {""}, + {"originatorLocalTemplateNumber",1628}, + {"firstDimensionCoordinateValueDefinition",870}, + {""}, {""}, {""}, + {"Lo2InDegrees",125}, + {""}, {""}, {""}, + {"longitudeOfFirstGridPointInDegrees",1219}, + {"mAngleMultiplier",1251}, {"centreForTable2",409}, {""}, {""}, - {"reserved1",1868}, - {""}, - {"pressureUnits",1775}, - {""}, - {"offsetSection6",1575}, - {""}, - {"marsType1",1276}, - {"X1",267}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windGust",2489}, + {"typeOfWavePeriodInterval",2410}, + {"frequencyNumber",906}, + {""}, {""}, + {"tsectionNumber5",2371}, {""}, {""}, {""}, {""}, {""}, - {"sizeOfLength",2149}, + {"7777",5}, + {"baseDateEPS",335}, + {"numberOfColumns",1436}, {""}, - {"section_07",2102}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend3",2508}, - {""}, {""}, - {"clusterMember10",541}, - {""}, {""}, - {"gribDataQualityChecks",926}, - {""}, {""}, - {"southEastLongitudeOfVerficationArea",2162}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"thisMarsClass",2262}, + {"missing_values",1350}, + {""}, {""}, {""}, + {"typicalCentury",2412}, + {""}, {""}, {""}, {""}, + {"stepRangeInHours",2241}, + {"scaledValueOfDistanceFromEnsembleMean",2006}, + {"TIDE",236}, + {""}, {""}, {""}, + {"secondsOfAnalysis",2071}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"spatialVicinityMissingData",2207}, + {""}, {""}, {""}, + {"boot_edition",377}, {""}, - {"missingValueManagement",1341}, + {"upperThresholdValue",2459}, + {""}, {""}, + {"cloudsTitle4Trend4",537}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"distinctLongitudes",714}, + {"typeOfFirstFixedSurface",2384}, + {""}, + {"radiusOfCentralCluster",1830}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"sectionLengthLimitForProbability",2120}, + {""}, {""}, {""}, + {"bitsPerValue",375}, + {"numberOfTimeRange",1524}, + {""}, + {"yearOfCentury",2576}, + {""}, {""}, + {"section9Length",2116}, + {""}, {""}, {""}, + {"longitudeOfFirstDiamondCenterLine",1215}, + {""}, + {"longitudeOfFirstDiamondCentreLine",1216}, + {"numberOfTimeRanges",1525}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"jIncrement",1072}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windSpeedTrend2",2546}, + {"longitudeOfFirstDiamondCentreLineInDegrees",1217}, + {""}, {""}, + {"section_07",2129}, + {"cloudsTitle3",528}, + {""}, {""}, {""}, + {"iScansPositively",985}, + {""}, {""}, + {"stepForClustering",2237}, + {"nTileAttCombo",1379}, + {""}, + {"runwayDepositState4",1922}, + {""}, + {"keyMore",1081}, + {""}, {""}, {""}, {""}, {""}, + {"tileAttribute",2319}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"N2",172}, + {"shapeOfVerificationArea",2161}, + {"reservedSection2",1892}, + {""}, + {"md5Section4",1309}, + {"conceptsDir1",571}, + {""}, {""}, + {"numberOfCoordinatesValues",1440}, + {""}, {""}, {""}, {""}, {""}, + {"quantileValue",1825}, + {""}, {""}, + {"firstDimensionPhysicalSignificance",871}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"driverInformationBlockAddress",720}, + {""}, {""}, {""}, {""}, + {"cloudsTitle1",518}, + {""}, {""}, + {"fileConsistencyFlags",867}, + {"heightPressureEtcOfLevels",960}, + {"versionOfModelClimate",2498}, + {""}, {""}, {""}, {""}, {""}, + {"runwaySideCodeState4",1962}, + {"section10Length",2077}, + {"secondOrderOfDifferentWidth",2057}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfAdditionalParameterForReferencePeriod",1971}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"primaryBitmap",1776}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"postAuxiliaryArrayPresent",1744}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GTS",77}, - {""}, {""}, - {"windSpeedTrend2",2497}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"jDirectionIncrement",1068}, + {"defaultCfVarName",676}, {""}, {""}, {""}, {""}, - {"flagForAnyFurtherInformation",878}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"latitudeOfFirstGridPointInDegrees",1097}, - {"numberOfClusters",1423}, + {"section8Length",2113}, + {""}, {""}, {""}, + {"XRInMetres",271}, {""}, - {"correction3",618}, + {"scaleFactorOfWaveDirections",1998}, + {"numberOfWaveFrequencies",1542}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfWaveDirections",1541}, + {""}, {""}, + {"scaleFactorOfWaveDirectionSequenceParameter",1997}, + {""}, + {"latitudeLongitudeValues",1098}, + {""}, + {"scaleFactorOfWaveFrequencies",1999}, + {""}, {""}, + {"expandedAbbreviations",791}, + {""}, {""}, + {"numberOfCodedValues",1433}, + {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags8",1903}, + {""}, {""}, + {"versionNumberOfExperimentalSuite",2495}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"packedValues",1635}, + {""}, {""}, {""}, {""}, {""}, + {"temporalVicinityProcessing",2296}, + {"centuryOfAnalysis",414}, + {""}, + {"inputOriginatingCentre",1014}, + {""}, + {"windVariableDirectionTrend2",2556}, + {""}, + {"section0Length",2074}, + {""}, {""}, {""}, + {"windDirectionTrend2",2535}, + {""}, + {"expandedOriginalCodes",798}, + {""}, + {"expandedOriginalWidths",801}, + {"NWPused",192}, + {""}, {""}, + {"swapScanningLat",2270}, + {"indicatorOfTypeOfLevel",1005}, + {""}, {""}, {""}, + {"selectedHour",2146}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"swapScanningLon",2271}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lowerThresholdValue",1246}, + {"NC",175}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"isectionNumber2",1061}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"doExtractSubsets",717}, {""}, {""}, {""}, - {"earthMajorAxis",728}, - {""}, {""}, {""}, - {"earthMinorAxisInMetres",731}, - {"legBaseTime",1126}, - {""}, - {"flagShowingPostAuxiliaryArrayInUse",881}, - {""}, {""}, {""}, {""}, - {"offsetSection1",1568}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LxInMetres",152}, + {"waveFrequencyNumber",2522}, {""}, {""}, {""}, {""}, {""}, - {"offsetEndSection4",1562}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"spaceUnitFlag",2171}, - {"numberOfPointsAlongASide",1485}, - {""}, {""}, - {"deleteCalendarId",689}, - {"thisExperimentVersionNumber",2261}, - {""}, {""}, - {"biFourierResolutionParameterM",364}, - {""}, {""}, - {"unitOfTimeRange",2390}, - {""}, - {"endOfMessage",768}, + {"expandedOriginalScales",800}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unstructuredGrid",2407}, - {""}, {""}, {""}, - {"numberOfPointsAlongAMeridian",1483}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"upperThresholdValue",2416}, - {""}, {""}, {""}, - {"section_4",2110}, - {""}, {""}, - {"halfByte",951}, - {""}, {""}, - {"monthOfEndOfOverallTimeInterval",1357}, - {"unstructuredGridType",2409}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endDayTrend3",748}, {""}, - {"instrumentType",1016}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfFirstWavelength",1960}, - {""}, - {"northWestLatitudeOfLPOArea",1391}, - {""}, {""}, {""}, - {"windDirectionTrend2",2486}, - {""}, {""}, - {"bufrdcExpandedDescriptors",385}, - {""}, - {"indexedStorageInternalNodeK",994}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudinalDirectionGridLength",1122}, - {""}, {""}, {""}, {""}, {""}, - {"centralLongitudeInMicrodegrees",405}, - {""}, - {"Dj",34}, - {"param_value_max",1704}, - {"heightPressureEtcOfLevels",956}, - {"selectedHour",2119}, + {"timeRangeIndicatorFromStepRange",2337}, + {"extendedFlag",811}, {""}, {""}, {""}, {""}, - {"DiGiven",31}, - {""}, {""}, {""}, - {"tablesLocalDir",2247}, - {""}, {""}, {""}, {""}, - {"coordinate2Start",597}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subDefinitions2",2221}, - {""}, - {"longitudeOfReferencePoint",1219}, - {""}, - {"legBaseDate",1125}, - {""}, - {"Yp",285}, - {""}, {""}, - {"unpackedSubsetPrecision",2404}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Yo",284}, - {"longitudeOfTangencyPoint",1228}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfGrid",2343}, - {"numberOfPointsInDomain",1494}, - {""}, - {"cloudsTitle4Trend2",536}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windSpeedTrend1",2496}, - {"conceptsMasterMarsDir",578}, - {""}, - {"observationType",1540}, - {""}, - {"rootGroupObjectHeaderAddress",1886}, - {""}, - {"N2",173}, - {""}, {""}, {""}, {""}, - {"rangeBinSpacing",1822}, - {"extractDateTimeYearStart",842}, - {"section_04",2099}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section1Flags",2054}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"startDateOfReferencePeriod",2189}, - {""}, - {"minuteOfEndOfOverallTimeInterval",1331}, - {""}, {""}, - {"DxInMetres",41}, - {"rootTablesDir",1888}, - {""}, {""}, {""}, {""}, - {"secondOfEndOfOverallTimeInterval",2027}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"southPoleOnProjectionPlane",2165}, - {"section7Length",2082}, - {""}, - {"numberOfPointsAlongSecondAxis",1487}, - {""}, - {"P_INST",218}, - {""}, - {"isRotatedGrid",1041}, - {""}, {""}, {""}, - {"northWestLatitudeOfVerficationArea",1392}, - {""}, {""}, - {"secondaryBitmap",2037}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"jPointsAreConsecutive",1067}, {"P2",214}, {""}, {""}, {""}, - {"BufrTemplate",19}, + {"typeOfAuxiliaryInformation",2378}, + {""}, {""}, {""}, + {"selectedMinute",2147}, {""}, - {"componentIndex",567}, - {"packedValues",1625}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate1End",591}, + {""}, {""}, {""}, + {"scaleFactorOfSecondWavelength",1992}, {""}, - {"selectStepTemplateInstant",2115}, - {"tiggeSuiteID",2274}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinition2",2223}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle4Trend1",535}, + {"cloudsCode4",513}, {""}, - {"longitudeOfTheSouthernPoleOfProjection",1232}, + {"tileIndex",2322}, {""}, {""}, {""}, {""}, {""}, - {"versionOfModelClimate",2455}, + {"basicAngleOfTheInitialProductionDomain",339}, + {""}, {""}, {""}, {""}, {""}, + {"inputProcessIdentifier",1016}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractSubsetIntervalEnd",844}, + {""}, {""}, {""}, {""}, + {"cloudsTitle4Trend2",535}, + {""}, {""}, {""}, + {"extractSubsetIntervalStart",845}, + {""}, {""}, {""}, {""}, {""}, + {"endDayTrend1",746}, + {"expandedOriginalReferences",799}, + {"doSimpleThinning",718}, + {""}, {""}, {""}, + {"Lar1InDegrees",108}, + {""}, {""}, {""}, + {"mars_labeling",1284}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSouthEastCornerOfArea",1227}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Lor1InDegrees",143}, {""}, {""}, - {"scaledValueOfPrimeMeridianOffset",1998}, + {"biFourierResolutionParameterM",363}, + {"scaleFactorOfWaveFrequencySequenceParameter",2000}, + {"n3",1377}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterMember10",540}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfTangencyPoint",1234}, + {"offsetEndSection4",1572}, + {""}, {""}, {""}, {""}, + {"sp3",2197}, + {""}, {""}, + {"forecastOrSingularVectorNumber",892}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subDefinitions2",2255}, + {"spare3",2203}, + {""}, + {"marsGrid",1263}, + {""}, {""}, {""}, + {"earthMajorAxis",728}, + {""}, + {"md5Headers",1303}, + {""}, + {"qnhAPresent",1818}, + {"section3Pointer",2093}, + {""}, + {"monthOfEndOfOverallTimeInterval",1364}, + {"isGridded",1042}, + {""}, {""}, {""}, + {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1434}, + {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1435}, + {""}, {""}, {""}, + {"matrixOfValues",1296}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberInTheAuxiliaryArray",1413}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"frequencyScalingFactor",907}, + {""}, {""}, {""}, + {"reservedSection3",1893}, + {"maxLevelValue",1298}, + {""}, {""}, {""}, + {"selectedFcIndex",2145}, + {"averaging1Flag",326}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"verticalVisibilityCoded",2504}, + {"endOfMessage",768}, + {""}, + {"coordinate2End",594}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"firstMonthUsedToBuildClimateMonth2",875}, + {"stepUnits",2245}, + {"compressedData",567}, + {""}, {""}, + {"presentTrend4",1769}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"_numberOfValues",293}, + {""}, {""}, + {"typicalMonth",2418}, + {""}, + {"tiggeLAMName",2311}, + {"unitsBias",2435}, + {"outerLoopTypeOfStatisticalProcessing",1630}, + {""}, + {"latitudeOfCentralPointInClusterDomain",1099}, + {""}, {""}, + {"LxInMetres",151}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ijDirectionIncrementGiven",993}, + {""}, {""}, + {"section1Pointer",2084}, + {""}, {""}, {""}, + {"La1InDegrees",100}, + {""}, {""}, {""}, + {"subLocalDefinition2",2257}, + {""}, {""}, {""}, {""}, {""}, + {"centralLongitudeInMicrodegrees",405}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"missingValueManagement",1347}, + {""}, {""}, + {"Lo1InDegrees",123}, + {""}, {""}, + {"temporalVicinityTowardsFuture",2297}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"dataCategory",634}, + {""}, {""}, {""}, + {"reducedGrid",1859}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"remarkPresent",1880}, + {""}, {""}, + {"longitudeOfThePoleOfStretching",1235}, + {"default_min_val",687}, + {"totalTileAttCombo",2362}, + {"latitudeOfSouthernPoleInDegrees",1113}, + {""}, {""}, {""}, + {"numberOfClusters",1432}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"is_ocean2d_param",1058}, + {""}, + {"runwayFrictionCoefficientState4",1958}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfFirstWavelength",1980}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"sp1",2195}, + {"minuteOfEndOfOverallTimeInterval",1337}, + {"centreLatitudeInDegrees",411}, + {""}, {""}, {""}, {""}, + {"GTSstr",77}, + {""}, {""}, + {"secondOfEndOfOverallTimeInterval",2051}, + {""}, {""}, + {"spare1",2201}, + {""}, {""}, + {"La1",99}, + {""}, {""}, {""}, {""}, {""}, + {"Lar1",107}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"II",86}, + {""}, {""}, + {"secondLatitudeInDegrees",2050}, + {"Latin1",112}, + {"Yp",284}, + {""}, + {"hourOfEndOfOverallTimeInterval",970}, + {"Lo1",122}, + {""}, + {"template_is_experimental",2293}, + {""}, {""}, + {"stepInHours",2239}, + {"Lor1",142}, + {"Yo",283}, + {""}, {""}, {""}, + {"thisExperimentVersionNumber",2302}, + {""}, + {"biFourierResolutionSubSetParameterM",365}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section1",2076}, + {"windGust",2538}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfFirstGridPointInDegrees",1103}, + {""}, + {"subLocalDefinitionLength2",2259}, + {""}, {""}, {""}, {""}, {""}, + {"windVariableDirectionTrend3",2557}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfParallelsBetweenAPoleAndTheEquator",1488}, + {""}, {""}, {""}, + {"rdbtimeMonth",1844}, + {"windUnits",2549}, + {""}, {""}, {""}, + {"reserved3",1889}, + {""}, + {"extractDateTimeYearStart",842}, + {""}, {""}, {""}, {""}, {""}, + {"yearOfEndOfOverallTimeInterval",2577}, + {""}, {""}, {""}, + {"runwayDepositState2",1920}, + {""}, {""}, {""}, {""}, + {"primaryBitmap",1787}, + {""}, {""}, {""}, {""}, + {"DxInMetres",41}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"doExtractArea",715}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GTS",76}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwaySideCodeState2",1960}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"legBaseTime",1132}, + {""}, {""}, {""}, {""}, {""}, + {"secondaryMissingValue",2069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isTemplateDeprecated",1050}, + {""}, + {"cloudsTitle1Trend4",522}, + {""}, + {"windVariableDirectionTrend1",2555}, + {""}, {""}, {""}, {""}, {""}, + {"diffInHours",701}, + {"numberOfRepresentativeMember",1511}, + {""}, + {"parametersVersion",1727}, + {"mask",1285}, + {"clusterMember4",543}, + {"selectedYear",2150}, + {""}, {""}, {""}, + {"cloudsTitle4Trend3",536}, + {"earthMinorAxisInMetres",731}, + {"DELETE",24}, + {""}, {""}, {""}, + {"latitudeOfNorthWestCornerOfArea",1108}, + {""}, {""}, + {"latitudeOfSubSatellitePoint",1116}, + {""}, {""}, {""}, {""}, + {"LcxInMetres",117}, + {"localYear",1205}, + {"cfVarNameECMF",421}, + {""}, {""}, {""}, {""}, + {"NrInRadiusOfEarthScaled",202}, + {""}, {""}, {""}, + {"pack",1634}, + {""}, {""}, {""}, + {"endMinuteTrend4",760}, + {"endStepUnit",773}, + {"selectStepTemplateInstant",2142}, + {"LuxInMetres",147}, + {"offsetSection3",1582}, + {""}, {""}, {""}, + {"pressureUnits",1786}, + {""}, + {"bufrdcExpandedDescriptors",385}, + {""}, + {"cloudsTitle3Trend4",532}, + {""}, {""}, + {"dummy1",722}, + {""}, {""}, {""}, + {"cavokOrVisibility",391}, + {""}, {""}, + {"unstructuredGrid",2450}, + {"scaledValueOfPrimeMeridianOffset",2020}, + {""}, {""}, + {"halfByte",955}, + {""}, {""}, + {"WMO",263}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NrInRadiusOfEarth",201}, {""}, {"extractDateTimeHourStart",829}, {""}, - {"cloudsTitle3",529}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"parametersVersion",1715}, + {"unstructuredGridType",2452}, {""}, {""}, - {"selectedYear",2123}, - {""}, - {"lowerThresholdValue",1240}, - {"hourOfEndOfOverallTimeInterval",966}, - {""}, {""}, {""}, {""}, - {"numberOfPointsAlongAParallel",1484}, - {"LcxInMetres",118}, - {""}, {""}, - {"yCoordinateOfOriginOfSectorImage",2518}, - {""}, {""}, {""}, {""}, - {"n3",1370}, - {"cloudsTitle1Trend2",521}, - {"localYear",1199}, - {""}, {""}, {""}, {""}, {""}, - {"windDirectionTrend1",2485}, - {""}, - {"LuxInMetres",148}, - {""}, - {"offsetBeforeData",1558}, + {"unpack",2445}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierResolutionSubSetParameterM",366}, + {"percentileValue",1741}, + {""}, {""}, {""}, + {"scanningMode4",2037}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"firstWavelengthInMetres",879}, {""}, - {"offsetBSection9",1556}, + {"firstWavelengthInNanometres",880}, + {""}, {""}, + {"DjInDegrees",36}, + {""}, {""}, + {"firstWavelength",878}, + {""}, {""}, {""}, + {"latitudinalDirectionGridLength",1128}, + {"clusterMember6",545}, + {""}, {""}, {""}, + {"runwayFrictionCoefficientState2",1956}, + {""}, {""}, {""}, {""}, + {"cloudsTitle4Trend1",534}, + {"reserved1",1887}, + {""}, + {"flagForIrregularGridCoordinateList",883}, + {""}, {""}, + {"DiGiven",31}, + {"marsType1",1282}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfThePoleOfStretching",1229}, - {"isectionNumber2",1055}, - {"sp3",2170}, + {"legBaseDate",1131}, + {"patch_precip_fp",1737}, {""}, {""}, - {"oceanAtmosphereCoupling",1543}, - {"easternLongitudeOfClusterDomain",734}, - {""}, {""}, - {"runwayFrictionCoefficientState4",1939}, - {""}, {""}, {""}, - {"secondaryMissingValue",2042}, - {""}, - {"spare3",2176}, - {""}, - {"Product_Identifier",221}, - {"yearOfEndOfOverallTimeInterval",2528}, - {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend4",533}, - {""}, {""}, {""}, {""}, - {"subDefinitions1",2220}, - {""}, {""}, {""}, {""}, - {"padding_sec1_loc",1692}, - {""}, {""}, {""}, - {"section4Length",2069}, - {""}, {""}, {""}, {""}, {""}, - {"dateSSTFieldUsed",663}, - {"percentileValue",1729}, - {""}, {""}, {""}, {""}, - {"beginDayTrend4",344}, - {"produceLargeConstantFields",1785}, - {"secondaryBitmapPresent",2038}, - {""}, {""}, - {"formatVersionMinorNumber",899}, - {""}, {""}, - {"NC",176}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section7",1306}, - {"unstructuredGridSubtype",2408}, - {""}, - {"PUnset",216}, - {"coordinate1End",592}, - {""}, {""}, - {"N1",172}, - {""}, - {"longitudeOfSouthEastCornerOfArea",1221}, - {"subLocalDefinitionLength2",2225}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"firstMonthUsedToBuildClimateMonth2",874}, - {""}, - {"expandedCrex_scales",793}, - {""}, {""}, - {"jDirectionIncrementInDegrees",1065}, - {""}, {""}, {""}, - {"Model_Additional_Information",167}, - {""}, - {"TIDE",237}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle1Trend1",520}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"identificationOfOriginatingGeneratingCentre",984}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"uerraLocalVersion",2383}, - {""}, - {"clusterMember7",547}, - {""}, {""}, - {"xCoordinateOfSubSatellitePoint",2512}, - {""}, - {"meanRVR4",1314}, - {""}, {""}, - {"NrInRadiusOfEarthScaled",202}, - {""}, - {"P1",213}, - {"expandedCrex_units",794}, - {""}, - {"numberOfDistinctSection5s",1442}, - {""}, - {"coordinate2Flag",596}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NUT",191}, - {""}, {""}, {""}, {""}, {""}, - {"versionNumberOfExperimentalSuite",2452}, - {"stepInHours",2205}, - {""}, {""}, - {"LIMITS",97}, - {"falseEasting",859}, - {""}, - {"subLocalDefinition1",2222}, - {"alternativeRowScanning",308}, - {"presentTrend2",1756}, - {""}, - {"typicalYear",2378}, - {""}, {""}, {""}, - {"marsKeywords1",1260}, - {"Sub-Experiment_Identifier",234}, - {""}, {""}, {""}, {""}, - {"endDayTrend3",748}, - {""}, {""}, {""}, {""}, {""}, - {"NrInRadiusOfEarth",201}, - {""}, {""}, - {"qfeUnits",1804}, - {"numberOfClusterHighResolution",1421}, - {""}, - {"directionOfVariation",707}, - {"qnhUnits",1808}, - {"secondaryBitmaps",2039}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unpackedError",2403}, - {"firstMonthUsedToBuildClimateMonth1",873}, - {""}, {""}, - {"totalNumberOfWaveDirections",2317}, - {""}, {""}, - {"rdbtimeYear",1835}, - {"parameterUnits",1713}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMinorAxis",1993}, - {""}, - {"totalNumberOfWaveFrequencies",2318}, - {""}, - {"scanningMode7",2017}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfClusterLowResolution",1422}, - {""}, {""}, {""}, - {"Ensemble_Identifier",50}, - {""}, {""}, {""}, {""}, - {"secondaryBitmapsCount",2040}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetFromReferenceOfFirstTime",1565}, - {""}, {""}, - {"westernLongitudeOfClusterDomain",2478}, - {""}, {""}, {""}, {""}, - {"remarkPresent",1862}, - {""}, - {"packingError",1626}, + {"northWestLatitudeOfVerficationArea",1400}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section3Flags",2063}, - {""}, {""}, {""}, {""}, - {"runwayDepositState2",1901}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend4",2466}, - {""}, {""}, {""}, {""}, - {"tiggeLocalVersion",2271}, + {"section7Length",2109}, {""}, {""}, - {"scaledValueOfWaveDirectionSequenceParameter",2007}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sourceOfGridDefinition",2157}, - {"scaleFactorOfUpperLimit",1974}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"firstDimensionPhysicalSignificance",870}, - {""}, {""}, - {"METARstr",157}, - {""}, {""}, {""}, - {"totalNumberOfClusters",2304}, - {""}, {""}, - {"diffInHours",701}, - {""}, {""}, {""}, - {"subLocalDefinitionLength1",2224}, - {""}, {""}, {""}, {""}, - {"longitudeOfCentralPointInClusterDomain",1206}, - {""}, {""}, {""}, - {"reserved3",1870}, - {""}, {""}, {""}, {""}, {""}, - {"runwaySideCodeState2",1941}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"startStepUnit",2195}, - {""}, {""}, {""}, {""}, - {"cloudsTitle4Trend3",537}, - {""}, {""}, {""}, {""}, - {"reservedSection3",1874}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4",454}, - {"selectStepTemplateInterval",2116}, - {"cloudsCode4",514}, - {""}, {""}, {""}, {""}, {""}, - {"section11Pointer",2053}, - {""}, {""}, {""}, {""}, - {"numberOfUnexpandedDescriptors",1517}, - {""}, {""}, {""}, {""}, {""}, - {"expandedCrex_widths",795}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsedTileAttributes",1521}, + {"HDF5str",79}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentTrend1",1755}, - {"section5Pointer",2075}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"scaledValueOfSecondWavelength",2002}, - {"numberOfWaveFrequencySequenceParameters",1533}, - {"numberOfStepsUsedForClustering",1510}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsedTileAttributesForTileAttributeCombination",1522}, - {""}, {""}, {""}, - {"scaledValuesOfWaveDirections",2009}, - {"Nj",199}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfWaveDirectionSequenceParameters",1530}, - {""}, - {"secondaryMissingValueSubstitute",2043}, - {""}, - {"dataSubCategory",647}, - {""}, {""}, {""}, {""}, {""}, - {"clusterMember4",544}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberMissingFromAveragesOrAccumulations",1407}, - {""}, {""}, {""}, {""}, - {"Model_Identifier",168}, - {""}, {""}, - {"offsetSection3",1572}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endMinuteTrend4",760}, - {"forceStepUnits",885}, - {"scaledValueOfWaveFrequencySequenceParameter",2008}, - {""}, {""}, - {"numberOfPointsAlongXAxisInCouplingArea",1491}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfTangencyPoint",1112}, - {""}, {""}, {""}, - {"clusteringDomain",552}, - {""}, {""}, {""}, {""}, - {"runwayDepositState1",1900}, - {"numberIncludedInAverage",1406}, - {"scaledValuesOfWaveFrequencies",2010}, - {""}, {""}, - {"cloudsTitle1Trend3",522}, - {""}, - {"longitudeOfThePolePoint",1230}, - {"runwayFrictionCoefficientState2",1937}, - {""}, {""}, - {"cfVarNameECMF",421}, - {"WRAPstr",266}, - {""}, {""}, {""}, - {"swapScanningAlternativeRows",2235}, - {""}, - {"variationOfVisibilityDirection",2433}, - {""}, {""}, {""}, - {"cloudsTitle3Trend2",531}, - {""}, - {"variationOfVisibilityDirectionAngle",2434}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondOrderValuesDifferentWidths",2034}, - {""}, {""}, {""}, - {"section2Length",2058}, - {""}, {""}, - {"scanningMode4",2014}, - {""}, - {"deleteLocalDefinition",691}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"tempPressureUnits",2254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"runwaySideCodeState1",1940}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"gaussianGridName",909}, - {""}, {""}, - {"numberOfBits",1410}, - {""}, {""}, {""}, - {"typeOfReferenceDataset",2354}, - {""}, - {"section6Length",2078}, - {""}, {""}, {""}, {""}, {""}, - {"cavokOrVisibility",391}, - {"runwayDesignatorState4",1919}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"keyMore",1075}, - {""}, {""}, - {"scaleFactorOfCentralWaveNumber",1953}, - {"inputShortDelayedDescriptorReplicationFactor",1013}, - {""}, {""}, - {"rdb_key",1826}, - {"preBitmapValues",1747}, - {"correction2",616}, - {""}, {""}, - {"firstOrderValues",875}, - {""}, {""}, - {"GDSPresent",67}, - {"scaleFactorOfLowerWavePeriodLimit",1964}, - {""}, {""}, - {"runwayFrictionCoefficientState1",1936}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsedSpatialTiles",1519}, - {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend1",530}, - {""}, - {"************_PRODUCT_***************",3}, - {"WMO",264}, - {""}, {""}, {""}, - {"windSpeedTrend3",2498}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section1Length",2055}, - {""}, {""}, {""}, - {"iDirectionIncrementGiven",976}, - {""}, {""}, - {"section11Length",2052}, - {"localLatitude2",1183}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibility",2432}, - {"localUsePresent",1198}, - {""}, - {"endGridDefinition",751}, - {"dayOfForecastUsedInLocalTime",670}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"marsStream2",1274}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinateFlag2",605}, - {""}, {""}, - {"probabilityType",1782}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dateOfSSTFieldUsed",662}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetAfterData",1550}, - {""}, - {"section_2",2108}, - {"extractDateTimeMinuteEnd",830}, - {"mBasicAngle",1246}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMinuteStart",832}, - {""}, {""}, - {"secondaryBitmapsSize",2041}, - {""}, {""}, - {"probabilityTypeName",1783}, - {""}, {""}, {""}, - {"scaledValueOfFirstWavelength",1991}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMonthEnd",833}, - {""}, - {"YR",280}, - {""}, {""}, {""}, {""}, - {"extractDateTimeMonthStart",835}, - {""}, {""}, {""}, {""}, - {"METAR",156}, - {""}, {""}, {""}, {""}, {""}, - {"md5Section6",1305}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfContributingSpectralBands",1429}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforePL",1559}, - {""}, {""}, {""}, {""}, {""}, - {"localFlagLatestVersion",1179}, - {""}, {""}, - {"extractAreaNorthLatitude",820}, - {"latitudeWhereDxAndDyAreSpecified",1118}, - {""}, {""}, - {"theHindcastMarsStream",2259}, - {""}, - {"iDirectionIncrementGridLength",977}, - {"windDirectionTrend3",2487}, - {""}, {""}, {""}, - {"section_6",2112}, - {""}, {""}, {""}, {""}, - {"expandedUnits",803}, - {""}, {""}, - {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1119}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"jScansNegatively",1068}, - {""}, - {"southEastLongitudeOfLPOArea",2161}, - {""}, {""}, - {"section_02",2097}, - {""}, {""}, {""}, - {"jScansPositively",1069}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfReferencePoint",1103}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfRadarSitesUsed",1497}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"unpackedValues",2405}, - {""}, - {"MinuteOfModelVersion",159}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"extractDateTimeStart",839}, - {""}, {""}, {""}, {""}, - {"localTablesVersion",1193}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSubSatellitePointInDegrees",1111}, - {""}, {""}, {""}, {""}, {""}, - {"localLatitude1",1182}, - {""}, {""}, - {"subLocalDefinitionNumber2",2227}, - {""}, {""}, {""}, - {"extractDateTimeSecondEnd",836}, - {""}, {""}, {""}, - {"numberOfDataBinsAlongRadials",1432}, - {""}, {""}, {""}, {""}, - {"extractDateTimeSecondStart",838}, - {""}, - {"localLongitude2",1186}, - {""}, {""}, - {"conceptsDir2",573}, - {""}, {""}, - {"unexpandedDescriptors",2385}, - {""}, - {"typeOfSSTFieldUsed",2356}, - {""}, {""}, {""}, {""}, - {"NRj",189}, - {"coordinateFlag1",604}, - {"section_06",2101}, - {""}, - {"ITERATOR",90}, - {""}, - {"gribTablesVersionNo",928}, - {""}, {""}, - {"longitudeOfSouthernPole",1222}, - {"numberOfHorizontalPoints",1461}, - {""}, {""}, {""}, - {"cloudsTitle2",524}, - {""}, {""}, {""}, {""}, - {"dayOfTheYearDate",674}, - {""}, {""}, - {"section9UniqueIdentifier",2091}, - {"section_1",2105}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"section8UniqueIdentifier",2088}, - {""}, {""}, {""}, {""}, - {"numberOfControlForecastTube",1430}, - {""}, {""}, {""}, {""}, - {"uuidOfVGrid",2426}, - {""}, {""}, - {"unexpandedDescriptorsEncoded",2386}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"kindOfProduct",1077}, - {""}, {""}, {""}, {""}, {""}, - {"matchAerosolBinNumber",1284}, - {"typeOfPacking",2350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfDataPointsExpected",1435}, - {""}, {""}, {""}, - {"horizontalDomainTemplate",962}, - {""}, {""}, - {"MonthOfModelVersion",170}, - {""}, {""}, {""}, - {"pentagonalResolutionParameterK",1727}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"backgroundGeneratingProcessIdentifier",332}, - {"runwayFrictionCoefficientState3",1938}, - {""}, {""}, {""}, {""}, - {"DjInMetres",37}, - {"beginDayTrend2",342}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend3",532}, - {""}, {""}, {""}, {""}, {""}, - {"northWestLongitudeOfVerficationArea",1394}, - {"typicalMonth",2375}, - {"tsectionNumber3",2326}, - {""}, {""}, {""}, - {"isectionNumber3",1056}, - {"latitudeOfLastGridPoint",1100}, - {"section3Length",2064}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section_01",2096}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"expandBy",790}, - {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorState2",1917}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"NEAREST",180}, - {"rdbtimeMonth",1832}, - {""}, {""}, {""}, {""}, - {"qualityControlIndicator",1810}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"minuteOfStartOfReferencePeriod",1336}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondOfStartOfReferencePeriod",2031}, - {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState4",1931}, - {"padding_local40_1",1689}, - {""}, {""}, {""}, {""}, {""}, - {"meanRVR2",1312}, - {""}, - {"mixedCoordinateFieldFlag",1346}, - {""}, {""}, {""}, {""}, - {"cloudsCode1",499}, - {""}, {""}, {""}, {""}, - {"subLocalDefinitionNumber1",2226}, - {""}, {""}, - {"xCoordinateOfOriginOfSectorImage",2511}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersUsed4",1157}, - {""}, {""}, - {"localLongitude1",1185}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Latin2InDegrees",116}, - {""}, - {"endDayTrend2",747}, - {""}, - {"referenceForGroupWidths",1852}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"satelliteID",1947}, + {"monthOfAnalysis",1363}, + {"typeOfGrid",2386}, + {"updateSequenceNumber",2455}, {""}, {"endOfHeadersMarker",766}, + {"uerraLocalVersion",2426}, + {"classOfAnalysis",434}, + {""}, {""}, {""}, + {"cloudsTitle2Trend4",527}, + {"rangeBinSpacing",1834}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"kindOfProduct",1083}, + {""}, {""}, + {"easternLongitudeOfClusterDomain",734}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfThePolePoint",1236}, {""}, - {"extractAreaEastLongitude",817}, + {"scanningMode6",2039}, + {""}, {""}, {""}, {""}, + {"totalNumberOfWaveDirections",2359}, + {""}, {""}, + {"typicalYear",2421}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_10",2133}, + {""}, {""}, {""}, + {"windSpeedTrend3",2547}, + {"totalNumberOfWaveFrequencies",2360}, + {""}, {""}, {""}, + {"spaceUnitFlag",2198}, + {""}, + {"secondaryBitmap",2064}, + {""}, {""}, + {"directionOfVariation",707}, + {""}, {""}, {""}, {""}, + {"produceLargeConstantFields",1796}, + {"unitOfTimeRange",2433}, + {""}, {""}, {""}, {""}, {""}, + {"BufrTemplate",19}, + {""}, {""}, {""}, {""}, + {"yCoordinateOfOriginOfSectorImage",2567}, + {"extractedAreaNumberOfSubsets",847}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"rootGroupObjectHeaderAddress",1905}, + {""}, {""}, + {"typeOfIntervalForFirstAndSecondSize",2388}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorState1",1916}, + {"wrongPadding",2559}, + {"offsetSection1",1578}, + {"xCoordinateOfSubSatellitePoint",2561}, + {""}, + {"tiggeSuiteID",2315}, + {""}, {""}, {""}, {""}, + {"LIMITS",96}, + {""}, {""}, {""}, {""}, + {"deleteCalendarId",689}, + {"is_ocean3d_param",1059}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"firstMonthUsedToBuildClimateMonth1",874}, + {""}, + {"tablesLocalDir",2281}, + {""}, + {"temporalVicinityTowardsPast",2298}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"longitudeOfCentralPointInClusterDomain",1212}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"inputOverriddenReferenceValues",1011}, - {""}, - {"physicalMeaningOfVerticalCoordinate",1737}, + {"backgroundGeneratingProcessIdentifier",331}, {""}, {""}, - {"presentTrend3",1757}, - {""}, {""}, {""}, - {"Original_Parameter_Identifier",211}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"crraSuiteID",631}, - {""}, {""}, - {"codedNumberOfGroups",560}, + {"tiggeLocalVersion",2312}, {""}, - {"referenceForGroupLengths",1851}, - {""}, {""}, {""}, - {"typeOfProcessedData",2353}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend2",2464}, + {"cloudsTitle1Trend2",520}, {""}, {""}, {""}, {""}, - {"totalAerosolBinsNumbers",2300}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfUpperLimit",2005}, - {""}, {""}, {""}, - {"beginDayTrend1",341}, - {""}, {""}, {""}, - {"Latin1InDegrees",114}, - {""}, {""}, - {"verificationYear",2446}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"sizeOfPostAuxiliaryArray",2151}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"constantAntennaElevationAngle",582}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"projTargetString",1795}, - {""}, {""}, {""}, {""}, - {"runwayDepositState3",1902}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endStepInHours",772}, - {""}, {""}, {""}, - {"reservedSection2",1873}, + {"offsetBeforeData",1568}, + {""}, + {"longitudeOfSouthernPole",1228}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2",444}, + {"X1",266}, + {"longitudeOfReferencePoint",1225}, + {""}, {""}, {""}, + {"nameECMF",1383}, + {""}, + {"presentTrend2",1767}, + {""}, {""}, + {"formatVersionMinorNumber",903}, + {"oceanAtmosphereCoupling",1553}, + {"offsetBSection9",1566}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"meanRVR1",1311}, {""}, {""}, {""}, {""}, {""}, {""}, - {"projSourceString",1793}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetICEFieldsUsed",1566}, - {""}, {""}, - {"runwaySideCodeState3",1942}, - {""}, {""}, {""}, - {"longitudeLastInDegrees",1205}, - {""}, {""}, {""}, - {"experimentVersionNumber",805}, - {"totalNumberOfGridPoints",2309}, + {"observationType",1550}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1965}, + {"clusterMember5",544}, + {""}, + {"rootTablesDir",1907}, {""}, {""}, - {"numberOfGroups",1459}, + {"cloudsTitle3Trend2",530}, + {""}, {""}, + {"windDirectionTrend3",2536}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"horizontalDimensionProcessed",961}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsClass2",1250}, + {"secondaryBitmapPresent",2065}, + {""}, {""}, {""}, {""}, + {"dateOfAnalysis",654}, + {""}, {""}, {""}, + {"timeOfAnalysis",2331}, + {""}, + {"startDateOfReferencePeriod",2223}, + {""}, {""}, {""}, + {"unitsECMF",2439}, + {""}, + {"rdbtimeYear",1847}, + {""}, {""}, {""}, + {"MinuteOfModelVersion",158}, + {""}, + {"releaseStartYear",1879}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongFirstAxis",1486}, - {"pentagonalResolutionParameterJ",1726}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersUsed4",1163}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tsectionNumber3",2369}, + {"westernLongitudeOfClusterDomain",2527}, + {""}, {""}, + {"isectionNumber3",1062}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfHorizontalPoints",1470}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember2",542}, + {"section3Flags",2090}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Threshold_Or_Distribution_Units",250}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"WRAP",265}, + {"windSpeedTrend1",2545}, + {""}, + {"isRotatedGrid",1045}, + {"swapScanningX",2272}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scanningMode5",2038}, + {""}, {""}, {""}, + {"totalNumberOfClusters",2346}, + {""}, {""}, {""}, {""}, {""}, + {"identificationOfOriginatingGeneratingCentre",988}, + {""}, {""}, {""}, {""}, {""}, + {"selectStepTemplateInterval",2143}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"NUT",190}, + {""}, + {"N1",171}, + {"addEmptySection2",298}, + {""}, + {"falseEasting",860}, + {""}, + {"subLocalDefinitionNumber2",2261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"integerPointValues",1021}, + {""}, + {"cloudsTitle2Trend2",525}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordAveragingTims",590}, + {"_leg_number",292}, + {""}, {""}, {""}, + {"typeOfPacking",2393}, + {""}, + {"localLatitude2",1189}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondaryBitmaps",2066}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"PUnset",216}, + {""}, {""}, {""}, {""}, + {"normAtFinalTime",1394}, + {""}, {""}, + {"hourOfAnalysis",969}, + {""}, {""}, + {"unpackedValues",2448}, + {"theHindcastMarsStream",2300}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"section1Flags",2081}, + {""}, {""}, + {"variationOfVisibilityDirection",2476}, + {"Dj",34}, + {"secondaryMissingValueSubstitute",2070}, + {"MonthOfModelVersion",169}, + {""}, {""}, {""}, {""}, + {"variationOfVisibilityDirectionAngle",2477}, + {"secondaryBitmapsCount",2067}, + {""}, {""}, {""}, {""}, + {"unstructuredGridSubtype",2451}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"dateSSTFieldUsed",662}, + {""}, + {"secondOrderValuesDifferentWidths",2058}, + {""}, {""}, {""}, + {"numberOfClusterLowResolution",1431}, + {""}, {""}, + {"md5Section2",1307}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"yearOfAnalysis",2575}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windDirectionTrend1",2534}, + {""}, {""}, {""}, + {"coordinateFlag2",604}, + {"runwayFrictionCoefficientState3",1957}, + {""}, + {"typeOfAnalysis",2377}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfLowerWavePeriodLimit",1984}, + {""}, {""}, {""}, + {"indexedStorageInternalNodeK",998}, + {""}, + {"numberOfClusterHighResolution",1430}, + {"instrumentType",1020}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"sourceOfGridDefinition",2184}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfValuesInUnpackedSubset",2358}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_4",2137}, + {""}, + {"clusterMember2",541}, + {"firstOrderValues",876}, + {""}, {""}, + {"recentWeather",1852}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValuesOfWaveDirections",2032}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P1",213}, + {""}, {""}, {""}, {""}, {"endMinuteTrend2",758}, + {"extractDateTimeMinuteEnd",830}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeMinuteStart",832}, + {""}, + {"alternativeRowScanning",307}, + {""}, + {"scaledValueOfAdditionalParameterForReferencePeriod",2004}, + {""}, {""}, + {"variationOfVisibility",2475}, + {""}, {""}, {""}, {""}, + {"coordAveraging0",586}, + {""}, + {"beginDayTrend4",343}, + {""}, + {"gaussianGridName",913}, + {"originatingCentreOfAnalysis",1625}, + {""}, {""}, {""}, {""}, + {"southPoleOnProjectionPlane",2192}, + {""}, {""}, + {"runwayFrictionCoefficientState1",1955}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"extractDateTimeMonthEnd",833}, + {""}, {""}, {""}, + {"scaledValueOfWaveDirectionSequenceParameter",2030}, + {""}, {""}, + {"extractDateTimeMonthStart",835}, + {""}, {""}, + {"scaledValuesOfWaveFrequencies",2033}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"METARstr",156}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberInMixedCoordinateDefinition",1403}, + {"section_6",2139}, + {"localLongitude2",1192}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetFromReferenceOfFirstTime",1575}, + {""}, {""}, {""}, {""}, {""}, + {"dataSubCategory",646}, + {""}, {""}, {""}, {""}, {""}, + {"nameLegacyECMF",1384}, + {""}, {""}, + {"latitudeOfTangencyPoint",1118}, + {""}, {""}, {""}, {""}, + {"rdb_key",1838}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2",503}, + {""}, {""}, {""}, {""}, + {"subDefinitions1",2254}, {""}, {""}, {""}, - {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2364}, + {"cloudsTitle1Trend3",521}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P_INST",218}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endMonthTrend4",764}, + {"localFlagLatestVersion",1185}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend1",2463}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfPointsAlongTheXAxis",1488}, + {""}, {""}, {""}, {""}, {""}, + {"section_04",2126}, + {""}, {""}, + {"minutesAfterReferenceTimeOfDataCutoff",1344}, + {""}, {""}, {""}, + {"latitudeWhereDxAndDyAreSpecified",1124}, + {""}, {""}, + {"marsClass2",1256}, + {"northWestLatitudeOfLPOArea",1399}, + {""}, {""}, {""}, {""}, + {"marsKeywords1",1266}, + {"ls_labeling",1247}, + {""}, {""}, {""}, + {"cloudsTitle3Trend3",531}, + {""}, {""}, {""}, + {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1125}, + {""}, {""}, {""}, + {"scaledValueOfSecondWavelength",2025}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"realPartOf00",1837}, - {"clusterMember6",546}, + {"runwayDepositState3",1921}, + {""}, + {"Sub-Experiment_Identifier",233}, + {""}, {""}, {""}, {""}, + {"GDSPresent",66}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"section11Pointer",2080}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend4",528}, - {""}, {""}, {""}, - {"changeIndicatorTrend4",427}, + {"cloudsTitle1Trend1",519}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinition1",2256}, + {"scaledValueOfWaveFrequencySequenceParameter",2031}, + {""}, + {"meanRVR4",1320}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfWaveFrequencySequenceParameters",1543}, + {""}, + {"runwaySideCodeState3",1961}, + {""}, + {"section4Length",2096}, + {""}, {""}, + {"md5Section3",1308}, + {""}, + {"section_06",2128}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfWaveDirectionSequenceParameters",1540}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSingularVectorsComputed",1507}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLMULT",288}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"nameECMF",1376}, + {"cloudsTitle3Trend1",529}, {""}, - {"hoursAfterReferenceTimeOfDataCutoff",973}, + {"dayOfTheYearDate",673}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState4",1926}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongXAxis",1499}, + {"cloudsTitle2Trend3",526}, + {"resolutionAndComponentFlags7",1902}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityInKilometresTrend4",2509}, + {""}, {""}, {""}, + {"section6Length",2105}, + {""}, {""}, + {"Nj",199}, + {"Ensemble_Identifier",50}, + {""}, + {"tempPressureUnits",2289}, + {"md5Section1",1305}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_5",2138}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedCrex_scales",793}, + {"scaleFactorOfUpperLimit",1995}, {"extractDateTimeYearEnd",840}, + {""}, {""}, + {"offsetICEFieldsUsed",1576}, + {""}, {""}, {""}, {""}, + {"offsetBeforePL",1569}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"secondaryBitmapsSize",2068}, + {""}, {""}, {""}, + {"numberOfUnexpandedDescriptors",1527}, + {""}, {""}, + {"numberOfBits",1419}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"generalExtended2ordr",915}, + {""}, {""}, + {"combinationOfAttributesOfTile",563}, + {""}, + {"localTablesVersion",1199}, + {""}, {""}, {""}, {""}, + {"numberOfUsedTileAttributes",1531}, + {""}, {""}, + {"scaleFactorOfCentralWaveNumber",1972}, + {"subLocalDefinitionLength1",2258}, + {""}, {""}, {""}, + {"md5Section10",1306}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1",439}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"disableGrib1LocalSection",710}, - {""}, - {"latitudeFirstInDegrees",1090}, - {""}, - {"scaledValueOfCentralWaveNumber",1984}, - {""}, {""}, - {"offsetValuesBy",1580}, - {""}, {""}, {""}, {""}, - {"section2Used",2062}, - {"longitudeOfReferencePointInDegrees",1220}, - {""}, - {"runwayDepositCodeState4",1899}, - {""}, - {"scaledValueOfLowerWavePeriodLimit",1995}, - {"runwayDesignatorState3",1918}, - {""}, - {"runwayFrictionCodeValueState2",1929}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"legacyGaussSubarea",1128}, - {"scanningMode6",2016}, - {"numberOfBytesPerInteger",1417}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"unitsECMF",2396}, - {""}, {""}, {""}, {""}, - {"numberOfSingularVectorsEvolved",1508}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"definitionFilesVersion",688}, - {""}, {""}, {""}, {""}, - {"marsClass1",1249}, - {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combination_Number",49}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember1",540}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"modelErrorType",1349}, - {"extractDateTimeHourEnd",827}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedCrex_units",794}, {""}, {""}, {""}, {""}, {""}, {""}, - {"getNumberOfValues",917}, - {""}, {""}, {""}, {""}, {""}, - {"endMinuteTrend1",757}, + {"realPartOf00",1849}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend1",524}, + {""}, {""}, + {"numberOfStepsUsedForClustering",1520}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState4",1907}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState1",1928}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepositState1",1919}, + {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMinorAxis",1982}, {""}, - {"recentWeather",1840}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used",138}, - {"unstructuredGridUUID",2410}, - {""}, - {"monthlyVerificationYear",1366}, + {"componentIndex",566}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"localUsePresent",1204}, {""}, {""}, {""}, {""}, - {"numberOfSecondOrderPackedValues",1505}, + {"section5Length",2101}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_3",2109}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Total_Number_Members_Used",259}, + {"typeOfReferenceDataset",2397}, {""}, {""}, - {"numberOfDaysInClimateSamplingWindow",1437}, - {""}, {""}, - {"scaleFactorOfLengthOfSemiMajorAxis",1961}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"matrixBitmapsPresent",1289}, - {""}, {""}, - {"nameLegacyECMF",1377}, - {""}, {""}, {""}, - {"Date_E4",28}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"md5Section4",1303}, - {""}, {""}, {""}, {""}, - {"numberOfGroupsOfDataValues",1460}, - {""}, {""}, {""}, - {"numberOfPressureLevelsUsedForClustering",1496}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"outerLoopTypeOfTimeIncrement",1621}, - {""}, {""}, {""}, {""}, {""}, - {"reflectivityCalibrationConstant",1861}, - {""}, {""}, {""}, - {"localTablesVersionNumber",1194}, - {"Local_Number_Members_Possible",134}, - {"mask",1279}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfAdditionalParametersForReferencePeriod",1417}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dateOfIceFieldUsed",659}, - {""}, - {"Total_Number_Members_Possible",258}, - {""}, {""}, {""}, {""}, {""}, - {"templatesMasterDir",2258}, - {"section_03",2098}, - {"pack",1624}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"northLatitudeOfDomainOfTubing",1390}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"eastLongitudeOfDomainOfTubing",733}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unpack",2402}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfWaveFrequencySequence",2366}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR4",1724}, - {"dateOfForecastUsedInLocalTime",658}, - {""}, {""}, {""}, - {"timeOfForecastUsedInLocalTime",2291}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing",130}, - {""}, {""}, {""}, {""}, - {"southLatitudeOfDomainOfTubing",2164}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOK",397}, - {""}, {""}, - {"resolutionAndComponentFlags7",1883}, - {"Total_Number_Members_Missing",257}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractAreaSouthLatitude",821}, - {"paramIdLegacyECMF",1702}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"offsetSection11",1570}, - {""}, {""}, {""}, {""}, - {"listMembersMissing4",1153}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsTitle2Trend2",526}, - {""}, {""}, {""}, - {"changeIndicatorTrend2",425}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"probProductDefinition",1781}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Headers",1297}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"observationDiagnostic",1538}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3",509}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"beginDayTrend3",343}, - {""}, - {"section5Length",2074}, - {""}, {""}, - {"hourOfForecastUsedInLocalTime",968}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"secondaryBitMap",2036}, - {""}, {""}, - {"coordinate2End",595}, - {""}, {""}, {""}, {""}, - {"section5",2073}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState3",1930}, - {""}, {""}, {""}, - {"timeUnitFlag",2296}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsTitle2Trend1",525}, - {""}, {""}, - {"yearOfForecastUsedInLocalTime",2530}, - {"changeIndicatorTrend1",424}, - {"sizeOfPostAuxiliaryArrayPlusOne",2152}, - {"westLongitudeOfDomainOfTubing",2477}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"meanRVR3",1313}, - {""}, {""}, {""}, - {"earthMajorAxisInMetres",729}, - {"checkInternalVersion",433}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"NC2",178}, - {""}, {""}, {""}, {""}, - {"lengthOf4DvarWindow",1131}, - {""}, - {"laplacianScalingFactorUnset",1085}, - {"runwayDepthOfDepositCodeState2",1905}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend4",458}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsUsed",1495}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState4",1935}, - {"variationOfVisibilityTrend4",2442}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityTrend4",2470}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfEarthMajorAxis",1956}, - {""}, {""}, - {"variationOfVisibilityDirectionTrend4",2438}, - {""}, {""}, - {"scaleFactorOfEarthMinorAxis",1957}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfGridInReference",1457}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeIncrementBetweenSuccessiveFields",2288}, - {""}, {""}, {""}, - {"resolutionAndComponentFlags4",1881}, - {""}, {""}, {""}, - {"md5Section5",1304}, - {""}, - {"numberOfBitsForScaledGroupLengths",1412}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend3",2465}, - {""}, {""}, {""}, {""}, {""}, - {"physicalFlag2",1736}, - {"DjGiven",35}, - {""}, {""}, - {"gribMasterTablesVersionNumber",927}, - {""}, {""}, - {"runwayDepthOfDepositCodeState1",1904}, - {""}, {""}, {""}, {""}, - {"horizontalDomainTemplateNumber",963}, - {""}, - {"northWestLongitudeOfLPOArea",1393}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1996}, - {""}, {""}, {""}, - {"SOH",227}, - {""}, {""}, {""}, {""}, {""}, - {"DELETE",24}, - {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1966}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3",449}, - {""}, {""}, {""}, - {"latitudeOfReferencePointInDegrees",1104}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"7777",5}, - {""}, - {"longitudeOfThePolePointInDegrees",1231}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"firstLatitudeInDegrees",872}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"NC1",177}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endMonthTrend2",762}, - {""}, - {"beginHourTrend4",348}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"clusterMember3",543}, - {""}, {""}, - {"padding_grid90_1",1635}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfGeneratingProcess",2342}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"CLNOMA",23}, - {""}, - {"endMinuteTrend3",759}, - {""}, {""}, {""}, {""}, - {"dateOfModelVersion",660}, - {""}, {""}, {""}, - {"timeOfModelVersion",2292}, - {"offsetSection5",1574}, - {""}, {""}, {""}, {""}, - {"section7UniqueIdentifier",2084}, - {""}, {""}, {""}, {""}, - {"padding_local_7_1",1691}, - {""}, - {"flagForNormalOrStaggeredGrid",880}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"physicalFlag1",1735}, - {"widthOfWidths",2483}, - {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend3",527}, - {""}, {""}, {""}, - {"changeIndicatorTrend3",426}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBytesInLocalDefinition",1415}, - {""}, {""}, {""}, - {"beginMinuteTrend4",352}, - {""}, {""}, {""}, {""}, - {"versionNumOfSharedHeaderMessageFormat",2451}, - {"accuracyMultipliedByFactor",297}, - {""}, {""}, - {"md5Section1",1299}, - {""}, {""}, {""}, {""}, - {"runwayDepositCodeState2",1897}, {"cfNameECMF",418}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"HDF5str",80}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc9_2",1685}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"baseTimeOfThisLeg",339}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"hourOfModelVersion",969}, - {""}, {""}, - {"spacingOfBinsAlongRadials",2172}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"countOfICEFieldsUsed",624}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section4UniqueIdentifier",2072}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend4",448}, + {"cloudsCode3",508}, {""}, - {"endMonthTrend1",761}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"radiusOfTheEarth",1820}, - {"pastTendencyRVR1",1721}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState2",1933}, - {"variationOfVisibilityTrend2",2440}, - {""}, {""}, {""}, {""}, - {"yearOfModelVersion",2531}, - {"runwayDepthOfDepositCodeState3",1906}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NEAREST",179}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwaySideCodeState1",1959}, {""}, {""}, {""}, - {"numberOfUsedTileAttributeCombinationsForTypeOfTile",1520}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMajorAxis",1992}, + {"inputShortDelayedDescriptorReplicationFactor",1017}, + {""}, {""}, {""}, + {"scaledValueOfFirstWavelength",2013}, + {""}, + {"numberOfUsedTileAttributesForTileAttributeCombination",1532}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"secondWavelength",2060}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend2",2436}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Date_E2",26}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"listOfWaveFrequencySequenceParameters",1166}, - {""}, {""}, {""}, {""}, {""}, - {"dayOfModelVersion",671}, - {""}, {""}, {""}, {""}, - {"generalExtended2ordr",911}, - {""}, - {"cloudsBase4",474}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"indexingTimeMM",999}, - {"baseDateOfThisLeg",337}, - {"cloudsAbbreviation1Trend4",443}, - {"shortNameLegacyECMF",2137}, - {""}, {""}, - {"runwayDepositCodeState1",1896}, - {"runwayDesignatorRVR4",1915}, + {"dayOfForecastUsedInLocalTime",669}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfSouthernPoleInDegrees",1223}, - {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState1",1932}, - {"variationOfVisibilityTrend1",2439}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_05",2127}, {""}, - {"typeOfWavelengthInterval",2368}, + {"radiusOfTheEarth",1832}, {""}, {""}, {""}, - {"Less_Than_Or_To_Overall_Distribution",121}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersUsed3",1156}, - {""}, {""}, {""}, {""}, {""}, - {"NH",183}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc9_1",1684}, - {"padding_loc7_1",1683}, + {"extractDateTimeHourEnd",827}, + {"numberOfPointsInDomain",1503}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode1",498}, {""}, - {"variationOfVisibilityDirectionTrend1",2435}, + {"YR",279}, {""}, - {"coordinate4OfFirstGridPoint",602}, - {"padding_loc6_1",1682}, - {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumberOfAnalysis",808}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc5_1",1681}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfUsefulPointsAlongXAxis",1523}, - {""}, {""}, {""}, {""}, - {"subdivisionsOfBasicAngle",2232}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDataPointsExpected",1444}, {""}, {""}, {""}, - {"latitudeOfLastGridPointInDegrees",1101}, + {"SOH",227}, + {""}, + {"dateOfSSTFieldUsed",661}, + {""}, {""}, + {"endStepInHours",772}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend4",755}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"qfeUnits",1816}, + {"Model_Identifier",167}, {""}, {""}, - {"listMembersMissing2",1151}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"tileGrouping",2280}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc50_1",1680}, - {""}, {""}, {""}, {""}, - {"visibilityTrend1",2467}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DayOfModelVersion",29}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsCode2",504}, - {""}, {""}, {""}, {""}, - {"numberOfBytesOfFreeFormatData",1416}, - {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend2",350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"windUnitsTrend4",2504}, - {""}, - {"offsetBeforePV",1560}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetFromOriginToInnerBound",1564}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section10",1300}, - {""}, {""}, - {"tsectionNumber5",2328}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"addEmptySection2",299}, - {""}, {""}, {""}, - {"pentagonalResolutionParameterM",1728}, - {""}, {""}, {""}, {""}, {""}, - {"Threshold_Or_Distribution_0_no_1_yes",249}, - {"latitudeOfThePolePoint",1114}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4",494}, - {""}, {""}, {""}, {""}, - {"Original_CodeTable_2_Version_Number",209}, - {""}, {""}, {""}, - {"commonBlock",565}, - {""}, - {"cloudsBaseCoded4Trend4",498}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"coordAveraging2",589}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend1",349}, - {""}, - {"jDirectionIncrementGiven",1063}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend2",456}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend4",453}, - {"section6UniqueIdentifier",2080}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qualityValueAssociatedWithParameter",1811}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState3",1934}, - {"variationOfVisibilityTrend3",2441}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfEarthMajorAxis",1987}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfEarthMinorAxis",1988}, + {"qnhUnits",1820}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"*********_EXTRA_DATA_***************",4}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags2",1879}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"parameterUnits",1725}, {""}, - {"variationOfVisibilityDirectionTrend3",2437}, + {"jDirectionIncrementInDegrees",1071}, + {""}, + {"DjInMetres",37}, + {""}, + {"section2Length",2085}, + {""}, {""}, {""}, + {"gribTablesVersionNo",932}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState4",1911}, + {"numberInMixedCoordinateDefinition",1412}, + {"runwayFrictionCodeValueState4",1950}, + {"spatialVicinityType",2211}, + {"param_value_max",1716}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSecondOrderPackedValues",1514}, + {""}, {""}, {""}, + {"latitudeOfReferencePoint",1109}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_2",2135}, + {"runwayDepthOfDepositCodeState2",1924}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_11",2107}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalMeaningOfVerticalCoordinate",1749}, {""}, {""}, - {"cloudsBaseCoded1Trend4",483}, + {"presentTrend3",1768}, + {""}, + {"numberOfUsedSpatialTiles",1529}, + {""}, + {"expandedCrex_widths",795}, + {""}, {""}, {""}, + {"extractDateTimeStart",839}, + {"latitudeOfLastGridPoint",1106}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"flagForAnyFurtherInformation",882}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"preBitmapValues",1758}, + {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondEnd",836}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondStart",838}, + {""}, + {"beginDayTrend2",341}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"clusteringDomain",551}, + {""}, {""}, + {"runwayDepositCodeState4",1918}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDataBinsAlongRadials",1441}, + {""}, + {"paramIdLegacyECMF",1714}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"startStepUnit",2229}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"deleteLocalDefinition",691}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"NC2",177}, + {"extractAreaNorthLatitude",820}, + {""}, {""}, + {"METAR",155}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfSSTFieldUsed",2399}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"widthOfWidths",2532}, + {""}, {""}, {""}, + {"unexpandedDescriptors",2428}, + {""}, {""}, + {"jPointsAreConsecutive",1073}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorState4",1938}, + {""}, {""}, + {"section_02",2124}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"jDirectionIncrementGridLength",1064}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NH",182}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"typeOfProcessedData",2396}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1997}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags6",1882}, + {"iDirectionIncrementGiven",980}, + {""}, {""}, {""}, + {"unexpandedDescriptorsEncoded",2429}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endGridDefinition",751}, + {"forceStepUnits",889}, + {""}, {""}, {""}, + {"presentTrend1",1766}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedUnits",803}, + {""}, {""}, {""}, {""}, + {"minuteOfStartOfReferencePeriod",1342}, + {""}, {""}, {""}, {""}, {""}, + {"endMonthTrend4",764}, + {""}, {""}, + {"secondOfStartOfReferencePeriod",2055}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordAveraging1",588}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend1",455}, - {"extractDateTimeEnd",826}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"g1conceptsLocalDirAll",906}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"beginHourTrend2",346}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"offsetToEndOf4DvarWindow",1579}, - {"numberInHorizontalCoordinates",1402}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"resolutionAndComponentFlags1",1878}, - {""}, {""}, {""}, - {"endMonthTrend3",763}, + {"meanRVR2",1318}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section3",1302}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"uuidOfHGrid",2425}, - {""}, {""}, {""}, {""}, - {"numberOfMissingValues",1472}, - {""}, - {"md5GridSection",1296}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityTrend4",2513}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfContributingSpectralBands",1438}, {""}, {""}, {""}, - {"latitudeOfThePoleOfStretching",1113}, - {"cloudsBase1",459}, + {"runwayFrictionCodeValueState2",1948}, + {"xCoordinateOfOriginOfSectorImage",2560}, + {""}, + {"expandBy",790}, + {""}, {""}, {""}, {""}, + {"AA",6}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber",805}, + {""}, {""}, {""}, {""}, + {"clusterMember3",542}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate3OfFirstGridPoint",599}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend3",351}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible_E4",137}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Local_Number_Members_Missing_E4",133}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"INBITS",88}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayDepositCodeState3",1898}, + {"Latin2InDegrees",115}, {""}, {""}, {""}, - {"hook_post_meta_data",958}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBaseCoded4Trend2",496}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR3",1723}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E4",53}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend2",446}, - {""}, {""}, {""}, - {"beginHourTrend1",345}, - {""}, {""}, {""}, - {"countOfGroupLengths",623}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section3UniqueIdentifier",2067}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"weightAppliedToClimateMonth1",2475}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"changeIndicatorTrend4",426}, {""}, - {"sourceSinkChemicalPhysicalProcess",2158}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"radiusOfClusterDomain",1819}, + {"listMembersMissing4",1159}, {""}, - {"cloudsBaseCoded4Trend1",495}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"recentWeatherTry",1841}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend2",441}, - {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR2",1913}, - {"cloudsBaseCoded1Trend2",481}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Minute_E4",162}, - {""}, - {"section_5",2111}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Date_E3",27}, - {""}, - {"latitudeOfSouthEastCornerOfArea",1105}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfParametersUsedForClustering",1480}, - {""}, {""}, {""}, - {"listMembersUsed2",1155}, + {"visibilityInKilometresTrend2",2507}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend4",493}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMinuteTrend3",759}, {""}, {""}, {""}, {""}, - {"intervalBetweenTimes",1025}, - {"cloudsCode4Trend4",518}, - {""}, {""}, - {"numberOfPointsAlongYAxis",1492}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1",479}, - {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend1",445}, + {"iDirectionIncrementGridLength",981}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend1",480}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"section_05",2100}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"endHourTrend2",753}, - {"superblockExtensionAddress",2234}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local11_1",1686}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityTrend3",2469}, - {""}, {""}, - {"beginYearTrend4",360}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"uvRelativeToGrid",2427}, - {""}, {""}, {""}, {""}, - {"cfVarNameLegacyECMF",422}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Number_Combination_Ensembles_1_none",204}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend1",440}, - {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR1",1912}, - {""}, {""}, {""}, {""}, {""}, - {"listMembersMissing3",1152}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend4",503}, - {"YRInMetres",281}, + {"horizontalDimensionProcessed",965}, {""}, - {"windUnitsTrend2",2502}, + {"ZLMULT",287}, + {"getNumberOfValues",921}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Product_Identifier",221}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionNumber1",2260}, + {""}, {""}, {""}, {""}, + {"************_PRODUCT_***************",3}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"NRj",188}, + {""}, {""}, {""}, {""}, + {"uuidOfVGrid",2469}, + {""}, + {"referenceForGroupWidths",1864}, + {""}, + {"localLatitude1",1188}, + {""}, + {"listMembersUsed2",1161}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"baseTimeOfThisLeg",338}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"indexingTimeMM",1003}, + {""}, + {"numberOfRadarSitesUsed",1506}, + {"codedNumberOfGroups",559}, + {""}, {""}, {""}, + {"section9UniqueIdentifier",2118}, + {"WRAPstr",265}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section3Length",2091}, + {""}, {""}, {""}, + {"typeOfWavelengthInterval",2411}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"satelliteID",1966}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDepthOfDepositCodeState3",1925}, + {"runwayFrictionCoefficientCodeState4",1954}, + {""}, + {"section11Length",2079}, + {"templatesMasterDir",2295}, + {"referenceForGroupLengths",1863}, {"endMark",756}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend4",356}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible_E2",135}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Local_Number_Members_Missing_E2",131}, - {"runwayExtentOfContaminationState4",1927}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"typeOfWaveDirectionSequence",2365}, - {""}, {""}, - {"mixedCoordinateDefinition",1345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc190_1",1650}, - {""}, {""}, {""}, {""}, {""}, - {"************_EXPERIMENT_************",2}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E2",51}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBaseCoded4Trend3",497}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend1",752}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windGustTrend4",2493}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsAbbreviation3Trend2",451}, - {""}, - {"missingValueManagementUsed",1342}, + {"coordinateFlag1",603}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordAveraging3",590}, + {"runwayDesignatorState2",1936}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc4_2",1679}, + {"sourceSinkChemicalPhysicalProcess",2185}, + {"localTablesVersionNumber",1200}, + {""}, + {"pentagonalResolutionParameterK",1739}, + {""}, + {"gribMasterTablesVersionNumber",931}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"verificationYear",2489}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondWavelengthInNanometres",2062}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfControlForecastTube",1439}, + {"crraSuiteID",630}, + {""}, {""}, + {"clusterMember1",539}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Model_Additional_Information",166}, + {""}, {""}, {""}, {""}, {""}, + {"section8UniqueIdentifier",2115}, + {"section1Length",2082}, + {""}, + {"probabilityType",1793}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend3",457}, + {"totalNumberOfGridPoints",2351}, + {""}, + {"horizontalDomainTemplate",966}, + {""}, {""}, {""}, + {"endMinuteTrend1",757}, + {"baseDateOfThisLeg",336}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"versionNumOfSharedHeaderMessageFormat",2494}, + {""}, {""}, {""}, + {"cloudsAbbreviation4",453}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState1",1923}, + {""}, {""}, {""}, {""}, + {"mixedCoordinateFieldFlag",1352}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_sec1_loc",1703}, + {""}, + {"numberIncludedInAverage",1415}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfSubSatellitePointInDegrees",1117}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"pentagonalResolutionParameterJ",1738}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"definitionFilesVersion",688}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Used",2089}, + {"transportModelUsed",2363}, + {""}, {""}, + {"numberMissingFromAveragesOrAccumulations",1416}, + {"modelErrorType",1355}, + {""}, {""}, {""}, {""}, + {"localLongitude1",1191}, + {""}, {""}, + {"changeIndicatorTrend2",424}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfThePolePoint",1120}, + {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLowerWavePeriodLimit",2017}, + {"longitudeLastInDegrees",1211}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"probabilityTypeName",1794}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5GridSection",1302}, + {""}, {""}, {""}, {""}, + {"secondaryBitMap",2063}, + {"runwayDepositCodeState2",1916}, + {""}, {""}, {""}, + {"numberOfBytesPerInteger",1426}, + {""}, {""}, {""}, {""}, + {"beginHourTrend4",347}, + {""}, + {"jScansNegatively",1074}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"HDF5",78}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"marsClass1",1255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractAreaEastLongitude",817}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"southEastLongitudeOfVerficationArea",2189}, + {"disableGrib1LocalSection",710}, + {"listMembersUsed3",1162}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"runwayFrictionCodeValueState3",1949}, + {"numberOfGroups",1468}, + {"numberOfSingularVectorsEvolved",1517}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayFrictionCoefficientCodeState2",1952}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Date_E4",28}, + {""}, {""}, {""}, + {"dateOfModelVersion",659}, + {""}, {""}, {""}, + {"timeOfModelVersion",2334}, + {""}, {""}, {""}, + {"inputOverriddenReferenceValues",1015}, + {""}, + {"beginMinuteTrend4",351}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"jScansPositively",1075}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"monthlyVerificationYear",1373}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"gts_TTAAii",952}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"qualityControlIndicator",1822}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeFirstInDegrees",1096}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"endMonthTrend2",762}, + {"runwayFrictionCodeValueState1",1947}, + {""}, {""}, {""}, {""}, + {"southEastLongitudeOfLPOArea",2188}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"postAuxiliaryArrayPresent",1755}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Y2",278}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayDepthOfDepositState2",1909}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"presentWeather2Present",1764}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windUnitsTrend1",2501}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"setToMissingIfOutOfRange",2131}, + {"Latin1InDegrees",113}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags3",1880}, + {"matrixBitmapsPresent",1295}, + {""}, {""}, {""}, {""}, + {"variationOfVisibilityTrend4",2485}, + {""}, {""}, {""}, {""}, + {"Ensemble_Combination_Number",49}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hourOfModelVersion",973}, + {""}, {""}, {""}, + {"section_3",2136}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing2",1157}, + {""}, {""}, {""}, + {"mBasicAngle",1252}, + {""}, + {"variationOfVisibilityDirectionTrend4",2481}, + {"runwayDesignatorState3",1937}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetAfterData",1560}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetValuesBy",1590}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"yearOfModelVersion",2580}, + {""}, {""}, + {"beginDayTrend3",342}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2407}, + {""}, {""}, + {"physicalFlag2",1748}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unstructuredGridUUID",2453}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"longitudeOfThePolePointInDegrees",1237}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfReferencePointInDegrees",1226}, + {""}, {""}, + {"numberOfSingularVectorsComputed",1516}, + {""}, + {"countOfICEFieldsUsed",623}, + {""}, + {"dayOfModelVersion",670}, + {"scaledValueOfUpperLimit",2028}, + {""}, {""}, {""}, {""}, + {"latitudeOfThePoleOfStretching",1119}, + {""}, {""}, + {"runwayDesignatorState1",1935}, + {""}, {""}, {""}, + {"shortNameLegacyECMF",2164}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"checkInternalVersion",432}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reflectivityCalibrationConstant",1873}, + {""}, {""}, + {"scaledValueOfCentralWaveNumber",2005}, + {""}, {""}, {""}, + {"changeIndicatorTrend3",425}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend2",349}, + {""}, {""}, {""}, {""}, + {"section_03",2125}, + {""}, {""}, + {"numberOfPressureLevelsUsedForClustering",1505}, + {"isCavok",1032}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4",473}, + {""}, {""}, + {"accuracyMultipliedByFactor",296}, + {""}, + {"projTargetString",1807}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLengthOfSemiMinorAxis",2015}, + {"ITERATOR",89}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSouthernPoleInDegrees",1229}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_1",2132}, + {"legacyGaussSubarea",1134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfGroupsOfDataValues",1469}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"projSourceString",1805}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOf4DvarWindow",1137}, + {"cloudsAbbreviation2",443}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState4",1930}, + {""}, {""}, {""}, + {"beginDayTrend1",340}, + {"commonBlock",564}, + {"meanRVR3",1319}, + {""}, + {"typeOfWaveFrequencySequence",2409}, + {""}, {""}, {""}, {""}, + {"changeIndicatorTrend1",423}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityTrend2",2483}, + {""}, + {"padding_local40_1",1700}, + {""}, {""}, + {"resolutionAndComponentFlags4",1900}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState3",1953}, + {""}, + {"northLatitudeOfDomainOfTubing",1398}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"WRAP",264}, + {"eastLongitudeOfDomainOfTubing",733}, + {""}, + {"visibilityInKilometresTrend3",2508}, + {""}, + {"NC1",176}, + {"variationOfVisibilityDirectionTrend2",2479}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfTheSouthernPoleOfProjection",1238}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"DayOfModelVersion",29}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"southLatitudeOfDomainOfTubing",2191}, + {""}, {""}, {""}, {""}, {""}, + {"dateOfIceFieldUsed",658}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"beginHourTrend2",345}, + {""}, + {"section7UniqueIdentifier",2111}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"resolutionAndComponentFlags6",1901}, + {""}, {""}, + {"section_01",2123}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate4OfFirstGridPoint",601}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState1",1951}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dateOfForecastUsedInLocalTime",657}, + {""}, {""}, {""}, + {"timeOfForecastUsedInLocalTime",2333}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Date_E2",26}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"meanRVR1",1317}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfPointsAlongASide",1494}, + {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1985}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfPointsAlongXAxisInCouplingArea",1500}, + {""}, {""}, {""}, + {"cloudsBaseCoded4",493}, + {""}, {""}, {""}, {""}, + {"matchAerosolBinNumber",1290}, + {"numberOfPointsAlongAMeridian",1492}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend4",497}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"spatialVicinityProcessingArgument2",2210}, + {"visibilityInKilometresTrend1",2506}, + {"westLongitudeOfDomainOfTubing",2526}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"sizeOfPostAuxiliaryArray",2178}, + {""}, {""}, {""}, {""}, + {"cloudsCode4Trend4",517}, + {""}, {""}, + {"hourOfForecastUsedInLocalTime",972}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"swapScanningAlternativeRows",2269}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endHourTrend4",755}, + {""}, {""}, {""}, {""}, + {"visibilityTrend2",2511}, + {""}, + {"extractDateTimeEnd",826}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfEarthMajorAxis",1975}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfEarthMinorAxis",1976}, + {""}, + {"earthMajorAxisInMetres",729}, + {"secondWavelengthInMetres",2061}, + {""}, {""}, + {"offsetSection11",1580}, + {"extractAreaSouthLatitude",821}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetToEndOf4DvarWindow",1589}, + {""}, + {"yearOfForecastUsedInLocalTime",2579}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"beginMinuteTrend3",350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"outerLoopTypeOfTimeIncrement",1631}, + {""}, {""}, + {"probProductDefinition",1792}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfPointsAlongSecondAxis",1496}, + {"runwayDepositCodeState3",1917}, + {""}, + {"beginMonthTrend4",355}, + {""}, {""}, {""}, {""}, + {"totalAerosolBinsNumbers",2342}, + {""}, + {"numberOfDaysInClimateSamplingWindow",1446}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2Present",1775}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"DjGiven",35}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"timeUnitFlag",2338}, + {""}, {""}, + {"flagForNormalOrStaggeredGrid",884}, + {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend1",348}, + {"variationOfVisibilityTrend3",2484}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongAParallel",1493}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityDirectionTrend3",2480}, + {"numberOfSpatialVicinityValues",1518}, + {""}, + {"latitudeOfReferencePointInDegrees",1110}, + {""}, {""}, + {"laplacianScalingFactorUnset",1091}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR4",1736}, + {"numberInHorizontalCoordinates",1411}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"horizontalDomainTemplateNumber",967}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used",137}, + {""}, {""}, + {"cloudsBaseCoded4Trend2",495}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfLevelECMF",2391}, + {""}, {""}, {""}, {""}, + {"Total_Number_Members_Used",258}, + {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityTrend1",2482}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMonthTrend3",763}, + {""}, {""}, {""}, + {"versionNumberOfSuperblock",2497}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode4Trend2",515}, + {"runwayDepthOfDepositState2",1928}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfUsedTileAttributeCombinationsForTypeOfTile",1530}, + {"runwayDepositCodeState1",1915}, + {""}, {""}, {""}, {""}, + {"typeOfGeneratingProcess",2385}, + {""}, + {"variationOfVisibilityDirectionTrend1",2478}, + {""}, {""}, + {"constantAntennaElevationAngle",581}, + {""}, + {"resolutionAndComponentFlags2",1898}, + {""}, + {"firstLatitudeInDegrees",873}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfGridInReference",1466}, + {"Local_Number_Members_Possible",133}, + {""}, {""}, {""}, + {"numberOfBitsForScaledGroupLengths",1421}, + {""}, {""}, {""}, {""}, + {"visibilityTrend3",2512}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing3",1158}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Total_Number_Members_Possible",257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"ccsdsCompressionOptionsMask",394}, - {"paramIdECMF",1701}, - {""}, {""}, {""}, - {"cloudsBaseCoded1Trend3",482}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Original_Parameter_Identifier",211}, + {""}, {""}, {""}, + {"numberOfMissingValues",1481}, + {""}, {""}, + {"uuidOfHGrid",2468}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfBytesInLocalDefinition",1424}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend2",491}, + {"visibilityTrend1",2510}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBBitmap",1553}, + {"numberOfPointsUsed",1504}, + {""}, {""}, + {"listOfWaveFrequencySequenceParameters",1172}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLBASE",287}, + {"hoursAfterReferenceTimeOfDataCutoff",977}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing",129}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"typeOfLevelECMF",2348}, - {""}, {""}, {""}, - {"padding_sec4_1",1697}, - {""}, {""}, {""}, {""}, - {"cloudsCode4Trend2",516}, - {""}, {""}, - {"padding_loc19_2",1655}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"presentWeather1Present",1759}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc18_2",1649}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_chemical_srcsink",1050}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend1",450}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend1",490}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"setPackingType",2130}, - {""}, {""}, - {"endYearTrend4",778}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Y1",276}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"beginHourTrend3",347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section2",1301}, - {""}, {""}, - {"cloudsCode4Trend1",515}, - {""}, {""}, - {"runwayDepthOfDepositState1",1908}, - {""}, - {"typicalYearOfCentury",2380}, - {"cloudsBase3",469}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"isCavok",1028}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember5",545}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend2",501}, + {"Total_Number_Members_Missing",256}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"spatialVicinityValue",2212}, + {""}, + {"endMonthTrend1",761}, + {""}, {""}, + {"timeIncrementBetweenSuccessiveFields",2330}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"pentagonalResolutionParameterM",1740}, + {""}, {""}, {""}, {""}, {""}, + {"spatialVicinityProcessingArgument1",2209}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc43",1689}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"section4UniqueIdentifier",2099}, + {"typeOfIntervalForFirstAndSecondWavelength",2389}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBSection6",1555}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforeBitmap",1557}, + {"ceilingAndVisibilityOK",397}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayStart",825}, + {"latitudeOfLastGridPointInDegrees",1107}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3Present",1780}, {""}, {""}, - {"runwayExtentOfContaminationState2",1925}, + {"cloudsAbbreviation3",448}, + {""}, {""}, {""}, + {"section6UniqueIdentifier",2107}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalFlag1",1747}, + {""}, {""}, + {"endHourTrend2",753}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"coordinate3OfFirstGridPoint",598}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"windUnitsTrend4",2553}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ECMWF",45}, + {""}, {""}, {""}, {""}, {""}, + {"observationDiagnostic",1548}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend4",482}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"paramIdECMF",1712}, + {""}, {""}, + {"presentWeather1Present",1770}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend3",496}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"beginHourTrend3",346}, + {""}, {""}, {""}, + {"section5UniqueIdentifier",2103}, + {""}, + {"sizeOfPostAuxiliaryArrayPlusOne",2179}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode1Trend4",502}, + {"cloudsBaseCoded3Trend4",492}, + {""}, {""}, + {"is_chemical_srcsink",1056}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsCode4Trend3",516}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Minute_E4",161}, + {""}, {""}, + {"recentWeatherTry",1853}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend4",512}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend4",457}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",308}, + {""}, {""}, {""}, + {"Date_E3",27}, + {"cloudsAbbreviation1",438}, + {""}, + {"cloudsBaseCoded4Trend1",494}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2",463}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfBytesOfFreeFormatData",1425}, + {""}, {""}, {""}, + {"cloudsBaseCoded2Trend4",487}, + {""}, + {"cloudsCode4Trend1",514}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsCode2Trend4",507}, + {""}, {""}, {""}, {""}, {""}, + {"superblockExtensionAddress",2268}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"ICPLSIZE",85}, + {"beginHourTrend1",344}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend4",513}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"hoursAfterDataCutoff",972}, - {""}, - {"Local_Number_Members_Possible_E3",136}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Local_Number_Members_Missing_E3",132}, - {""}, {""}, - {"scanningMode5",2015}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR2",1722}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"skipExtraKeyAttributes",2155}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc18_1",1648}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsCode1Trend1",500}, - {""}, - {"scaleFactorOfUpperWavePeriodLimit",1975}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E3",52}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_local1_1",1687}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"runwayExtentOfContaminationState1",1924}, - {""}, {""}, - {"padding_grid4_1",1632}, + {"offsetBSection6",1565}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section5UniqueIdentifier",2076}, - {""}, - {"cloudsAbbreviation2Trend3",447}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc10_1",1636}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR4_1",226}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Minute_E2",160}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ICPLSIZE",86}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3Present",1769}, - {""}, {""}, {""}, - {"XpInGridLengths",275}, - {""}, - {"padding_local_35",1690}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"beginMonthTrend1",353}, - {"cloudsAbbreviation1Trend3",442}, - {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR3",1914}, - {""}, {""}, {""}, - {"versionNumberOfSuperblock",2454}, - {""}, {""}, - {"cloudsBaseCoded3",489}, - {""}, {""}, {"RENAME",222}, {""}, {""}, {""}, - {"NG",182}, - {""}, {""}, {""}, - {"cloudsBaseCoded3Trend3",492}, - {""}, {""}, {""}, {""}, - {"extractAreaLongitudeRank",819}, - {""}, {""}, {""}, {""}, - {"numberOfGridUsed",1458}, - {""}, {""}, {""}, - {"numberOfReforecastYearsInModelClimate",1500}, + {"runwayDesignatorRVR4",1934}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E4",253}, + {""}, {""}, {""}, {""}, + {"numberOfUsefulPointsAlongXAxis",1533}, + {""}, {""}, {""}, + {"Y2",277}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsBaseCoded1Trend2",480}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"cloudsCode1Trend2",500}, + {"cloudsBaseCoded3Trend2",490}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"northWestLongitudeOfVerficationArea",1402}, + {""}, {""}, {""}, + {"runwayExtentOfContaminationState4",1946}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMajorAxis",1981}, + {"latitudeOfTheSouthernPoleOfProjection",1122}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfThePolePointInDegrees",1121}, + {""}, {""}, + {"cloudsCode3Trend2",510}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend4",447}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"intervalBetweenTimes",1029}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode4Trend3",517}, + {"radiusOfClusterDomain",1831}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"latitudeOfThePolePointInDegrees",1115}, - {""}, {""}, {""}, {""}, {""}, - {"Extra_Data_FreeFormat_0_none",55}, - {""}, {""}, - {"visibilityTrend2",2468}, - {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend2",358}, - {""}, {""}, - {"ccsdsBlockSize",393}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrHeaderSubCentre",383}, + {"cloudsBaseCoded2",483}, {""}, - {"NB",175}, - {""}, {""}, {""}, {""}, {""}, - {"listOfWaveDirectionSequenceParameters",1165}, + {"offsetBeforePV",1570}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ECMWF",45}, + {"cloudsBaseCoded2Trend2",485}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsBase3",468}, + {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend4",359}, + {""}, {""}, {""}, + {"northWestLongitudeOfLPOArea",1401}, {""}, {""}, - {"latitudeOfTheSouthernPoleOfProjection",1116}, + {"YRInMetres",280}, + {""}, {""}, + {"offsetBSection5",1564}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"CLNOMA",23}, + {"scaledValueOfMajorAxisOfOblateSpheroidEarth",2018}, + {"padding_loc9_2",1696}, + {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState3",1929}, + {"cloudsCode2Trend2",505}, + {""}, {""}, + {"typicalYear2",2422}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"cloudsBase1",458}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags3",1899}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local_7_1",1702}, + {""}, {""}, {""}, + {"numberOfParametersUsedForClustering",1489}, + {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend2",2551}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"tileGrouping",2321}, + {"INBITS",87}, + {""}, + {"oneMinuteMeanMaximumRVR4",1600}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section3UniqueIdentifier",2094}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfEarthMajorAxis",2008}, + {""}, {""}, {""}, {""}, + {"beginMonthTrend2",353}, + {"scaledValueOfEarthMinorAxis",2009}, + {""}, {""}, {""}, {""}, + {"typeOfWaveDirectionSequence",2408}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1986}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState2",1944}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"setPackingType",2157}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Minute_E2",159}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend2",455}, + {""}, + {"uvRelativeToGrid",2470}, + {""}, {""}, + {"experimentVersionNumberOfAnalysis",808}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState1",1927}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetFromOriginToInnerBound",1574}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"pastTendencyRVR2",1734}, + {""}, {""}, {""}, + {"resolutionAndComponentFlags1",1897}, + {""}, + {"FMULTE",64}, + {""}, + {"cloudsBaseCoded1Trend3",481}, + {""}, {""}, + {"jDirectionIncrementGiven",1069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordAveraging2",588}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3",488}, + {""}, {""}, {""}, + {"extractAreaLongitudeRank",819}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode1Trend3",501}, + {"cloudsBaseCoded3Trend3",491}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"endHourTrend3",754}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1",478}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend3",511}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend1",479}, + {"cloudsAbbreviation3Trend4",452}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",309}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDesignatorRVR2",1932}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"jDirectionIncrementGridLength",1070}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"cloudsCode1Trend1",499}, + {"cloudsBaseCoded3Trend1",489}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_2",1674}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierPackingModeForAxes",363}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"************_ENSEMBLE_**************",1}, - {""}, {""}, - {"cloudsCode1Trend3",502}, + {"cloudsBaseCoded2Trend3",486}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec3_1",1696}, - {"padding_grid1_2",1630}, - {""}, {""}, {""}, - {"cloudsCode3Trend2",511}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"windUnitsTrend3",2503}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationState3",1926}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc3_1",1678}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BUFR",18}, - {"windGustTrend2",2491}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc38_1",1677}, - {""}, {""}, {""}, - {"beginYearTrend1",357}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend1",510}, - {""}, {""}, {""}, - {"numberOfBitsContainingEachPackedValue",1411}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_local1_31",1688}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend3",452}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR2_1",224}, + {"countOfGroupLengths",622}, {""}, {""}, {""}, {""}, - {"padding_loc30_1",1673}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"unusedBitsInBitmap",2411}, + {"Threshold_Or_Distribution_Units",249}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Original_CodeTable_2_Version_Number",209}, + {""}, {""}, {""}, {""}, + {"cloudsCode3Trend1",509}, + {""}, + {"beginMonthTrend3",354}, + {""}, {""}, {""}, + {"cloudsAbbreviation1Trend4",442}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2Trend3",506}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfSouthEastCornerOfArea",1111}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsAbbreviation2Trend2",445}, + {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend1",352}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_local_35",1701}, + {"numberOfPointsAlongFirstAxis",1495}, + {""}, + {"cloudsBaseCoded2Trend1",484}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_grid90_1",1645}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endHourTrend1",752}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"ccsdsBlockSize",393}, + {""}, {""}, {""}, {""}, + {"ZLBASE",286}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_1",1629}, - {""}, {""}, {""}, - {"runwayDepthOfDepositState3",1910}, + {"cloudsCode2Trend1",504}, + {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR3",1735}, + {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend2",357}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState3",1945}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_OF",246}, + {"pastTendencyRVR1",1733}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend4",1036}, + {""}, {""}, {""}, {""}, + {"numberOfBitsContainingEachPackedValue",1420}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Hour_E4",84}, - {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR4",1590}, + {"missingValueManagementUsed",1348}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR2",1598}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend4",488}, + {"runwayExtentOfContaminationState1",1943}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"spacingOfBinsAlongRadials",2199}, + {""}, + {"extractDateTimeDayStart",825}, + {"mixedCoordinateDefinition",1351}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E4",132}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetBBitmap",1563}, + {""}, {""}, {""}, {""}, + {"endYearTrend4",778}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongTheXAxis",1497}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"windGustTrend4",2542}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalYearOfCentury",2423}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"listOfWaveDirectionSequenceParameters",1171}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Hour_E4",83}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc4_2",1690}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_FF",244}, - {"Time_Range_One_E2",251}, + {"Y1",275}, + {""}, {""}, {""}, {""}, {""}, + {"weightAppliedToClimateMonth1",2524}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR1_1",223}, - {""}, {""}, - {"P_TACC",219}, + {"CCCC",20}, + {""}, {""}, {""}, {""}, + {"section_11",2134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"subdivisionsOfBasicAngle",2266}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfUpperWavePeriodLimit",1996}, + {""}, {""}, {""}, {""}, + {"numberOfReforecastYearsInModelClimate",1509}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation3Trend2",450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Number_Combination_Ensembles_1_none",204}, + {""}, {""}, {""}, + {"windUnitsTrend3",2552}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsLegacyECMF",2441}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsLegacyECMF",2398}, - {""}, {""}, {""}, {"extractAreaLatitudeRank",818}, - {"windGustTrend1",2490}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"TYPE_FX",245}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongYAxisInCouplingArea",1493}, {""}, {""}, {""}, - {"endYearTrend2",776}, - {"ceilingAndVisibilityOKTrend4",401}, + {"offsetBeforeBitmap",1567}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend2",440}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E2",130}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"g1conceptsLocalDirAll",910}, + {""}, {""}, {""}, {""}, + {"Minute_E3",160}, + {""}, + {"NG",181}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"HourOfModelVersion",80}, + {""}, {""}, {""}, + {"cloudsAbbreviation4Trend3",456}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Ensemble_Identifier_E4",53}, + {""}, {""}, {""}, {""}, + {"padding_loc9_1",1695}, + {"padding_loc7_1",1694}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc6_1",1693}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"scaledValueOfLengthOfSemiMajorAxis",2014}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"NB",174}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordAveraging3",589}, + {""}, {""}, {""}, + {"FMULTM",65}, + {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend1",2550}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"qualityValueAssociatedWithParameter",1823}, + {"************_EXPERIMENT_************",2}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"setToMissingIfOutOfRange",2158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2",464}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"FMULTE",64}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend4",1032}, + {"padding_loc5_1",1692}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend3",512}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rootGroupSymbolTableEntry",1887}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfUpperWavePeriodLimit",2006}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ICEFieldsUsed",85}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"TYPE_OR",247}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheScaledGroupLengths",1414}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endYearTrend1",775}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid3_1",1631}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend2",1034}, + {""}, {""}, {""}, {""}, {""}, + {"hook_post_meta_data",962}, {""}, {""}, - {"setBitsPerValue",2126}, + {"runwayDesignatorRVR3",1933}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E4",48}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend1",454}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bufrHeaderSubCentre",383}, + {"LSTCUM",98}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"cfNameLegacyECMF",419}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend3",355}, + {"TYPE_OF",245}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ICEFieldsUsed",84}, + {""}, {""}, {""}, {""}, + {"coordAveraging1",587}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR3_1",225}, + {"endYearTrend2",776}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2",484}, + {"skipExtraKeyAttributes",2182}, {""}, {""}, {""}, - {"Minute_E3",161}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend2",486}, - {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend3",446}, + {"scaledValueOfMinorAxisOfOblateSpheroidEarth",2019}, + {"TYPE_FF",243}, + {""}, + {"windGustTrend2",2540}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc50_1",1691}, + {""}, {""}, + {"Ensemble_Identifier_E2",51}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"experimentVersionNumber2",807}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E3",252}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBaseCoded2Trend1",485}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc17_2",1647}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"beginYearTrend3",359}, - {""}, {""}, {""}, - {"numberOfVGridUsed",1525}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_PF",248}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber1",806}, + {""}, {""}, {""}, {""}, + {"Hour_E2",81}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend4",508}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend3",358}, + {"runwayDesignatorRVR1",1931}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc14_2",1644}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"LSTCUM",99}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_4",1641}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"FMULTM",65}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalYear2",2379}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"CCCC",20}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"windGustTrend3",2492}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Ensemble_Combinat_Number_0_none_E2",46}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc192_1",1654}, - {""}, {""}, {""}, {""}, {""}, - {"padding_grid50_1",1633}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState4",1923}, + {"oneMinuteMeanMinimumRVR4",1604}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayEnd",823}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"HourOfModelVersion",81}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Hour_E2",82}, - {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR2",1588}, - {""}, {""}, {""}, - {"cloudsBase4Trend4",478}, - {"oneMinuteMeanMinimumRVR4",1594}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_sec2_2",1694}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"HDF5",79}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc14_1",1643}, - {""}, {""}, - {"cloudsBaseCoded2Trend3",487}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_1",1651}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listOfUsedTileAttributesInCombination",1164}, - {""}, - {"padding_loc2_2",1672}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_2",1669}, - {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend2",399}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfTensOfThousandsOfYearsOfOffset",1512}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongTheYAxis",1489}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsBase1Trend4",463}, - {""}, {""}, - {"isCavokTrend2",1030}, - {""}, {""}, - {"endYearTrend3",777}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc37_2",1676}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR1",1587}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_1",1693}, - {""}, {""}, {""}, {""}, - {"cloudsCode2Trend2",506}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR4",854}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc2_1",1671}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_1",1668}, - {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend1",398}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc28_1",1667}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsCode2Trend1",505}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"At_least__Or_Distribut_Proportion_Of",14}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend1",1029}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc37_1",1675}, - {""}, {""}, {""}, {""}, - {"padding_grid5_1",1634}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E3",47}, - {""}, {""}, {""}, - {"beginMonthTrend2",354}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc20_1",1656}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayExtentOfContaminationCodeState2",1921}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend2",476}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc12_1",1637}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DIAG",25}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc16_1",1646}, - {"octetAtWichPackedDataBegins",1546}, - {""}, {""}, - {"runwayExtentOfContaminationCodeState1",1920}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E4",141}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend1",475}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC",163}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend2",461}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"X2InGridLengths",270}, - {""}, - {"cloudsBase3Trend4",473}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase1Trend1",460}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend3",507}, - {""}, - {"extremeValuesRVR2",852}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_2",1639}, - {""}, {""}, {""}, {""}, {""}, - {"X1InGridLengths",268}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR1",851}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxis",1501}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState3",1922}, + {"Local_Number_Members_Missing_E3",131}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_3",1653}, + {"cloudsBase4Trend4",477}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"indexingTimeHH",1001}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR3",1599}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfGridUsed",1467}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR2",1592}, + {"************_ENSEMBLE_**************",1}, + {""}, {""}, {""}, + {"cloudsAbbreviation2Trend1",444}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend3",477}, - {""}, {""}, {""}, {""}, {""}, - {"TYPE_AN",241}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Hour_E3",83}, {""}, {""}, - {"padding_loc13_1",1638}, - {"oneMinuteMeanMaximumRVR3",1589}, + {"padding_loc19_2",1665}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_3",1695}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"indexingTimeHH",997}, - {""}, - {"TYPE_CF",242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Original_Parameter_Iden_CodeTable2",210}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_3",1670}, - {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend3",400}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend3",462}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase3Trend2",471}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"extractDateTimeYearRank",841}, - {"isCavokTrend3",1031}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"oneMinuteMeanMinimumRVR1",1591}, + {""}, {""}, {""}, {""}, {""}, + {"padding_local11_1",1697}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend1",356}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_sec2_2",1705}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"setBitsPerValue",2153}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc18_2",1659}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBSection5",1554}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierPackingModeForAxes",362}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR3",853}, + {"padding_loc2_2",1682}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc29_2",1679}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase3Trend1",470}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeDayEnd",823}, + {""}, + {"oneMinuteMeanMaximumRVR1",1597}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"extractDateTimeHourRank",828}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LBC_Initial_Conditions",96}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"YearOfModelVersion",283}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather2PresentTrend4",1768}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfUsefulPointsAlongYAxis",1524}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E2",139}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_FX",244}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend4",1763}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_2",1684}, {""}, - {"bitsPerValueAndRepack",376}, - {""}, {""}, {""}, - {"gts_CCCC",947}, - {""}, {""}, {""}, {""}, - {"padding_loc27_2",1666}, + {"runwayExtentOfContaminationCodeState4",1942}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"octetAtWichPackedDataBegins",1556}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation3Trend3",451}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBase3Trend3",472}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Time_Range_Two_E4",256}, {""}, {""}, + {"cloudsBase4Trend2",475}, + {"Ensemble_Identifier_E3",52}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hoursAfterDataCutoff",976}, + {""}, {"extractDateTimeMinuteRank",831}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_sec4_1",1708}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"extractDateTimeMonthRank",834}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"TYPE_PF",247}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"genVertHeightCoords",910}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc13_3",1640}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend3",441}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_1",1665}, + {"numberOfTensOfThousandsOfYearsOfOffset",1522}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"wallClockInitialTimeOfExecutionSecond",2518}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc190_1",1660}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"precisionOfTheUnpackedSubset",1750}, + {"cloudsAbbreviation3Trend1",449}, + {""}, {""}, + {"TYPE_OR",246}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"extractDateTimeSecondRank",837}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR2",1602}, + {"flagShowingPostAuxiliaryArrayInUse",885}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"BUFR",18}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unusedBitsInBitmap",2454}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_2",1652}, + {"runwayExtentOfContaminationCodeState2",1940}, + {""}, {""}, {""}, + {"*********_EXTRA_DATA_***************",4}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"isCavokTrend3",1035}, + {"cloudsAbbreviation1Trend1",439}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"XpInGridLengths",274}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfUpperWavePeriodLimit",2029}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR3",1593}, + {"presentWeather2PresentTrend4",1779}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endYearTrend3",777}, + {""}, {""}, {""}, + {"padding_grid50_1",1643}, + {""}, {""}, {""}, {""}, + {"wallClockInitialTimeOfExecutionDay",2514}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend4",462}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windGustTrend3",2541}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend3",476}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBase3Trend4",472}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E4",136}, + {""}, {""}, + {"numberOfBitsUsedForTheScaledGroupLengths",1423}, + {""}, {""}, {""}, + {"Hour_E3",82}, + {""}, {""}, {""}, {""}, + {"isCavokTrend1",1033}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Time_Range_One_E4",252}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsBase4Trend1",474}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsBase2Trend4",467}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc17_2",1657}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondRank",837}, + {"endYearTrend1",775}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend4",401}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P_TACC",219}, + {"windGustTrend1",2539}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc37_2",1686}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_grid1_2",1640}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"experimentVersionNumber1",806}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState3",1941}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend2",460}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_sec2_3",1706}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"rootGroupSymbolTableEntry",1906}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend4",1773}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc15_1",1645}, + {"Less_Than_Or_To_Overall_Distribution",120}, + {""}, {""}, {""}, + {"padding_loc27_2",1676}, + {""}, {""}, {""}, + {"cloudsBase3Trend2",470}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayExtentOfContaminationCodeState1",1939}, + {"padding_loc29_3",1680}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_sec3_1",1707}, + {""}, + {"Time_Range_One_E2",250}, + {""}, + {"presentWeather3PresentTrend4",1784}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth2",1087}, + {"RVR4_1",226}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend2",465}, + {""}, {""}, + {"padding_loc3_1",1688}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_local1_1",1698}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"indexingTimeHHMM",1002}, + {""}, {""}, {""}, {""}, + {"padding_grid4_1",1642}, + {""}, {""}, {""}, + {"Extra_Data_FreeFormat_0_none",55}, + {""}, {""}, + {"presentWeather1PresentTrend4",1774}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC",162}, + {"padding_sec2_1",1704}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"genVertHeightCoords",914}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local1_31",1699}, + {""}, {""}, + {"padding_loc18_1",1658}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"presentWeather2PresentTrend2",1777}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc2_1",1681}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc10_1",1646}, + {"padding_loc38_1",1687}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc29_1",1678}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_1",1683}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E2",134}, + {""}, {""}, {""}, {""}, {""}, + {"padding_grid5_1",1644}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR3",1603}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc28_1",1677}, + {""}, {""}, + {"numberOfVGridUsed",1535}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth2",1093}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend3",461}, + {""}, {""}, {""}, + {"RVR2_1",224}, + {""}, {""}, {""}, + {"YearOfModelVersion",282}, + {""}, {""}, {""}, + {"padding_loc20_1",1666}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"TYPE_CF",241}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend3",471}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR4",63}, + {"ceilingAndVisibilityOKTrend2",399}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_One_E3",251}, + {"requestedByEntity",1885}, + {"cloudsBase1Trend1",459}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend4",468}, + {"numberOfPointsAlongYAxisInCouplingArea",1502}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR1",1601}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend1",469}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc14_2",1654}, + {""}, {""}, {""}, + {"cloudsBase2Trend3",466}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"presentWeather3PresentTrend2",1782}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsBase2Trend1",464}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc13_4",1651}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend2",1772}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E2",254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth1",1086}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"gts_CCCC",951}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"RVR3_1",225}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"wallClockInitialTimeOfExecutionMinute",2516}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_grid3_1",1641}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth1",1092}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR1_1",223}, + {"wallClockInitialTimeOfExecutionMonth",2517}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc37_1",1685}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_grid1_1",1639}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc13_5",1652}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend3",1778}, + {""}, + {"padding_loc27_1",1675}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc192_1",1664}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"extractDateTimeDayRank",824}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E3",135}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"precisionOfTheUnpackedSubset",1761}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc191_2",1662}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend1",1776}, + {""}, + {"padding_loc13_2",1649}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"listOfUsedTileAttributesInCombination",1170}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend3",400}, + {""}, {""}, {""}, + {"TYPE_AN",240}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR4",855}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"X2InGridLengths",269}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"presentWeather3PresentTrend3",1783}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend1",398}, + {""}, {""}, {""}, + {"numberOfUsefulPointsAlongYAxis",1534}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"extremeCounterClockwiseWindDirection",851}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc191_3",1663}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"presentWeather1PresentTrend3",1773}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc14_1",1653}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc191_1",1661}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR2",853}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc16_1",1656}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend1",1781}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc15_1",1655}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"presentWeather1PresentTrend1",1771}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"LBC_Initial_Conditions",95}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"DIAG",25}, + {""}, {""}, {""}, {""}, + {"padding_loc26_1",1674}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc12_1",1647}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"X1InGridLengths",267}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Local_Number_Members_Used_E4",140}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_FC",242}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"wallClockInitialTimeOfExecutionHour",2515}, + {""}, {""}, + {"extremeValuesRVR3",854}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_2",1670}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc13_3",1650}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR1",852}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"bitsPerValueAndRepack",376}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Time_Range_Two_E4",255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc245_2",1673}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E4",48}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_1",1648}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"GG",67}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_3",1671}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfPointsAlongTheYAxis",1498}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_1",1669}, + {"padding_loc23_1",1668}, + {"Missing_Model_LBC_E4",165}, + {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR4",63}, + {""}, {""}, {""}, {""}, {""}, {""}, {"ExtremeValuesInMaximumRVR4",59}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GG",68}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend2",1766}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lBB",1080}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc26_1",1664}, - {"Model_LBC_Member_Identifier",169}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E3",140}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"presentWeather1PresentTrend2",1761}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used_E2",138}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR2",61}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc21_1",1657}, + {"Time_Range_Two_E2",253}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend2",466}, - {""}, - {"P_TAVG",220}, + {"lBB",1086}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Threshold_Or_Distribution_0_no_1_yes",248}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"indexingTimeHHMM",998}, - {""}, {""}, {""}, {""}, - {"swapScanningY",2239}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E3",255}, - {"NINT_RITZ_EXP",185}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend1",1765}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR1",60}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBase2Trend1",465}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend1",1760}, + {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E2",46}, + {"padding_loc21_1",1667}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7585,51 +8184,100 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc245_1",1672}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather3PresentTrend2",1771}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc23_1",1658}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"TYPE_FC",243}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"GRIBEditionNumber",73}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeCounterClockwiseWindDirection",850}, + {"swapScanningY",2273}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Original_Parameter_Iden_CodeTable2",210}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR2",61}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Time_Range_Two_E3",254}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E3",47}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC_E2",163}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ExtremeValuesInMaximumRVR2",57}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"YY",281}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NINT_RITZ_EXP",184}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Model_LBC_Member_Identifier",168}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"ExtremeValuesRVR3",62}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc244_1",1659}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend3",467}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7637,21 +8285,64 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend1",1770}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR2",57}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR1",60}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState4",1895}, + {"GRIBEditionNumber",72}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState4",1914}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR4",1325}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR4",1319}, + {"Local_Number_Members_Used_E3",139}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7662,8 +8353,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"YpInGridLengths",286}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7675,13 +8364,62 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"YpInGridLengths",285}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC_E3",164}, + {"runwayBrakingActionState2",1912}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"ExtremeValuesInMaximumRVR3",58}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR2",1323}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"wallClockInitialTimeOfExecutionYear",2519}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"ExtremeValuesInMaximumRVR1",56}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend3",1767}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7694,10 +8432,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E4",166}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend3",1762}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7711,8 +8445,53 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"P_TAVG",220}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E4_0_no_1_yes",233}, + {"GRIB",68}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7725,8 +8504,287 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"runwayBrakingActionState3",1913}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR3",1324}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState1",1911}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR1",1322}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"GRIBEXSection1Problem",69}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"At_least__Or_Distribut_Proportion_Of",14}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_5",1642}, + {"numberOfUnusedBitsAtEndOfSection3",1528}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Y2InGridLengths",278}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Y1InGridLengths",276}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC",259}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7746,48 +8804,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"YY",282}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend3",1772}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_3",1661}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E2_0_no_1_yes",231}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState2",1893}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"meanValueRVR2",1317}, - {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR3",58}, + {"INGRIB",88}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7806,379 +8823,36 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB",69}, - {""}, {""}, {""}, {""}, - {"numberOfUnusedBitsAtEndOfSection3",1518}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"runwayBrakingActionState1",1892}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"meanValueRVR1",1316}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E2",164}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E3_0_no_1_yes",232}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc244_2",1660}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheGroupWidths",1422}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc245_1",1662}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState3",1894}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"meanValueRVR3",1318}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEXSection1Problem",70}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Y2InGridLengths",279}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E3",165}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AEC_PAD_RSI_OPTION_MASK",11}, - {""}, {""}, {""}, {""}, - {"Y1InGridLengths",277}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Used_Model_LBC",260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"INGRIB",89}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc245_2",1663}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"BUDG",17}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheGroupWidths",1413}, - {""}, {"BBB",16}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NINT_LOG10_RITZ",184}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"BUDG",17}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8232,6 +8906,11 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIBEX_boustrophedonic",71}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8297,89 +8976,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEX_boustrophedonic",72}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NINT_LOG10_RITZ",183}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8426,6 +9023,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"AEC_PAD_RSI_OPTION_MASK",11}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8473,7 +9072,138 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEXShBugPresent",71}, + {"Show_Combination_Ensem_E4_0_no_1_yes",232}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E2_0_no_1_yes",230}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"GRIBEXShBugPresent",70}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Show_Combination_Ensem_E3_0_no_1_yes",231}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8556,6 +9286,520 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIB_DEPTH",73}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E4",262}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E2",260}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E3",261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIB_LATITUDE",74}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"AEC_RESTRICTED_OPTION_MASK",12}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_DATA_SIGNED_OPTION_MASK",10}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8703,22 +9947,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Used_Model_LBC_E4",263}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8748,7 +9976,184 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB_DEPTH",74}, + {"GRIB_LONGITUDE",75}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8765,202 +10170,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Used_Model_LBC_E2",261}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Used_Model_LBC_E3",262}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB_LATITUDE",75}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"AEC_RESTRICTED_OPTION_MASK",12}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {"AEC_DATA_3BYTE_OPTION_MASK",7}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8994,10 +10203,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {"AEC_DATA_MSB_OPTION_MASK",8}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9305,168 +10511,130 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB_LONGITUDE",76}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"AEC_DATA_PREPROCESS_OPTION_MASK",9} }; -const struct grib_keys_hash * -grib_keys_hash_get ( const char *str, size_t len) +const struct grib_keys_hash* +grib_keys_hash_get(const char* str, size_t len) { - if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) - { - unsigned int key = hash_keys (str, len); + if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) { + unsigned int key = hash_keys(str, len); - if (key <= MAX_HASH_VALUE) - if (len == lengthtable[key]) - { - const char *s = wordlist[key].name; + if (key <= MAX_HASH_VALUE) + if (len == lengthtable[key]) { + const char* s = wordlist[key].name; - if (*str == *s && !memcmp (str + 1, s + 1, len - 1)) - return &wordlist[key]; - } + if (*str == *s && !memcmp(str + 1, s + 1, len - 1)) + return &wordlist[key]; + } } - return 0; + return 0; } /* * (C) Copyright 2005- ECMWF. diff --git a/tests/keys b/tests/keys index ba3aadd43..c3c16fe24 100644 --- a/tests/keys +++ b/tests/keys @@ -1,7 +1,7 @@ %{ #include "grib_api_internal.h" %} -struct grib_keys_hash { char* name; int id;}; +struct grib_keys_hash { const char* name; int id;}; %% ************_ENSEMBLE_**************,1 ************_EXPERIMENT_************,2 @@ -68,133 +68,133 @@ ExtremeValuesRVR3,62 ExtremeValuesRVR4,63 FMULTE,64 FMULTM,65 -FirstLatitude,66 -GDSPresent,67 -GG,68 -GRIB,69 -GRIBEXSection1Problem,70 -GRIBEXShBugPresent,71 -GRIBEX_boustrophedonic,72 -GRIBEditionNumber,73 -GRIB_DEPTH,74 -GRIB_LATITUDE,75 -GRIB_LONGITUDE,76 -GTS,77 -GTSstr,78 -HDF5,79 -HDF5str,80 -HourOfModelVersion,81 -Hour_E2,82 -Hour_E3,83 -Hour_E4,84 -ICEFieldsUsed,85 -ICPLSIZE,86 -II,87 -INBITS,88 -INGRIB,89 -ITERATOR,90 -ITN,91 -J,92 -JS,93 -K,94 -KS,95 -LBC_Initial_Conditions,96 -LIMITS,97 -LLCOSP,98 -LSTCUM,99 -La1,100 -La1InDegrees,101 -La2,102 -La2InDegrees,103 -LaD,104 -LaDInDegrees,105 -LaR,106 -Lap,107 -Lar1,108 -Lar1InDegrees,109 -Lar2,110 -Lar2InDegrees,111 -Latin,112 -Latin1,113 -Latin1InDegrees,114 -Latin2,115 -Latin2InDegrees,116 -Lcx,117 -LcxInMetres,118 -Lcy,119 -LcyInMetres,120 -Less_Than_Or_To_Overall_Distribution,121 -Lo,122 -Lo1,123 -Lo1InDegrees,124 -Lo2,125 -Lo2InDegrees,126 -LoR,127 -LoV,128 -LoVInDegrees,129 -Local_Number_Members_Missing,130 -Local_Number_Members_Missing_E2,131 -Local_Number_Members_Missing_E3,132 -Local_Number_Members_Missing_E4,133 -Local_Number_Members_Possible,134 -Local_Number_Members_Possible_E2,135 -Local_Number_Members_Possible_E3,136 -Local_Number_Members_Possible_E4,137 -Local_Number_Members_Used,138 -Local_Number_Members_Used_E2,139 -Local_Number_Members_Used_E3,140 -Local_Number_Members_Used_E4,141 -Lop,142 -Lor1,143 -Lor1InDegrees,144 -Lor2,145 -Lor2InDegrees,146 -Lux,147 -LuxInMetres,148 -Luy,149 -LuyInMetres,150 -Lx,151 -LxInMetres,152 -Ly,153 -LyInMetres,154 -M,155 -METAR,156 -METARstr,157 -MS,158 -MinuteOfModelVersion,159 -Minute_E2,160 -Minute_E3,161 -Minute_E4,162 -Missing_Model_LBC,163 -Missing_Model_LBC_E2,164 -Missing_Model_LBC_E3,165 -Missing_Model_LBC_E4,166 -Model_Additional_Information,167 -Model_Identifier,168 -Model_LBC_Member_Identifier,169 -MonthOfModelVersion,170 -N,171 -N1,172 -N2,173 -NAT,174 -NB,175 -NC,176 -NC1,177 -NC2,178 -NDSP,179 -NEAREST,180 -NFSP,181 -NG,182 -NH,183 -NINT_LOG10_RITZ,184 -NINT_RITZ_EXP,185 -NL,186 -NP,187 -NR,188 -NRj,189 -NT,190 -NUT,191 -NV,192 +GDSPresent,66 +GG,67 +GRIB,68 +GRIBEXSection1Problem,69 +GRIBEXShBugPresent,70 +GRIBEX_boustrophedonic,71 +GRIBEditionNumber,72 +GRIB_DEPTH,73 +GRIB_LATITUDE,74 +GRIB_LONGITUDE,75 +GTS,76 +GTSstr,77 +HDF5,78 +HDF5str,79 +HourOfModelVersion,80 +Hour_E2,81 +Hour_E3,82 +Hour_E4,83 +ICEFieldsUsed,84 +ICPLSIZE,85 +II,86 +INBITS,87 +INGRIB,88 +ITERATOR,89 +ITN,90 +J,91 +JS,92 +K,93 +KS,94 +LBC_Initial_Conditions,95 +LIMITS,96 +LLCOSP,97 +LSTCUM,98 +La1,99 +La1InDegrees,100 +La2,101 +La2InDegrees,102 +LaD,103 +LaDInDegrees,104 +LaR,105 +Lap,106 +Lar1,107 +Lar1InDegrees,108 +Lar2,109 +Lar2InDegrees,110 +Latin,111 +Latin1,112 +Latin1InDegrees,113 +Latin2,114 +Latin2InDegrees,115 +Lcx,116 +LcxInMetres,117 +Lcy,118 +LcyInMetres,119 +Less_Than_Or_To_Overall_Distribution,120 +Lo,121 +Lo1,122 +Lo1InDegrees,123 +Lo2,124 +Lo2InDegrees,125 +LoR,126 +LoV,127 +LoVInDegrees,128 +Local_Number_Members_Missing,129 +Local_Number_Members_Missing_E2,130 +Local_Number_Members_Missing_E3,131 +Local_Number_Members_Missing_E4,132 +Local_Number_Members_Possible,133 +Local_Number_Members_Possible_E2,134 +Local_Number_Members_Possible_E3,135 +Local_Number_Members_Possible_E4,136 +Local_Number_Members_Used,137 +Local_Number_Members_Used_E2,138 +Local_Number_Members_Used_E3,139 +Local_Number_Members_Used_E4,140 +Lop,141 +Lor1,142 +Lor1InDegrees,143 +Lor2,144 +Lor2InDegrees,145 +Lux,146 +LuxInMetres,147 +Luy,148 +LuyInMetres,149 +Lx,150 +LxInMetres,151 +Ly,152 +LyInMetres,153 +M,154 +METAR,155 +METARstr,156 +MS,157 +MinuteOfModelVersion,158 +Minute_E2,159 +Minute_E3,160 +Minute_E4,161 +Missing_Model_LBC,162 +Missing_Model_LBC_E2,163 +Missing_Model_LBC_E3,164 +Missing_Model_LBC_E4,165 +Model_Additional_Information,166 +Model_Identifier,167 +Model_LBC_Member_Identifier,168 +MonthOfModelVersion,169 +N,170 +N1,171 +N2,172 +NAT,173 +NB,174 +NC,175 +NC1,176 +NC2,177 +NDSP,178 +NEAREST,179 +NFSP,180 +NG,181 +NH,182 +NINT_LOG10_RITZ,183 +NINT_RITZ_EXP,184 +NL,185 +NP,186 +NR,187 +NRj,188 +NT,189 +NUT,190 +NV,191 +NWPused,192 Nassigned,193 Nb,194 Ncx,195 @@ -231,147 +231,147 @@ RVR3_1,225 RVR4_1,226 SOH,227 SPD,228 -SecondLatitude,229 -SecondOfModelVersion,230 -Show_Combination_Ensem_E2_0_no_1_yes,231 -Show_Combination_Ensem_E3_0_no_1_yes,232 -Show_Combination_Ensem_E4_0_no_1_yes,233 -Sub-Experiment_Identifier,234 -TAF,235 -TAFstr,236 -TIDE,237 -TS,238 -TScalc,239 -TT,240 -TYPE_AN,241 -TYPE_CF,242 -TYPE_FC,243 -TYPE_FF,244 -TYPE_FX,245 -TYPE_OF,246 -TYPE_OR,247 -TYPE_PF,248 -Threshold_Or_Distribution_0_no_1_yes,249 -Threshold_Or_Distribution_Units,250 -Time_Range_One_E2,251 -Time_Range_One_E3,252 -Time_Range_One_E4,253 -Time_Range_Two_E2,254 -Time_Range_Two_E3,255 -Time_Range_Two_E4,256 -Total_Number_Members_Missing,257 -Total_Number_Members_Possible,258 -Total_Number_Members_Used,259 -Used_Model_LBC,260 -Used_Model_LBC_E2,261 -Used_Model_LBC_E3,262 -Used_Model_LBC_E4,263 -WMO,264 -WRAP,265 -WRAPstr,266 -X1,267 -X1InGridLengths,268 -X2,269 -X2InGridLengths,270 -XR,271 -XRInMetres,272 -Xo,273 -Xp,274 -XpInGridLengths,275 -Y1,276 -Y1InGridLengths,277 -Y2,278 -Y2InGridLengths,279 -YR,280 -YRInMetres,281 -YY,282 -YearOfModelVersion,283 -Yo,284 -Yp,285 -YpInGridLengths,286 -ZLBASE,287 -ZLMULT,288 -_T,289 -_TS,290 -_anoffset,291 -_endStep,292 -_leg_number,293 -_numberOfValues,294 -accumulationInterval,295 -accuracy,296 -accuracyMultipliedByFactor,297 -activity,298 -addEmptySection2,299 -addExtraLocalSection,300 -additionalFlagPresent,301 -additionalParameter,302 -addressOfFileFreeSpaceInfo,303 -aerosolType,304 -aerosolTypeName,305 -aerosolbinnumber,306 -aerosolpacking,307 -alternativeRowScanning,308 -altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,309 -analysisOffsets,310 -angleDivisor,311 -angleMultiplier,312 -angleOfRotation,313 -angleOfRotationInDegrees,314 -angleOfRotationOfProjection,315 -angleSubdivisions,316 -anoffset,317 -anoffsetFirst,318 -anoffsetFrequency,319 -anoffsetLast,320 -applicationIdentifier,321 -assertion,322 -atmosphericChemicalOrPhysicalConstituentType,323 -attributeOfTile,324 -auxiliary,325 -average,326 -averaging1Flag,327 -averaging2Flag,328 -averagingPeriod,329 -avg,330 -azimuthalWidth,331 -backgroundGeneratingProcessIdentifier,332 -backgroundProcess,333 -band,334 -baseAddress,335 -baseDateEPS,336 -baseDateOfThisLeg,337 -baseTimeEPS,338 -baseTimeOfThisLeg,339 -basicAngleOfTheInitialProductionDomain,340 -beginDayTrend1,341 -beginDayTrend2,342 -beginDayTrend3,343 -beginDayTrend4,344 -beginHourTrend1,345 -beginHourTrend2,346 -beginHourTrend3,347 -beginHourTrend4,348 -beginMinuteTrend1,349 -beginMinuteTrend2,350 -beginMinuteTrend3,351 -beginMinuteTrend4,352 -beginMonthTrend1,353 -beginMonthTrend2,354 -beginMonthTrend3,355 -beginMonthTrend4,356 -beginYearTrend1,357 -beginYearTrend2,358 -beginYearTrend3,359 -beginYearTrend4,360 -biFourierCoefficients,361 -biFourierMakeTemplate,362 -biFourierPackingModeForAxes,363 -biFourierResolutionParameterM,364 -biFourierResolutionParameterN,365 -biFourierResolutionSubSetParameterM,366 -biFourierResolutionSubSetParameterN,367 -biFourierSubTruncationType,368 -biFourierTruncationType,369 +SecondOfModelVersion,229 +Show_Combination_Ensem_E2_0_no_1_yes,230 +Show_Combination_Ensem_E3_0_no_1_yes,231 +Show_Combination_Ensem_E4_0_no_1_yes,232 +Sub-Experiment_Identifier,233 +TAF,234 +TAFstr,235 +TIDE,236 +TS,237 +TScalc,238 +TT,239 +TYPE_AN,240 +TYPE_CF,241 +TYPE_FC,242 +TYPE_FF,243 +TYPE_FX,244 +TYPE_OF,245 +TYPE_OR,246 +TYPE_PF,247 +Threshold_Or_Distribution_0_no_1_yes,248 +Threshold_Or_Distribution_Units,249 +Time_Range_One_E2,250 +Time_Range_One_E3,251 +Time_Range_One_E4,252 +Time_Range_Two_E2,253 +Time_Range_Two_E3,254 +Time_Range_Two_E4,255 +Total_Number_Members_Missing,256 +Total_Number_Members_Possible,257 +Total_Number_Members_Used,258 +Used_Model_LBC,259 +Used_Model_LBC_E2,260 +Used_Model_LBC_E3,261 +Used_Model_LBC_E4,262 +WMO,263 +WRAP,264 +WRAPstr,265 +X1,266 +X1InGridLengths,267 +X2,268 +X2InGridLengths,269 +XR,270 +XRInMetres,271 +Xo,272 +Xp,273 +XpInGridLengths,274 +Y1,275 +Y1InGridLengths,276 +Y2,277 +Y2InGridLengths,278 +YR,279 +YRInMetres,280 +YY,281 +YearOfModelVersion,282 +Yo,283 +Yp,284 +YpInGridLengths,285 +ZLBASE,286 +ZLMULT,287 +_T,288 +_TS,289 +_anoffset,290 +_endStep,291 +_leg_number,292 +_numberOfValues,293 +accumulationInterval,294 +accuracy,295 +accuracyMultipliedByFactor,296 +activity,297 +addEmptySection2,298 +addExtraLocalSection,299 +additionalFlagPresent,300 +additionalParameter,301 +addressOfFileFreeSpaceInfo,302 +aerosolType,303 +aerosolTypeName,304 +aerosolbinnumber,305 +aerosolpacking,306 +alternativeRowScanning,307 +altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,308 +analysisOffsets,309 +angleDivisor,310 +angleMultiplier,311 +angleOfRotation,312 +angleOfRotationInDegrees,313 +angleOfRotationOfProjection,314 +angleSubdivisions,315 +anoffset,316 +anoffsetFirst,317 +anoffsetFrequency,318 +anoffsetLast,319 +applicationIdentifier,320 +assertion,321 +atmosphericChemicalOrPhysicalConstituentType,322 +attributeOfTile,323 +auxiliary,324 +average,325 +averaging1Flag,326 +averaging2Flag,327 +averagingPeriod,328 +avg,329 +azimuthalWidth,330 +backgroundGeneratingProcessIdentifier,331 +backgroundProcess,332 +band,333 +baseAddress,334 +baseDateEPS,335 +baseDateOfThisLeg,336 +baseTimeEPS,337 +baseTimeOfThisLeg,338 +basicAngleOfTheInitialProductionDomain,339 +beginDayTrend1,340 +beginDayTrend2,341 +beginDayTrend3,342 +beginDayTrend4,343 +beginHourTrend1,344 +beginHourTrend2,345 +beginHourTrend3,346 +beginHourTrend4,347 +beginMinuteTrend1,348 +beginMinuteTrend2,349 +beginMinuteTrend3,350 +beginMinuteTrend4,351 +beginMonthTrend1,352 +beginMonthTrend2,353 +beginMonthTrend3,354 +beginMonthTrend4,355 +beginYearTrend1,356 +beginYearTrend2,357 +beginYearTrend3,358 +beginYearTrend4,359 +biFourierCoefficients,360 +biFourierMakeTemplate,361 +biFourierPackingModeForAxes,362 +biFourierResolutionParameterM,363 +biFourierResolutionParameterN,364 +biFourierResolutionSubSetParameterM,365 +biFourierResolutionSubSetParameterN,366 +biFourierSubTruncationType,367 +biFourierTruncationType,368 +billion,369 binaryScaleFactor,370 bitMapIndicator,371 bitmap,372 @@ -424,261 +424,261 @@ cfNameECMF,418 cfNameLegacyECMF,419 cfVarName,420 cfVarNameECMF,421 -cfVarNameLegacyECMF,422 -changeDecimalPrecision,423 -changeIndicatorTrend1,424 -changeIndicatorTrend2,425 -changeIndicatorTrend3,426 -changeIndicatorTrend4,427 -changingPrecision,428 -channel,429 -channelNumber,430 -char,431 -charValues,432 -checkInternalVersion,433 -class,434 -classOfAnalysis,435 -climateDateFrom,436 -climateDateTo,437 -climatologicalRegime,438 -cloudsAbbreviation1,439 -cloudsAbbreviation1Trend1,440 -cloudsAbbreviation1Trend2,441 -cloudsAbbreviation1Trend3,442 -cloudsAbbreviation1Trend4,443 -cloudsAbbreviation2,444 -cloudsAbbreviation2Trend1,445 -cloudsAbbreviation2Trend2,446 -cloudsAbbreviation2Trend3,447 -cloudsAbbreviation2Trend4,448 -cloudsAbbreviation3,449 -cloudsAbbreviation3Trend1,450 -cloudsAbbreviation3Trend2,451 -cloudsAbbreviation3Trend3,452 -cloudsAbbreviation3Trend4,453 -cloudsAbbreviation4,454 -cloudsAbbreviation4Trend1,455 -cloudsAbbreviation4Trend2,456 -cloudsAbbreviation4Trend3,457 -cloudsAbbreviation4Trend4,458 -cloudsBase1,459 -cloudsBase1Trend1,460 -cloudsBase1Trend2,461 -cloudsBase1Trend3,462 -cloudsBase1Trend4,463 -cloudsBase2,464 -cloudsBase2Trend1,465 -cloudsBase2Trend2,466 -cloudsBase2Trend3,467 -cloudsBase2Trend4,468 -cloudsBase3,469 -cloudsBase3Trend1,470 -cloudsBase3Trend2,471 -cloudsBase3Trend3,472 -cloudsBase3Trend4,473 -cloudsBase4,474 -cloudsBase4Trend1,475 -cloudsBase4Trend2,476 -cloudsBase4Trend3,477 -cloudsBase4Trend4,478 -cloudsBaseCoded1,479 -cloudsBaseCoded1Trend1,480 -cloudsBaseCoded1Trend2,481 -cloudsBaseCoded1Trend3,482 -cloudsBaseCoded1Trend4,483 -cloudsBaseCoded2,484 -cloudsBaseCoded2Trend1,485 -cloudsBaseCoded2Trend2,486 -cloudsBaseCoded2Trend3,487 -cloudsBaseCoded2Trend4,488 -cloudsBaseCoded3,489 -cloudsBaseCoded3Trend1,490 -cloudsBaseCoded3Trend2,491 -cloudsBaseCoded3Trend3,492 -cloudsBaseCoded3Trend4,493 -cloudsBaseCoded4,494 -cloudsBaseCoded4Trend1,495 -cloudsBaseCoded4Trend2,496 -cloudsBaseCoded4Trend3,497 -cloudsBaseCoded4Trend4,498 -cloudsCode1,499 -cloudsCode1Trend1,500 -cloudsCode1Trend2,501 -cloudsCode1Trend3,502 -cloudsCode1Trend4,503 -cloudsCode2,504 -cloudsCode2Trend1,505 -cloudsCode2Trend2,506 -cloudsCode2Trend3,507 -cloudsCode2Trend4,508 -cloudsCode3,509 -cloudsCode3Trend1,510 -cloudsCode3Trend2,511 -cloudsCode3Trend3,512 -cloudsCode3Trend4,513 -cloudsCode4,514 -cloudsCode4Trend1,515 -cloudsCode4Trend2,516 -cloudsCode4Trend3,517 -cloudsCode4Trend4,518 -cloudsTitle1,519 -cloudsTitle1Trend1,520 -cloudsTitle1Trend2,521 -cloudsTitle1Trend3,522 -cloudsTitle1Trend4,523 -cloudsTitle2,524 -cloudsTitle2Trend1,525 -cloudsTitle2Trend2,526 -cloudsTitle2Trend3,527 -cloudsTitle2Trend4,528 -cloudsTitle3,529 -cloudsTitle3Trend1,530 -cloudsTitle3Trend2,531 -cloudsTitle3Trend3,532 -cloudsTitle3Trend4,533 -cloudsTitle4,534 -cloudsTitle4Trend1,535 -cloudsTitle4Trend2,536 -cloudsTitle4Trend3,537 -cloudsTitle4Trend4,538 -clusterIdentifier,539 -clusterMember1,540 -clusterMember10,541 -clusterMember2,542 -clusterMember3,543 -clusterMember4,544 -clusterMember5,545 -clusterMember6,546 -clusterMember7,547 -clusterMember8,548 -clusterMember9,549 -clusterNumber,550 -clusterSize,551 -clusteringDomain,552 -clusteringMethod,553 -clutterFilterIndicator,554 -cnmc_cmcc,555 -cnmc_isac,556 -codeFigure,557 -codeType,558 -codedNumberOfFirstOrderPackedValues,559 -codedNumberOfGroups,560 -codedValues,561 -coefsFirst,562 -coefsSecond,563 -combinationOfAttributesOfTile,564 -commonBlock,565 -complexPacking,566 -componentIndex,567 -compressedData,568 -computeLaplacianOperator,569 -computeStatistics,570 -conceptDir,571 -conceptsDir1,572 -conceptsDir2,573 -conceptsLocalDirAll,574 -conceptsLocalDirECMF,575 -conceptsLocalMarsDirAll,576 -conceptsMasterDir,577 -conceptsMasterMarsDir,578 -consensus,579 -consensusCount,580 -const,581 -constantAntennaElevationAngle,582 -constantFieldHalfByte,583 -constituentType,584 -constituentTypeName,585 -controlForecastCluster,586 -coordAveraging0,587 -coordAveraging1,588 -coordAveraging2,589 -coordAveraging3,590 -coordAveragingTims,591 -coordinate1End,592 -coordinate1Flag,593 -coordinate1Start,594 -coordinate2End,595 -coordinate2Flag,596 -coordinate2Start,597 -coordinate3Flag,598 -coordinate3OfFirstGridPoint,599 -coordinate3OfLastGridPoint,600 -coordinate4Flag,601 -coordinate4OfFirstGridPoint,602 -coordinate4OfLastGridPoint,603 -coordinateFlag1,604 -coordinateFlag2,605 -coordinateIndexNumber,606 -coordinatesPresent,607 -core,608 -corr1Data,609 -corr2Data,610 -corr3Data,611 -corr4Data,612 -correction,613 -correction1,614 -correction1Part,615 -correction2,616 -correction2Part,617 -correction3,618 -correction3Part,619 -correction4,620 -correction4Part,621 -count,622 -countOfGroupLengths,623 -countOfICEFieldsUsed,624 -countTotal,625 -country,626 -crcrlf,627 -createNewData,628 -crraLocalVersion,629 -crraSection,630 -crraSuiteID,631 -daLoop,632 -data,633 -dataAccessors,634 -dataCategory,635 -dataDate,636 -dataFlag,637 -dataKeys,638 -dataLength,639 -dataOrigin,640 -dataRepresentation,641 -dataRepresentationTemplate,642 -dataRepresentationTemplateNumber,643 -dataRepresentationType,644 -dataSelection,645 -dataStream,646 -dataSubCategory,647 -dataTime,648 -dataType,649 -dataValues,650 -dataset,651 -datasetForLocal,652 -datasetTemplate,653 -date,654 -dateOfAnalysis,655 -dateOfForecast,656 -dateOfForecastRun,657 -dateOfForecastUsedInLocalTime,658 -dateOfIceFieldUsed,659 -dateOfModelVersion,660 -dateOfReference,661 -dateOfSSTFieldUsed,662 -dateSSTFieldUsed,663 -dateTime,664 -datumSize,665 -day,666 -dayOfAnalysis,667 -dayOfEndOfOverallTimeInterval,668 -dayOfForecast,669 -dayOfForecastUsedInLocalTime,670 -dayOfModelVersion,671 -dayOfReference,672 -dayOfStartOfReferencePeriod,673 -dayOfTheYearDate,674 -decimalPrecision,675 -decimalScaleFactor,676 +changeDecimalPrecision,422 +changeIndicatorTrend1,423 +changeIndicatorTrend2,424 +changeIndicatorTrend3,425 +changeIndicatorTrend4,426 +changingPrecision,427 +channel,428 +channelNumber,429 +char,430 +charValues,431 +checkInternalVersion,432 +class,433 +classOfAnalysis,434 +climateDateFrom,435 +climateDateTo,436 +climatologicalRegime,437 +cloudsAbbreviation1,438 +cloudsAbbreviation1Trend1,439 +cloudsAbbreviation1Trend2,440 +cloudsAbbreviation1Trend3,441 +cloudsAbbreviation1Trend4,442 +cloudsAbbreviation2,443 +cloudsAbbreviation2Trend1,444 +cloudsAbbreviation2Trend2,445 +cloudsAbbreviation2Trend3,446 +cloudsAbbreviation2Trend4,447 +cloudsAbbreviation3,448 +cloudsAbbreviation3Trend1,449 +cloudsAbbreviation3Trend2,450 +cloudsAbbreviation3Trend3,451 +cloudsAbbreviation3Trend4,452 +cloudsAbbreviation4,453 +cloudsAbbreviation4Trend1,454 +cloudsAbbreviation4Trend2,455 +cloudsAbbreviation4Trend3,456 +cloudsAbbreviation4Trend4,457 +cloudsBase1,458 +cloudsBase1Trend1,459 +cloudsBase1Trend2,460 +cloudsBase1Trend3,461 +cloudsBase1Trend4,462 +cloudsBase2,463 +cloudsBase2Trend1,464 +cloudsBase2Trend2,465 +cloudsBase2Trend3,466 +cloudsBase2Trend4,467 +cloudsBase3,468 +cloudsBase3Trend1,469 +cloudsBase3Trend2,470 +cloudsBase3Trend3,471 +cloudsBase3Trend4,472 +cloudsBase4,473 +cloudsBase4Trend1,474 +cloudsBase4Trend2,475 +cloudsBase4Trend3,476 +cloudsBase4Trend4,477 +cloudsBaseCoded1,478 +cloudsBaseCoded1Trend1,479 +cloudsBaseCoded1Trend2,480 +cloudsBaseCoded1Trend3,481 +cloudsBaseCoded1Trend4,482 +cloudsBaseCoded2,483 +cloudsBaseCoded2Trend1,484 +cloudsBaseCoded2Trend2,485 +cloudsBaseCoded2Trend3,486 +cloudsBaseCoded2Trend4,487 +cloudsBaseCoded3,488 +cloudsBaseCoded3Trend1,489 +cloudsBaseCoded3Trend2,490 +cloudsBaseCoded3Trend3,491 +cloudsBaseCoded3Trend4,492 +cloudsBaseCoded4,493 +cloudsBaseCoded4Trend1,494 +cloudsBaseCoded4Trend2,495 +cloudsBaseCoded4Trend3,496 +cloudsBaseCoded4Trend4,497 +cloudsCode1,498 +cloudsCode1Trend1,499 +cloudsCode1Trend2,500 +cloudsCode1Trend3,501 +cloudsCode1Trend4,502 +cloudsCode2,503 +cloudsCode2Trend1,504 +cloudsCode2Trend2,505 +cloudsCode2Trend3,506 +cloudsCode2Trend4,507 +cloudsCode3,508 +cloudsCode3Trend1,509 +cloudsCode3Trend2,510 +cloudsCode3Trend3,511 +cloudsCode3Trend4,512 +cloudsCode4,513 +cloudsCode4Trend1,514 +cloudsCode4Trend2,515 +cloudsCode4Trend3,516 +cloudsCode4Trend4,517 +cloudsTitle1,518 +cloudsTitle1Trend1,519 +cloudsTitle1Trend2,520 +cloudsTitle1Trend3,521 +cloudsTitle1Trend4,522 +cloudsTitle2,523 +cloudsTitle2Trend1,524 +cloudsTitle2Trend2,525 +cloudsTitle2Trend3,526 +cloudsTitle2Trend4,527 +cloudsTitle3,528 +cloudsTitle3Trend1,529 +cloudsTitle3Trend2,530 +cloudsTitle3Trend3,531 +cloudsTitle3Trend4,532 +cloudsTitle4,533 +cloudsTitle4Trend1,534 +cloudsTitle4Trend2,535 +cloudsTitle4Trend3,536 +cloudsTitle4Trend4,537 +clusterIdentifier,538 +clusterMember1,539 +clusterMember10,540 +clusterMember2,541 +clusterMember3,542 +clusterMember4,543 +clusterMember5,544 +clusterMember6,545 +clusterMember7,546 +clusterMember8,547 +clusterMember9,548 +clusterNumber,549 +clusterSize,550 +clusteringDomain,551 +clusteringMethod,552 +clutterFilterIndicator,553 +cnmc_cmcc,554 +cnmc_isac,555 +codeFigure,556 +codeType,557 +codedNumberOfFirstOrderPackedValues,558 +codedNumberOfGroups,559 +codedValues,560 +coefsFirst,561 +coefsSecond,562 +combinationOfAttributesOfTile,563 +commonBlock,564 +complexPacking,565 +componentIndex,566 +compressedData,567 +computeLaplacianOperator,568 +computeStatistics,569 +conceptDir,570 +conceptsDir1,571 +conceptsDir2,572 +conceptsLocalDirAll,573 +conceptsLocalDirECMF,574 +conceptsLocalMarsDirAll,575 +conceptsMasterDir,576 +conceptsMasterMarsDir,577 +consensus,578 +consensusCount,579 +const,580 +constantAntennaElevationAngle,581 +constantFieldHalfByte,582 +constituentType,583 +constituentTypeName,584 +controlForecastCluster,585 +coordAveraging0,586 +coordAveraging1,587 +coordAveraging2,588 +coordAveraging3,589 +coordAveragingTims,590 +coordinate1End,591 +coordinate1Flag,592 +coordinate1Start,593 +coordinate2End,594 +coordinate2Flag,595 +coordinate2Start,596 +coordinate3Flag,597 +coordinate3OfFirstGridPoint,598 +coordinate3OfLastGridPoint,599 +coordinate4Flag,600 +coordinate4OfFirstGridPoint,601 +coordinate4OfLastGridPoint,602 +coordinateFlag1,603 +coordinateFlag2,604 +coordinateIndexNumber,605 +coordinatesPresent,606 +core,607 +corr1Data,608 +corr2Data,609 +corr3Data,610 +corr4Data,611 +correction,612 +correction1,613 +correction1Part,614 +correction2,615 +correction2Part,616 +correction3,617 +correction3Part,618 +correction4,619 +correction4Part,620 +count,621 +countOfGroupLengths,622 +countOfICEFieldsUsed,623 +countTotal,624 +country,625 +crcrlf,626 +createNewData,627 +crraLocalVersion,628 +crraSection,629 +crraSuiteID,630 +daLoop,631 +data,632 +dataAccessors,633 +dataCategory,634 +dataDate,635 +dataFlag,636 +dataKeys,637 +dataLength,638 +dataOrigin,639 +dataRepresentation,640 +dataRepresentationTemplate,641 +dataRepresentationTemplateNumber,642 +dataRepresentationType,643 +dataSelection,644 +dataStream,645 +dataSubCategory,646 +dataTime,647 +dataType,648 +dataValues,649 +dataset,650 +datasetForLocal,651 +datasetTemplate,652 +date,653 +dateOfAnalysis,654 +dateOfForecast,655 +dateOfForecastRun,656 +dateOfForecastUsedInLocalTime,657 +dateOfIceFieldUsed,658 +dateOfModelVersion,659 +dateOfReference,660 +dateOfSSTFieldUsed,661 +dateSSTFieldUsed,662 +dateTime,663 +datumSize,664 +day,665 +dayOfAnalysis,666 +dayOfEndOfOverallTimeInterval,667 +dayOfForecast,668 +dayOfForecastUsedInLocalTime,669 +dayOfModelVersion,670 +dayOfReference,671 +dayOfStartOfReferencePeriod,672 +dayOfTheYearDate,673 +decimalPrecision,674 +decimalScaleFactor,675 +defaultCfVarName,676 defaultFaFieldName,677 defaultFaLevelName,678 defaultFaModelName,679 @@ -788,7 +788,7 @@ ensembleForecastNumbersList,782 ensembleSize,783 ensembleStandardDeviation,784 eps,785 -epsContinous,786 +epsContinuous,786 epsPoint,787 epsStatisticsContinous,788 epsStatisticsPoint,789 @@ -851,1690 +851,1739 @@ extractSubsetIntervalStart,845 extractSubsetList,846 extractedAreaNumberOfSubsets,847 extractedDateTimeNumberOfSubsets,848 -extremeClockwiseWindDirection,849 -extremeCounterClockwiseWindDirection,850 -extremeValuesRVR1,851 -extremeValuesRVR2,852 -extremeValuesRVR3,853 -extremeValuesRVR4,854 -faFieldName,855 -faLevelName,856 -faModelName,857 -false,858 -falseEasting,859 -falseNorthing,860 -fcmonth,861 -fcperiod,862 -fgDate,863 -fgTime,864 -file,865 -fileConsistencyFlags,866 -fireTemplate,867 -firstDimension,868 -firstDimensionCoordinateValueDefinition,869 -firstDimensionPhysicalSignificance,870 -firstLatitude,871 -firstLatitudeInDegrees,872 -firstMonthUsedToBuildClimateMonth1,873 -firstMonthUsedToBuildClimateMonth2,874 -firstOrderValues,875 -firstSize,876 -flag,877 -flagForAnyFurtherInformation,878 -flagForIrregularGridCoordinateList,879 -flagForNormalOrStaggeredGrid,880 -flagShowingPostAuxiliaryArrayInUse,881 -flags,882 -floatVal,883 -floatValues,884 -forceStepUnits,885 -forecastLeadTime,886 -forecastMonth,887 -forecastOrSingularVectorNumber,888 -forecastPeriod,889 -forecastPeriodFrom,890 -forecastPeriodTo,891 -forecastProbabilityNumber,892 -forecastSteps,893 -forecastTime,894 -forecastperiod,895 -formatForDoubles,896 -formatForLongs,897 -formatVersionMajorNumber,898 -formatVersionMinorNumber,899 -freeFormData,900 -frequency,901 -frequencyNumber,902 -frequencyScalingFactor,903 -functionCode,904 -g,905 -g1conceptsLocalDirAll,906 -g1conceptsMasterDir,907 -g2grid,908 -gaussianGridName,909 -genVertHeightCoords,910 -generalExtended2ordr,911 -generatingProcessIdentificationNumber,912 -generatingProcessIdentifier,913 -generatingProcessTemplate,914 -generatingProcessTemplateNumber,915 -generation,916 -getNumberOfValues,917 -gg,918 -global,919 -globalDomain,920 -grib1divider,921 -grib2LocalSectionNumber,922 -grib2LocalSectionPresent,923 -grib2divider,924 -grib3divider,925 -gribDataQualityChecks,926 -gribMasterTablesVersionNumber,927 -gribTablesVersionNo,928 -grid,929 -gridCoordinate,930 -gridDefinition,931 -gridDefinitionDescription,932 -gridDefinitionSection,933 -gridDefinitionTemplateNumber,934 -gridDescriptionSectionPresent,935 -gridName,936 -gridPointPosition,937 -gridSpecification,938 -gridType,939 -groupInternalNodeK,940 -groupLeafNodeK,941 -groupLengths,942 -groupSplitting,943 -groupSplittingMethodUsed,944 -groupWidth,945 -groupWidths,946 -gts_CCCC,947 -gts_TTAAii,948 -gts_ddhh00,949 -gts_header,950 -halfByte,951 -hdate,952 -headersOnly,953 -heightLevelName,954 -heightOrPressureOfLevel,955 -heightPressureEtcOfLevels,956 -hideThis,957 -hook_post_meta_data,958 -horizontalCoordinateDefinition,959 -horizontalCoordinateSupplement,960 -horizontalDimensionProcessed,961 -horizontalDomainTemplate,962 -horizontalDomainTemplateNumber,963 -hour,964 -hourOfAnalysis,965 -hourOfEndOfOverallTimeInterval,966 -hourOfForecast,967 -hourOfForecastUsedInLocalTime,968 -hourOfModelVersion,969 -hourOfReference,970 -hourOfStartOfReferencePeriod,971 -hoursAfterDataCutoff,972 -hoursAfterReferenceTimeOfDataCutoff,973 -hundred,974 -iDirectionIncrement,975 -iDirectionIncrementGiven,976 -iDirectionIncrementGridLength,977 -iDirectionIncrementInDegrees,978 -iIncrement,979 -iScansNegatively,980 -iScansPositively,981 -ident,982 -identificationNumber,983 -identificationOfOriginatingGeneratingCentre,984 -identificationOfProject,985 -identifier,986 -ieeeFloats,987 -ifsParam,988 -ijDirectionIncrementGiven,989 -implementationDateOfModelCycle,990 -incrementOfLengths,991 -indexTemplate,992 -indexTemplateNumber,993 -indexedStorageInternalNodeK,994 -indexingDate,995 -indexingTime,996 -indexingTimeHH,997 -indexingTimeHHMM,998 -indexingTimeMM,999 -indicatorOfParameter,1000 -indicatorOfTypeOfLevel,1001 -indicatorOfUnitForForecastTime,1002 -indicatorOfUnitForTimeIncrement,1003 -indicatorOfUnitForTimeRange,1004 -indicatorOfUnitForTimeRangeForReferencePeriod,1005 -indicatorOfUnitOfTimeRange,1006 -inputDataPresentIndicator,1007 -inputDelayedDescriptorReplicationFactor,1008 -inputExtendedDelayedDescriptorReplicationFactor,1009 -inputOriginatingCentre,1010 -inputOverriddenReferenceValues,1011 -inputProcessIdentifier,1012 -inputShortDelayedDescriptorReplicationFactor,1013 -instrument,1014 -instrumentIdentifier,1015 -instrumentType,1016 -integerPointValues,1017 -integerScaleFactor,1018 -integerScalingFactorAppliedToDirections,1019 -integerScalingFactorAppliedToFrequencies,1020 -integerValues,1021 -internalVersion,1022 -internationalDataSubCategory,1023 -interpretationOfNumberOfPoints,1024 -intervalBetweenTimes,1025 -isAccumulation,1026 -isAuto,1027 -isCavok,1028 -isCavokTrend1,1029 -isCavokTrend2,1030 -isCavokTrend3,1031 -isCavokTrend4,1032 -isConstant,1033 -isCorrection,1034 -isEPS,1035 -isEps,1036 -isFillup,1037 -isGridded,1038 -isHindcast,1039 -isOctahedral,1040 -isRotatedGrid,1041 -isSatellite,1042 -isSatelliteType,1043 -isSens,1044 -isSpectral,1045 -is_aerosol,1046 -is_aerosol_optical,1047 -is_chemical,1048 -is_chemical_distfn,1049 -is_chemical_srcsink,1050 -is_localtime,1051 -is_ocean2d_param,1052 -is_ocean3d_param,1053 -is_uerra,1054 -isectionNumber2,1055 -isectionNumber3,1056 -isectionNumber4,1057 -isotopeIdentificationNumber,1058 -iteration,1059 -iterationNumber,1060 -iteratorDisableUnrotate,1061 -jDirectionIncrement,1062 -jDirectionIncrementGiven,1063 -jDirectionIncrementGridLength,1064 -jDirectionIncrementInDegrees,1065 -jIncrement,1066 -jPointsAreConsecutive,1067 -jScansNegatively,1068 -jScansPositively,1069 -jdLocal,1070 -jdSelected,1071 -julianDay,1072 -julianForecastDay,1073 -keyData,1074 -keyMore,1075 -keySat,1076 -kindOfProduct,1077 -kurt,1078 -kurtosis,1079 -lBB,1080 -landtype,1081 -laplacianOperator,1082 -laplacianOperatorIsSet,1083 -laplacianScalingFactor,1084 -laplacianScalingFactorUnset,1085 -lastMonthUsedToBuildClimateMonth1,1086 -lastMonthUsedToBuildClimateMonth2,1087 -latLonValues,1088 -latitude,1089 -latitudeFirstInDegrees,1090 -latitudeLastInDegrees,1091 -latitudeLongitudeValues,1092 -latitudeOfCentralPointInClusterDomain,1093 -latitudeOfCentrePoint,1094 -latitudeOfCentrePointInDegrees,1095 -latitudeOfFirstGridPoint,1096 -latitudeOfFirstGridPointInDegrees,1097 -latitudeOfGridPoints,1098 -latitudeOfIcosahedronPole,1099 -latitudeOfLastGridPoint,1100 -latitudeOfLastGridPointInDegrees,1101 -latitudeOfNorthWestCornerOfArea,1102 -latitudeOfReferencePoint,1103 -latitudeOfReferencePointInDegrees,1104 -latitudeOfSouthEastCornerOfArea,1105 -latitudeOfSouthernPole,1106 -latitudeOfSouthernPoleInDegrees,1107 -latitudeOfStretchingPole,1108 -latitudeOfStretchingPoleInDegrees,1109 -latitudeOfSubSatellitePoint,1110 -latitudeOfSubSatellitePointInDegrees,1111 -latitudeOfTangencyPoint,1112 -latitudeOfThePoleOfStretching,1113 -latitudeOfThePolePoint,1114 -latitudeOfThePolePointInDegrees,1115 -latitudeOfTheSouthernPoleOfProjection,1116 -latitudeSexagesimal,1117 -latitudeWhereDxAndDyAreSpecified,1118 -latitudeWhereDxAndDyAreSpecifiedInDegrees,1119 -latitudes,1120 -latitudesList,1121 -latitudinalDirectionGridLength,1122 -lcwfvSuiteName,1123 -leadtime,1124 -legBaseDate,1125 -legBaseTime,1126 -legNumber,1127 -legacyGaussSubarea,1128 -lengthDescriptors,1129 -lengthIncrementForTheGroupLengths,1130 -lengthOf4DvarWindow,1131 -lengthOfHeaders,1132 -lengthOfIndexTemplate,1133 -lengthOfMessage,1134 -lengthOfOriginatorLocalTemplate,1135 -lengthOfProjectLocalTemplate,1136 -lengthOfTimeRange,1137 -lengthOfTimeRangeForReferencePeriod,1138 -lev,1139 -levTypeName,1140 -level,1141 -levelIndicator,1142 -levelType,1143 -levelValues,1144 -level_value_list,1145 -levelist,1146 -levels,1147 -levtype,1148 -libraryVersion,1149 -listMembersMissing,1150 -listMembersMissing2,1151 -listMembersMissing3,1152 -listMembersMissing4,1153 -listMembersUsed,1154 -listMembersUsed2,1155 -listMembersUsed3,1156 -listMembersUsed4,1157 -listOfContributingSpectralBands,1158 -listOfDistributionFunctionParameter,1159 -listOfEnsembleForecastNumbers,1160 -listOfModelIdentifiers,1161 -listOfParametersUsedForClustering,1162 -listOfScaledFrequencies,1163 -listOfUsedTileAttributesInCombination,1164 -listOfWaveDirectionSequenceParameters,1165 -listOfWaveFrequencySequenceParameters,1166 -local,1167 -localDate,1168 -localDateTime,1169 -localDay,1170 -localDecimalScaleFactor,1171 -localDefNumberOne,1172 -localDefNumberTwo,1173 -localDefinition,1174 -localDefinitionNumber,1175 -localDir,1176 -localExtensionPadding,1177 -localFlag,1178 -localFlagLatestVersion,1179 -localHour,1180 -localLatitude,1181 -localLatitude1,1182 -localLatitude2,1183 -localLongitude,1184 -localLongitude1,1185 -localLongitude2,1186 -localMinute,1187 -localMonth,1188 -localNumberOfObservations,1189 -localSecond,1190 -localSection,1191 -localSectionPresent,1192 -localTablesVersion,1193 -localTablesVersionNumber,1194 -localTime,1195 -localTimeForecastList,1196 -localTimeMethod,1197 -localUsePresent,1198 -localYear,1199 -local_padding,1200 -local_use,1201 -logTransform,1202 -longitude,1203 -longitudeFirstInDegrees,1204 -longitudeLastInDegrees,1205 -longitudeOfCentralPointInClusterDomain,1206 -longitudeOfCentrePoint,1207 -longitudeOfCentrePointInDegrees,1208 -longitudeOfFirstDiamondCenterLine,1209 -longitudeOfFirstDiamondCentreLine,1210 -longitudeOfFirstDiamondCentreLineInDegrees,1211 -longitudeOfFirstGridPoint,1212 -longitudeOfFirstGridPointInDegrees,1213 -longitudeOfGridPoints,1214 -longitudeOfIcosahedronPole,1215 -longitudeOfLastGridPoint,1216 -longitudeOfLastGridPointInDegrees,1217 -longitudeOfNorthWestCornerOfArea,1218 -longitudeOfReferencePoint,1219 -longitudeOfReferencePointInDegrees,1220 -longitudeOfSouthEastCornerOfArea,1221 -longitudeOfSouthernPole,1222 -longitudeOfSouthernPoleInDegrees,1223 -longitudeOfStretchingPole,1224 -longitudeOfStretchingPoleInDegrees,1225 -longitudeOfSubSatellitePoint,1226 -longitudeOfSubSatellitePointInDegrees,1227 -longitudeOfTangencyPoint,1228 -longitudeOfThePoleOfStretching,1229 -longitudeOfThePolePoint,1230 -longitudeOfThePolePointInDegrees,1231 -longitudeOfTheSouthernPoleOfProjection,1232 -longitudeSexagesimal,1233 -longitudes,1234 -longitudesList,1235 -longitudinalDirectionGridLength,1236 -lowerLimit,1237 -lowerRange,1238 -lowerThreshold,1239 -lowerThresholdValue,1240 -ls_labeling,1241 -lsdate_bug,1242 -lstime_bug,1243 -m,1244 -mAngleMultiplier,1245 -mBasicAngle,1246 -mars,1247 -marsClass,1248 -marsClass1,1249 -marsClass2,1250 -marsDir,1251 -marsDomain,1252 -marsEndStep,1253 -marsExperimentOffset,1254 -marsExpver,1255 -marsForecastMonth,1256 -marsGrid,1257 -marsIdent,1258 -marsKeywords,1259 -marsKeywords1,1260 -marsLamModel,1261 -marsLatitude,1262 -marsLevel,1263 -marsLevelist,1264 -marsLongitude,1265 -marsModel,1266 -marsParam,1267 -marsQuantile,1268 -marsRange,1269 -marsStartStep,1270 -marsStep,1271 -marsStream,1272 -marsStream1,1273 -marsStream2,1274 -marsType,1275 -marsType1,1276 -marsType2,1277 -mars_labeling,1278 -mask,1279 -masterDir,1280 -masterTableNumber,1281 -masterTablesVersionNumber,1282 -masterTablesVersionNumberLatest,1283 -matchAerosolBinNumber,1284 -matchAerosolPacking,1285 -matchLandType,1286 -matchSort,1287 -matchTimeRepres,1288 -matrixBitmapsPresent,1289 -matrixOfValues,1290 -max,1291 -maxLevelValue,1292 -maximum,1293 -md5Data,1294 -md5DataSection,1295 -md5GridSection,1296 -md5Headers,1297 -md5Product,1298 -md5Section1,1299 -md5Section10,1300 -md5Section2,1301 -md5Section3,1302 -md5Section4,1303 -md5Section5,1304 -md5Section6,1305 -md5Section7,1306 -md5Section8,1307 -md5Section9,1308 -md5Structure,1309 -md5TimeDomainSection,1310 -meanRVR1,1311 -meanRVR2,1312 -meanRVR3,1313 -meanRVR4,1314 -meanSize,1315 -meanValueRVR1,1316 -meanValueRVR2,1317 -meanValueRVR3,1318 -meanValueRVR4,1319 -meaningOfVerticalCoordinate,1320 -memberNumber,1321 -messageLength,1322 -metadata,1323 -method,1324 -methodNumber,1325 -million,1326 -min,1327 -minimum,1328 -minute,1329 -minuteOfAnalysis,1330 -minuteOfEndOfOverallTimeInterval,1331 -minuteOfForecast,1332 -minuteOfForecastUsedInLocalTime,1333 -minuteOfModelVersion,1334 -minuteOfReference,1335 -minuteOfStartOfReferencePeriod,1336 -minutesAfterDataCutoff,1337 -minutesAfterReferenceTimeOfDataCutoff,1338 -missingDataFlag,1339 -missingValue,1340 -missingValueManagement,1341 -missingValueManagementUsed,1342 -missingValuesPresent,1343 -missing_values,1344 -mixedCoordinateDefinition,1345 -mixedCoordinateFieldFlag,1346 -modeNumber,1347 -model,1348 -modelErrorType,1349 -modelIdentifier,1350 -modelName,1351 -modelVersionDate,1352 -modelVersionTime,1353 -molarMass,1354 -month,1355 -monthOfAnalysis,1356 -monthOfEndOfOverallTimeInterval,1357 -monthOfForecast,1358 -monthOfForecastUsedInLocalTime,1359 -monthOfModelVersion,1360 -monthOfReference,1361 -monthOfStartOfReferencePeriod,1362 -monthlyVerificationDate,1363 -monthlyVerificationMonth,1364 -monthlyVerificationTime,1365 -monthlyVerificationYear,1366 -multiplicationFactorForLatLong,1367 -n,1368 -n2,1369 -n3,1370 -nTileAtt,1371 -nTileAttCombo,1372 -nTiles,1373 -na,1374 -name,1375 -nameECMF,1376 -nameLegacyECMF,1377 -nameOfFirstFixedSurface,1378 -nameOfSecondFixedSurface,1379 -names,1380 -nd,1381 -neitherPresent,1382 -newSubtype,1383 -nlev,1384 -nnn,1385 -normAtFinalTime,1386 -normAtInitialTime,1387 -normal,1388 -northLatitudeOfCluster,1389 -northLatitudeOfDomainOfTubing,1390 -northWestLatitudeOfLPOArea,1391 -northWestLatitudeOfVerficationArea,1392 -northWestLongitudeOfLPOArea,1393 -northWestLongitudeOfVerficationArea,1394 -northernLatitudeOfClusterDomain,1395 -northernLatitudeOfDomain,1396 -nosigPresent,1397 -notDecoded,1398 -nref,1399 -nt,1400 -number,1401 -numberInHorizontalCoordinates,1402 -numberInMixedCoordinateDefinition,1403 -numberInTheAuxiliaryArray,1404 -numberInTheGridCoordinateList,1405 -numberIncludedInAverage,1406 -numberMissingFromAveragesOrAccumulations,1407 -numberOfAdditionalParametersForReferencePeriod,1408 -numberOfAnalysis,1409 -numberOfBits,1410 -numberOfBitsContainingEachPackedValue,1411 -numberOfBitsForScaledGroupLengths,1412 -numberOfBitsUsedForTheGroupWidths,1413 -numberOfBitsUsedForTheScaledGroupLengths,1414 -numberOfBytesInLocalDefinition,1415 -numberOfBytesOfFreeFormatData,1416 -numberOfBytesPerInteger,1417 -numberOfCategories,1418 -numberOfCharacters,1419 -numberOfChars,1420 -numberOfClusterHighResolution,1421 -numberOfClusterLowResolution,1422 -numberOfClusters,1423 -numberOfCodedValues,1424 -numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1425 -numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1426 -numberOfColumns,1427 -numberOfComponents,1428 -numberOfContributingSpectralBands,1429 -numberOfControlForecastTube,1430 -numberOfCoordinatesValues,1431 -numberOfDataBinsAlongRadials,1432 -numberOfDataMatrices,1433 -numberOfDataPoints,1434 -numberOfDataPointsExpected,1435 -numberOfDataValues,1436 -numberOfDaysInClimateSamplingWindow,1437 -numberOfDiamonds,1438 -numberOfDirections,1439 -numberOfDistinctSection3s,1440 -numberOfDistinctSection4s,1441 -numberOfDistinctSection5s,1442 -numberOfDistinctSection6s,1443 -numberOfDistinctSection7s,1444 -numberOfDistinctSection8s,1445 -numberOfDistinctSection9s,1446 -numberOfDistributionFunctionParameters,1447 -numberOfEffectiveValues,1448 -numberOfFloats,1449 -numberOfForcasts,1450 -numberOfForecastsInCluster,1451 -numberOfForecastsInEnsemble,1452 -numberOfForecastsInTheCluster,1453 -numberOfForecastsInTube,1454 -numberOfForecastsUsedInLocalTime,1455 -numberOfFrequencies,1456 -numberOfGridInReference,1457 -numberOfGridUsed,1458 -numberOfGroups,1459 -numberOfGroupsOfDataValues,1460 -numberOfHorizontalPoints,1461 -numberOfIntegers,1462 -numberOfInts,1463 -numberOfIterations,1464 -numberOfLevelValues,1465 -numberOfLocalDefinitions,1466 -numberOfLogicals,1467 -numberOfMembersInCluster,1468 -numberOfMembersInEnsemble,1469 -numberOfMissing,1470 -numberOfMissingInStatisticalProcess,1471 -numberOfMissingValues,1472 -numberOfModeOfDistribution,1473 -numberOfModels,1474 -numberOfOctectsForNumberOfPoints,1475 -numberOfOctetsExtraDescriptors,1476 -numberOfOperationalForecastTube,1477 -numberOfPackedValues,1478 -numberOfParallelsBetweenAPoleAndTheEquator,1479 -numberOfParametersUsedForClustering,1480 -numberOfPartitions,1481 -numberOfPoints,1482 -numberOfPointsAlongAMeridian,1483 -numberOfPointsAlongAParallel,1484 -numberOfPointsAlongASide,1485 -numberOfPointsAlongFirstAxis,1486 -numberOfPointsAlongSecondAxis,1487 -numberOfPointsAlongTheXAxis,1488 -numberOfPointsAlongTheYAxis,1489 -numberOfPointsAlongXAxis,1490 -numberOfPointsAlongXAxisInCouplingArea,1491 -numberOfPointsAlongYAxis,1492 -numberOfPointsAlongYAxisInCouplingArea,1493 -numberOfPointsInDomain,1494 -numberOfPointsUsed,1495 -numberOfPressureLevelsUsedForClustering,1496 -numberOfRadarSitesUsed,1497 -numberOfRadials,1498 -numberOfReferencePeriodTimeRanges,1499 -numberOfReforecastYearsInModelClimate,1500 -numberOfRemaininChars,1501 -numberOfRepresentativeMember,1502 -numberOfReservedBytes,1503 -numberOfRows,1504 -numberOfSecondOrderPackedValues,1505 -numberOfSection,1506 -numberOfSingularVectorsComputed,1507 -numberOfSingularVectorsEvolved,1508 -numberOfStatisticallyProcessedFieldsForLocalTime,1509 -numberOfStepsUsedForClustering,1510 -numberOfSubsets,1511 -numberOfTensOfThousandsOfYearsOfOffset,1512 -numberOfTimeIncrementsOfForecastsUsedInLocalTime,1513 -numberOfTimeRange,1514 -numberOfTimeRanges,1515 -numberOfTimeSteps,1516 -numberOfUnexpandedDescriptors,1517 -numberOfUnusedBitsAtEndOfSection3,1518 -numberOfUsedSpatialTiles,1519 -numberOfUsedTileAttributeCombinationsForTypeOfTile,1520 -numberOfUsedTileAttributes,1521 -numberOfUsedTileAttributesForTileAttributeCombination,1522 -numberOfUsefulPointsAlongXAxis,1523 -numberOfUsefulPointsAlongYAxis,1524 -numberOfVGridUsed,1525 -numberOfValues,1526 -numberOfVerticalCoordinateValues,1527 -numberOfVerticalGridDescriptors,1528 -numberOfVerticalPoints,1529 -numberOfWaveDirectionSequenceParameters,1530 -numberOfWaveDirections,1531 -numberOfWaveFrequencies,1532 -numberOfWaveFrequencySequenceParameters,1533 -numberingOrderOfDiamonds,1534 -numericValues,1535 -observablePropertyTemplate,1536 -observablePropertyTemplateNumber,1537 -observationDiagnostic,1538 -observationGeneratingProcessIdentifier,1539 -observationType,1540 -observedData,1541 -obstype,1542 -oceanAtmosphereCoupling,1543 -oceanLevName,1544 -oceanStream,1545 -octetAtWichPackedDataBegins,1546 -offset,1547 -offsetAfterBitmap,1548 -offsetAfterCentreLocalSection,1549 -offsetAfterData,1550 -offsetAfterLocalSection,1551 -offsetAfterPadding,1552 -offsetBBitmap,1553 -offsetBSection5,1554 -offsetBSection6,1555 -offsetBSection9,1556 -offsetBeforeBitmap,1557 -offsetBeforeData,1558 -offsetBeforePL,1559 -offsetBeforePV,1560 -offsetDescriptors,1561 -offsetEndSection4,1562 -offsetFreeFormData,1563 -offsetFromOriginToInnerBound,1564 -offsetFromReferenceOfFirstTime,1565 -offsetICEFieldsUsed,1566 -offsetSection0,1567 -offsetSection1,1568 -offsetSection10,1569 -offsetSection11,1570 -offsetSection2,1571 -offsetSection3,1572 -offsetSection4,1573 -offsetSection5,1574 -offsetSection6,1575 -offsetSection7,1576 -offsetSection8,1577 -offsetSection9,1578 -offsetToEndOf4DvarWindow,1579 -offsetValuesBy,1580 -offsetdate,1581 -offsettime,1582 -oldSubtype,1583 -one,1584 -oneConstant,1585 -oneMillionConstant,1586 -oneMinuteMeanMaximumRVR1,1587 -oneMinuteMeanMaximumRVR2,1588 -oneMinuteMeanMaximumRVR3,1589 -oneMinuteMeanMaximumRVR4,1590 -oneMinuteMeanMinimumRVR1,1591 -oneMinuteMeanMinimumRVR2,1592 -oneMinuteMeanMinimumRVR3,1593 -oneMinuteMeanMinimumRVR4,1594 -oper,1595 -operStream,1596 -operatingMode,1597 -operationalForecastCluster,1598 -optimisationTime,1599 -optimizeScaleFactor,1600 -optionalData,1601 -opttime,1602 -orderOfSPD,1603 -orderOfSpatialDifferencing,1604 -ordering,1605 -orderingConvention,1606 -orientationOfTheGrid,1607 -orientationOfTheGridInDegrees,1608 -origin,1609 -originOfPostProcessing,1610 -originalParameterNumber,1611 -originalParameterTableNumber,1612 -originalSubCentreIdentifier,1613 -originatingCentre,1614 -originatingCentreOfAnalysis,1615 -originatingClass,1616 -originatorLocalTemplate,1617 -originatorLocalTemplateNumber,1618 -outerLoopLengthOfTimeRange,1619 -outerLoopTypeOfStatisticalProcessing,1620 -outerLoopTypeOfTimeIncrement,1621 -overlayTemplate,1622 -overlayTemplateNumber,1623 -pack,1624 -packedValues,1625 -packingError,1626 -packingType,1627 -padding,1628 -padding_grid1_1,1629 -padding_grid1_2,1630 -padding_grid3_1,1631 -padding_grid4_1,1632 -padding_grid50_1,1633 -padding_grid5_1,1634 -padding_grid90_1,1635 -padding_loc10_1,1636 -padding_loc12_1,1637 -padding_loc13_1,1638 -padding_loc13_2,1639 -padding_loc13_3,1640 -padding_loc13_4,1641 -padding_loc13_5,1642 -padding_loc14_1,1643 -padding_loc14_2,1644 -padding_loc15_1,1645 -padding_loc16_1,1646 -padding_loc17_2,1647 -padding_loc18_1,1648 -padding_loc18_2,1649 -padding_loc190_1,1650 -padding_loc191_1,1651 -padding_loc191_2,1652 -padding_loc191_3,1653 -padding_loc192_1,1654 -padding_loc19_2,1655 -padding_loc20_1,1656 -padding_loc21_1,1657 -padding_loc23_1,1658 -padding_loc244_1,1659 -padding_loc244_2,1660 -padding_loc244_3,1661 -padding_loc245_1,1662 -padding_loc245_2,1663 -padding_loc26_1,1664 -padding_loc27_1,1665 -padding_loc27_2,1666 -padding_loc28_1,1667 -padding_loc29_1,1668 -padding_loc29_2,1669 -padding_loc29_3,1670 -padding_loc2_1,1671 -padding_loc2_2,1672 -padding_loc30_1,1673 -padding_loc30_2,1674 -padding_loc37_1,1675 -padding_loc37_2,1676 -padding_loc38_1,1677 -padding_loc3_1,1678 -padding_loc4_2,1679 -padding_loc50_1,1680 -padding_loc5_1,1681 -padding_loc6_1,1682 -padding_loc7_1,1683 -padding_loc9_1,1684 -padding_loc9_2,1685 -padding_local11_1,1686 -padding_local1_1,1687 -padding_local1_31,1688 -padding_local40_1,1689 -padding_local_35,1690 -padding_local_7_1,1691 -padding_sec1_loc,1692 -padding_sec2_1,1693 -padding_sec2_2,1694 -padding_sec2_3,1695 -padding_sec3_1,1696 -padding_sec4_1,1697 -paleontologicalOffset,1698 -param,1699 -paramId,1700 -paramIdECMF,1701 -paramIdLegacyECMF,1702 -paramType,1703 -param_value_max,1704 -param_value_min,1705 -parameter,1706 -parameterCategory,1707 -parameterCode,1708 -parameterDiscipline,1709 -parameterIndicator,1710 -parameterName,1711 -parameterNumber,1712 -parameterUnits,1713 -parameters,1714 -parametersVersion,1715 -paramtype,1716 -partitionItems,1717 -partitionNumber,1718 -partitionTable,1719 -partitions,1720 -pastTendencyRVR1,1721 -pastTendencyRVR2,1722 -pastTendencyRVR3,1723 -pastTendencyRVR4,1724 -patch_precip_fp,1725 -pentagonalResolutionParameterJ,1726 -pentagonalResolutionParameterK,1727 -pentagonalResolutionParameterM,1728 -percentileValue,1729 -periodOfTime,1730 -periodOfTimeIntervals,1731 -perturbationNumber,1732 -perturbedType,1733 -phase,1734 -physicalFlag1,1735 -physicalFlag2,1736 -physicalMeaningOfVerticalCoordinate,1737 -pl,1738 -platform,1739 -plusOneinOrdersOfSPD,1740 -points,1741 -pointsOrdering,1742 -postAuxiliary,1743 -postAuxiliaryArrayPresent,1744 -postProcessing,1745 -powerOfTenUsedToScaleClimateWeight,1746 -preBitmapValues,1747 -preProcessingParameter,1748 -precision,1749 -precisionOfTheUnpackedSubset,1750 -predefined_grid,1751 -predefined_grid_values,1752 -preferLocalConcepts,1753 -present,1754 -presentTrend1,1755 -presentTrend2,1756 -presentTrend3,1757 -presentTrend4,1758 -presentWeather1Present,1759 -presentWeather1PresentTrend1,1760 -presentWeather1PresentTrend2,1761 -presentWeather1PresentTrend3,1762 -presentWeather1PresentTrend4,1763 -presentWeather2Present,1764 -presentWeather2PresentTrend1,1765 -presentWeather2PresentTrend2,1766 -presentWeather2PresentTrend3,1767 -presentWeather2PresentTrend4,1768 -presentWeather3Present,1769 -presentWeather3PresentTrend1,1770 -presentWeather3PresentTrend2,1771 -presentWeather3PresentTrend3,1772 -presentWeather3PresentTrend4,1773 -pressureLevel,1774 -pressureUnits,1775 -primaryBitmap,1776 -primaryMissingValue,1777 -primaryMissingValueSubstitute,1778 -probContinous,1779 -probPoint,1780 -probProductDefinition,1781 -probabilityType,1782 -probabilityTypeName,1783 -process,1784 -produceLargeConstantFields,1785 -product,1786 -productDefinition,1787 -productDefinitionTemplateNumber,1788 -productDefinitionTemplateNumberInternal,1789 -productIdentifier,1790 -productType,1791 -productionStatusOfProcessedData,1792 -projSourceString,1793 -projString,1794 -projTargetString,1795 -projectLocalTemplate,1796 -projectLocalTemplateNumber,1797 -projectionCenterFlag,1798 -projectionCentreFlag,1799 -pv,1800 -pvlLocation,1801 -qfe,1802 -qfePresent,1803 -qfeUnits,1804 -qnh,1805 -qnhAPresent,1806 -qnhPresent,1807 -qnhUnits,1808 -qualityControl,1809 -qualityControlIndicator,1810 -qualityValueAssociatedWithParameter,1811 -quantile,1812 -quantileValue,1813 -radialAngularSpacing,1814 -radials,1815 -radius,1816 -radiusInMetres,1817 -radiusOfCentralCluster,1818 -radiusOfClusterDomain,1819 -radiusOfTheEarth,1820 -range,1821 -rangeBinSpacing,1822 -rdbDateTime,1823 -rdbSubtype,1824 -rdbType,1825 -rdb_key,1826 -rdbtime,1827 -rdbtimeDate,1828 -rdbtimeDay,1829 -rdbtimeHour,1830 -rdbtimeMinute,1831 -rdbtimeMonth,1832 -rdbtimeSecond,1833 -rdbtimeTime,1834 -rdbtimeYear,1835 -realPart,1836 -realPartOf00,1837 -realization,1838 -recDateTime,1839 -recentWeather,1840 -recentWeatherTry,1841 -rectime,1842 -rectimeDay,1843 -rectimeHour,1844 -rectimeMinute,1845 -rectimeSecond,1846 -reducedGrid,1847 -refdate,1848 -reference,1849 -referenceDate,1850 -referenceForGroupLengths,1851 -referenceForGroupWidths,1852 -referenceOfLengths,1853 -referenceOfWidths,1854 -referencePeriodList,1855 -referenceReflectivityForEchoTop,1856 -referenceSampleInterval,1857 -referenceStep,1858 -referenceValue,1859 -referenceValueError,1860 -reflectivityCalibrationConstant,1861 -remarkPresent,1862 -reportType,1863 -representationMode,1864 -representationType,1865 -representativeMember,1866 -reserved,1867 -reserved1,1868 -reserved2,1869 -reserved3,1870 -reservedNeedNotBePresent,1871 -reservedOctet,1872 -reservedSection2,1873 -reservedSection3,1874 -reservedSection4,1875 -resolution,1876 -resolutionAndComponentFlags,1877 -resolutionAndComponentFlags1,1878 -resolutionAndComponentFlags2,1879 -resolutionAndComponentFlags3,1880 -resolutionAndComponentFlags4,1881 -resolutionAndComponentFlags6,1882 -resolutionAndComponentFlags7,1883 -resolutionAndComponentFlags8,1884 -restricted,1885 -rootGroupObjectHeaderAddress,1886 -rootGroupSymbolTableEntry,1887 -rootTablesDir,1888 -roundedMarsLatitude,1889 -roundedMarsLevelist,1890 -roundedMarsLongitude,1891 -runwayBrakingActionState1,1892 -runwayBrakingActionState2,1893 -runwayBrakingActionState3,1894 -runwayBrakingActionState4,1895 -runwayDepositCodeState1,1896 -runwayDepositCodeState2,1897 -runwayDepositCodeState3,1898 -runwayDepositCodeState4,1899 -runwayDepositState1,1900 -runwayDepositState2,1901 -runwayDepositState3,1902 -runwayDepositState4,1903 -runwayDepthOfDepositCodeState1,1904 -runwayDepthOfDepositCodeState2,1905 -runwayDepthOfDepositCodeState3,1906 -runwayDepthOfDepositCodeState4,1907 -runwayDepthOfDepositState1,1908 -runwayDepthOfDepositState2,1909 -runwayDepthOfDepositState3,1910 -runwayDepthOfDepositState4,1911 -runwayDesignatorRVR1,1912 -runwayDesignatorRVR2,1913 -runwayDesignatorRVR3,1914 -runwayDesignatorRVR4,1915 -runwayDesignatorState1,1916 -runwayDesignatorState2,1917 -runwayDesignatorState3,1918 -runwayDesignatorState4,1919 -runwayExtentOfContaminationCodeState1,1920 -runwayExtentOfContaminationCodeState2,1921 -runwayExtentOfContaminationCodeState3,1922 -runwayExtentOfContaminationCodeState4,1923 -runwayExtentOfContaminationState1,1924 -runwayExtentOfContaminationState2,1925 -runwayExtentOfContaminationState3,1926 -runwayExtentOfContaminationState4,1927 -runwayFrictionCodeValueState1,1928 -runwayFrictionCodeValueState2,1929 -runwayFrictionCodeValueState3,1930 -runwayFrictionCodeValueState4,1931 -runwayFrictionCoefficientCodeState1,1932 -runwayFrictionCoefficientCodeState2,1933 -runwayFrictionCoefficientCodeState3,1934 -runwayFrictionCoefficientCodeState4,1935 -runwayFrictionCoefficientState1,1936 -runwayFrictionCoefficientState2,1937 -runwayFrictionCoefficientState3,1938 -runwayFrictionCoefficientState4,1939 -runwaySideCodeState1,1940 -runwaySideCodeState2,1941 -runwaySideCodeState3,1942 -runwaySideCodeState4,1943 -runwayState,1944 -sampleSizeOfModelClimate,1945 -sampleSizeOfReferencePeriod,1946 -satelliteID,1947 -satelliteIdentifier,1948 -satelliteNumber,1949 -satelliteSeries,1950 -scaleFactorAtReferencePoint,1951 -scaleFactorOfAdditionalParameterForReferencePeriod,1952 -scaleFactorOfCentralWaveNumber,1953 -scaleFactorOfDistanceFromEnsembleMean,1954 -scaleFactorOfDistributionFunctionParameter,1955 -scaleFactorOfEarthMajorAxis,1956 -scaleFactorOfEarthMinorAxis,1957 -scaleFactorOfFirstFixedSurface,1958 -scaleFactorOfFirstSize,1959 -scaleFactorOfFirstWavelength,1960 -scaleFactorOfLengthOfSemiMajorAxis,1961 -scaleFactorOfLengthOfSemiMinorAxis,1962 -scaleFactorOfLowerLimit,1963 -scaleFactorOfLowerWavePeriodLimit,1964 -scaleFactorOfMajorAxisOfOblateSpheroidEarth,1965 -scaleFactorOfMinorAxisOfOblateSpheroidEarth,1966 -scaleFactorOfPrimeMeridianOffset,1967 -scaleFactorOfRadiusOfSphericalEarth,1968 -scaleFactorOfSecondFixedSurface,1969 -scaleFactorOfSecondSize,1970 -scaleFactorOfSecondWavelength,1971 -scaleFactorOfStandardDeviation,1972 -scaleFactorOfStandardDeviationInTheCluster,1973 -scaleFactorOfUpperLimit,1974 -scaleFactorOfUpperWavePeriodLimit,1975 -scaleFactorOfWaveDirectionSequenceParameter,1976 -scaleFactorOfWaveDirections,1977 -scaleFactorOfWaveFrequencies,1978 -scaleFactorOfWaveFrequencySequenceParameter,1979 -scaleValuesBy,1980 -scaledDirections,1981 -scaledFrequencies,1982 -scaledValueOfAdditionalParameterForReferencePeriod,1983 -scaledValueOfCentralWaveNumber,1984 -scaledValueOfDistanceFromEnsembleMean,1985 -scaledValueOfDistributionFunctionParameter,1986 -scaledValueOfEarthMajorAxis,1987 -scaledValueOfEarthMinorAxis,1988 -scaledValueOfFirstFixedSurface,1989 -scaledValueOfFirstSize,1990 -scaledValueOfFirstWavelength,1991 -scaledValueOfLengthOfSemiMajorAxis,1992 -scaledValueOfLengthOfSemiMinorAxis,1993 -scaledValueOfLowerLimit,1994 -scaledValueOfLowerWavePeriodLimit,1995 -scaledValueOfMajorAxisOfOblateSpheroidEarth,1996 -scaledValueOfMinorAxisOfOblateSpheroidEarth,1997 -scaledValueOfPrimeMeridianOffset,1998 -scaledValueOfRadiusOfSphericalEarth,1999 -scaledValueOfSecondFixedSurface,2000 -scaledValueOfSecondSize,2001 -scaledValueOfSecondWavelength,2002 -scaledValueOfStandardDeviation,2003 -scaledValueOfStandardDeviationInTheCluster,2004 -scaledValueOfUpperLimit,2005 -scaledValueOfUpperWavePeriodLimit,2006 -scaledValueOfWaveDirectionSequenceParameter,2007 -scaledValueOfWaveFrequencySequenceParameter,2008 -scaledValuesOfWaveDirections,2009 -scaledValuesOfWaveFrequencies,2010 -scalingFactorForFrequencies,2011 -scanPosition,2012 -scanningMode,2013 -scanningMode4,2014 -scanningMode5,2015 -scanningMode6,2016 -scanningMode7,2017 -scanningMode8,2018 -scanningModeForOneDiamond,2019 -sd,2020 -second,2021 -secondDimension,2022 -secondDimensionCoordinateValueDefinition,2023 -secondDimensionPhysicalSignificance,2024 -secondLatitude,2025 -secondLatitudeInDegrees,2026 -secondOfEndOfOverallTimeInterval,2027 -secondOfForecast,2028 -secondOfForecastUsedInLocalTime,2029 -secondOfModelVersion,2030 -secondOfStartOfReferencePeriod,2031 -secondOrderFlags,2032 -secondOrderOfDifferentWidth,2033 -secondOrderValuesDifferentWidths,2034 -secondSize,2035 -secondaryBitMap,2036 -secondaryBitmap,2037 -secondaryBitmapPresent,2038 -secondaryBitmaps,2039 -secondaryBitmapsCount,2040 -secondaryBitmapsSize,2041 -secondaryMissingValue,2042 -secondaryMissingValueSubstitute,2043 -secondsOfAnalysis,2044 -secondsOfReference,2045 -section,2046 -section0Length,2047 -section0Pointer,2048 -section1,2049 -section10Length,2050 -section10Pointer,2051 -section11Length,2052 -section11Pointer,2053 -section1Flags,2054 -section1Length,2055 -section1Padding,2056 -section1Pointer,2057 -section2Length,2058 -section2Padding,2059 -section2Pointer,2060 -section2Present,2061 -section2Used,2062 -section3Flags,2063 -section3Length,2064 -section3Padding,2065 -section3Pointer,2066 -section3UniqueIdentifier,2067 -section4,2068 -section4Length,2069 -section4Padding,2070 -section4Pointer,2071 -section4UniqueIdentifier,2072 -section5,2073 -section5Length,2074 -section5Pointer,2075 -section5UniqueIdentifier,2076 -section6,2077 -section6Length,2078 -section6Pointer,2079 -section6UniqueIdentifier,2080 -section7,2081 -section7Length,2082 -section7Pointer,2083 -section7UniqueIdentifier,2084 -section8,2085 -section8Length,2086 -section8Pointer,2087 -section8UniqueIdentifier,2088 -section9Length,2089 -section9Pointer,2090 -section9UniqueIdentifier,2091 -sectionLengthLimitForEnsembles,2092 -sectionLengthLimitForProbability,2093 -sectionNumber,2094 -sectionPosition,2095 -section_01,2096 -section_02,2097 -section_03,2098 -section_04,2099 -section_05,2100 -section_06,2101 -section_07,2102 -section_08,2103 -section_09,2104 -section_1,2105 -section_10,2106 -section_11,2107 -section_2,2108 -section_3,2109 -section_4,2110 -section_5,2111 -section_6,2112 -section_7,2113 -section_8,2114 -selectStepTemplateInstant,2115 -selectStepTemplateInterval,2116 -selectedDay,2117 -selectedFcIndex,2118 -selectedHour,2119 -selectedMinute,2120 -selectedMonth,2121 -selectedSecond,2122 -selectedYear,2123 -sensitiveAreaDomain,2124 -sequences,2125 -setBitsPerValue,2126 -setCalendarId,2127 -setDecimalPrecision,2128 -setLocalDefinition,2129 -setPackingType,2130 -setToMissingIfOutOfRange,2131 -sfc_levtype,2132 -shapeOfTheEarth,2133 -shapeOfVerificationArea,2134 -shortName,2135 -shortNameECMF,2136 -shortNameLegacyECMF,2137 -short_name,2138 -signature,2139 -significanceOfReferenceDateAndTime,2140 -significanceOfReferenceTime,2141 -simpleThinningMissingRadius,2142 -simpleThinningSkip,2143 -simpleThinningStart,2144 -siteElevation,2145 -siteId,2146 -siteLatitude,2147 -siteLongitude,2148 -sizeOfLength,2149 -sizeOfOffsets,2150 -sizeOfPostAuxiliaryArray,2151 -sizeOfPostAuxiliaryArrayPlusOne,2152 -skew,2153 -skewness,2154 -skipExtraKeyAttributes,2155 -sort,2156 -sourceOfGridDefinition,2157 -sourceSinkChemicalPhysicalProcess,2158 -southEastLatitudeOfLPOArea,2159 -southEastLatitudeOfVerficationArea,2160 -southEastLongitudeOfLPOArea,2161 -southEastLongitudeOfVerficationArea,2162 -southLatitudeOfCluster,2163 -southLatitudeOfDomainOfTubing,2164 -southPoleOnProjectionPlane,2165 -southernLatitudeOfClusterDomain,2166 -southernLatitudeOfDomain,2167 -sp1,2168 -sp2,2169 -sp3,2170 -spaceUnitFlag,2171 -spacingOfBinsAlongRadials,2172 -spare,2173 -spare1,2174 -spare2,2175 -spare3,2176 -spare4,2177 -spatialProcessing,2178 -spatialSmoothingOfProduct,2179 -spectralDataRepresentationMode,2180 -spectralDataRepresentationType,2181 -spectralMode,2182 -spectralType,2183 -sphericalHarmonics,2184 -standardDeviation,2185 -standardParallel,2186 -standardParallelInDegrees,2187 -standardParallelInMicrodegrees,2188 -startDateOfReferencePeriod,2189 -startOfHeaders,2190 -startOfMessage,2191 -startOfRange,2192 -startStep,2193 -startStepInHours,2194 -startStepUnit,2195 -startTimeStep,2196 -startingAzimuth,2197 -statisticalProcess,2198 -statisticalProcessesList,2199 -statistics,2200 -status,2201 -step,2202 -stepForClustering,2203 -stepHumanReadable,2204 -stepInHours,2205 -stepRange,2206 -stepRangeInHours,2207 -stepType,2208 -stepTypeForConversion,2209 -stepTypeInternal,2210 -stepUnits,2211 -stepZero,2212 -stepunits,2213 -stream,2214 -streamOfAnalysis,2215 -stretchingFactor,2216 -stretchingFactorScaled,2217 -stringValues,2218 -subCentre,2219 -subDefinitions1,2220 -subDefinitions2,2221 -subLocalDefinition1,2222 -subLocalDefinition2,2223 -subLocalDefinitionLength1,2224 -subLocalDefinitionLength2,2225 -subLocalDefinitionNumber1,2226 -subLocalDefinitionNumber2,2227 -subSetJ,2228 -subSetK,2229 -subSetM,2230 -subcentreOfAnalysis,2231 -subdivisionsOfBasicAngle,2232 -suiteName,2233 -superblockExtensionAddress,2234 -swapScanningAlternativeRows,2235 -swapScanningLat,2236 -swapScanningLon,2237 -swapScanningX,2238 -swapScanningY,2239 -system,2240 -systemNumber,2241 -t,2242 -table2Version,2243 -tableCode,2244 -tableNumber,2245 -tableReference,2246 -tablesLocalDir,2247 -tablesMasterDir,2248 -tablesVersion,2249 -tablesVersionLatest,2250 -tablesVersionLatestOfficial,2251 -targetCompressionRatio,2252 -td,2253 -tempPressureUnits,2254 -temperature,2255 -temperatureAndDewpointPresent,2256 -templatesLocalDir,2257 -templatesMasterDir,2258 -theHindcastMarsStream,2259 -theMessage,2260 -thisExperimentVersionNumber,2261 -thisMarsClass,2262 -thisMarsStream,2263 -thisMarsType,2264 -thousand,2265 -three,2266 -threshold,2267 -thresholdIndicator,2268 -tiggeCentre,2269 -tiggeLAMName,2270 -tiggeLocalVersion,2271 -tiggeModel,2272 -tiggeSection,2273 -tiggeSuiteID,2274 -tigge_name,2275 -tigge_short_name,2276 -tile,2277 -tileAttribute,2278 -tileClassification,2279 -tileGrouping,2280 -tileIndex,2281 -tileName,2282 -time,2283 -timeCoordinateDefinition,2284 -timeDomainTemplate,2285 -timeDomainTemplateNumber,2286 -timeIncrement,2287 -timeIncrementBetweenSuccessiveFields,2288 -timeOfAnalysis,2289 -timeOfForecast,2290 -timeOfForecastUsedInLocalTime,2291 -timeOfModelVersion,2292 -timeOfReference,2293 -timeRangeIndicator,2294 -timeRangeIndicatorFromStepRange,2295 -timeUnitFlag,2296 -timerepres,2297 -topLevel,2298 -total,2299 -totalAerosolBinsNumbers,2300 -totalInitialConditions,2301 -totalLength,2302 -totalNumber,2303 -totalNumberOfClusters,2304 -totalNumberOfDataValuesMissingInStatisticalProcess,2305 -totalNumberOfDirections,2306 -totalNumberOfForecastProbabilities,2307 -totalNumberOfFrequencies,2308 -totalNumberOfGridPoints,2309 -totalNumberOfIterations,2310 -totalNumberOfQuantiles,2311 -totalNumberOfRepetitions,2312 -totalNumberOfTileAttributeCombinations,2313 -totalNumberOfTileAttributePairs,2314 -totalNumberOfTubes,2315 -totalNumberOfValuesInUnpackedSubset,2316 -totalNumberOfWaveDirections,2317 -totalNumberOfWaveFrequencies,2318 -totalNumberOfdimensions,2319 -totalTileAttCombo,2320 -treatmentOfMissingData,2321 -true,2322 -trueLengthOfLastGroup,2323 -truncateDegrees,2324 -truncateLaplacian,2325 -tsectionNumber3,2326 -tsectionNumber4,2327 -tsectionNumber5,2328 -tubeDomain,2329 -tubeNumber,2330 -two,2331 -twoOrdersOfSPD,2332 -type,2333 -typeOfAnalysis,2334 -typeOfAuxiliaryInformation,2335 -typeOfCalendar,2336 -typeOfCompressionUsed,2337 -typeOfDistributionFunction,2338 -typeOfEnsembleForecast,2339 -typeOfEnsembleMember,2340 -typeOfFirstFixedSurface,2341 -typeOfGeneratingProcess,2342 -typeOfGrid,2343 -typeOfHorizontalLine,2344 -typeOfIntervalForFirstAndSecondSize,2345 -typeOfIntervalForFirstAndSecondWavelength,2346 -typeOfLevel,2347 -typeOfLevelECMF,2348 -typeOfOriginalFieldValues,2349 -typeOfPacking,2350 -typeOfPostProcessing,2351 -typeOfPreProcessing,2352 -typeOfProcessedData,2353 -typeOfReferenceDataset,2354 -typeOfRelationToReferenceDataset,2355 -typeOfSSTFieldUsed,2356 -typeOfSecondFixedSurface,2357 -typeOfSizeInterval,2358 -typeOfStatisticalPostProcessingOfEnsembleMembers,2359 -typeOfStatisticalProcessing,2360 -typeOfStatisticalProcessingForTimeRangeForReferencePeriod,2361 -typeOfTile,2362 -typeOfTimeIncrement,2363 -typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2364 -typeOfWaveDirectionSequence,2365 -typeOfWaveFrequencySequence,2366 -typeOfWavePeriodInterval,2367 -typeOfWavelengthInterval,2368 -typicalCentury,2369 -typicalDate,2370 -typicalDateTime,2371 -typicalDay,2372 -typicalHour,2373 -typicalMinute,2374 -typicalMonth,2375 -typicalSecond,2376 -typicalTime,2377 -typicalYear,2378 -typicalYear2,2379 -typicalYearOfCentury,2380 -uco,2381 -ucs,2382 -uerraLocalVersion,2383 -uerraSection,2384 -unexpandedDescriptors,2385 -unexpandedDescriptorsEncoded,2386 -unitOfOffsetFromReferenceTime,2387 -unitOfTime,2388 -unitOfTimeIncrement,2389 -unitOfTimeRange,2390 -units,2391 -unitsBias,2392 -unitsConversionOffset,2393 -unitsConversionScaleFactor,2394 -unitsDecimalScaleFactor,2395 -unitsECMF,2396 -unitsFactor,2397 -unitsLegacyECMF,2398 -unitsOfFirstFixedSurface,2399 -unitsOfSecondFixedSurface,2400 -unknown,2401 -unpack,2402 -unpackedError,2403 -unpackedSubsetPrecision,2404 -unpackedValues,2405 -unsignedIntegers,2406 -unstructuredGrid,2407 -unstructuredGridSubtype,2408 -unstructuredGridType,2409 -unstructuredGridUUID,2410 -unusedBitsInBitmap,2411 -updateSequenceNumber,2412 -upperLimit,2413 -upperRange,2414 -upperThreshold,2415 -upperThresholdValue,2416 -userDateEnd,2417 -userDateStart,2418 -userDateTimeEnd,2419 -userDateTimeStart,2420 -userTimeEnd,2421 -userTimeStart,2422 -uuid,2423 -uuidOfDataGroup,2424 -uuidOfHGrid,2425 -uuidOfVGrid,2426 -uvRelativeToGrid,2427 -validityDate,2428 -validityDateTime,2429 -validityTime,2430 -values,2431 -variationOfVisibility,2432 -variationOfVisibilityDirection,2433 -variationOfVisibilityDirectionAngle,2434 -variationOfVisibilityDirectionTrend1,2435 -variationOfVisibilityDirectionTrend2,2436 -variationOfVisibilityDirectionTrend3,2437 -variationOfVisibilityDirectionTrend4,2438 -variationOfVisibilityTrend1,2439 -variationOfVisibilityTrend2,2440 -variationOfVisibilityTrend3,2441 -variationOfVisibilityTrend4,2442 -varno,2443 -verificationDate,2444 -verificationMonth,2445 -verificationYear,2446 -verifyingMonth,2447 -version,2448 -versionNumOfFilesFreeSpaceStorage,2449 -versionNumOfRootGroupSymbolTableEntry,2450 -versionNumOfSharedHeaderMessageFormat,2451 -versionNumberOfExperimentalSuite,2452 -versionNumberOfGribLocalTables,2453 -versionNumberOfSuperblock,2454 -versionOfModelClimate,2455 -verticalCoordinate,2456 -verticalCoordinateDefinition,2457 -verticalDomainTemplate,2458 -verticalDomainTemplateNumber,2459 -verticalVisibility,2460 -verticalVisibilityCoded,2461 -visibility,2462 -visibilityInKilometresTrend1,2463 -visibilityInKilometresTrend2,2464 -visibilityInKilometresTrend3,2465 -visibilityInKilometresTrend4,2466 -visibilityTrend1,2467 -visibilityTrend2,2468 -visibilityTrend3,2469 -visibilityTrend4,2470 -waveDirectionNumber,2471 -waveDomain,2472 -waveFrequencyNumber,2473 -waveLevType,2474 -weightAppliedToClimateMonth1,2475 -westLongitudeOfCluster,2476 -westLongitudeOfDomainOfTubing,2477 -westernLongitudeOfClusterDomain,2478 -westernLongitudeOfDomain,2479 -widthOfFirstOrderValues,2480 -widthOfLengths,2481 -widthOfSPD,2482 -widthOfWidths,2483 -windDirection,2484 -windDirectionTrend1,2485 -windDirectionTrend2,2486 -windDirectionTrend3,2487 -windDirectionTrend4,2488 -windGust,2489 -windGustTrend1,2490 -windGustTrend2,2491 -windGustTrend3,2492 -windGustTrend4,2493 -windPresent,2494 -windSpeed,2495 -windSpeedTrend1,2496 -windSpeedTrend2,2497 -windSpeedTrend3,2498 -windSpeedTrend4,2499 -windUnits,2500 -windUnitsTrend1,2501 -windUnitsTrend2,2502 -windUnitsTrend3,2503 -windUnitsTrend4,2504 -windVariableDirection,2505 -windVariableDirectionTrend1,2506 -windVariableDirectionTrend2,2507 -windVariableDirectionTrend3,2508 -windVariableDirectionTrend4,2509 -wrongPadding,2510 -xCoordinateOfOriginOfSectorImage,2511 -xCoordinateOfSubSatellitePoint,2512 -xDirectionGridLength,2513 -xDirectionGridLengthInMetres,2514 -xDirectionGridLengthInMillimetres,2515 -xFirst,2516 -xLast,2517 -yCoordinateOfOriginOfSectorImage,2518 -yCoordinateOfSubSatellitePoint,2519 -yDirectionGridLength,2520 -yDirectionGridLengthInMetres,2521 -yDirectionGridLengthInMillimetres,2522 -yFirst,2523 -yLast,2524 -year,2525 -yearOfAnalysis,2526 -yearOfCentury,2527 -yearOfEndOfOverallTimeInterval,2528 -yearOfForecast,2529 -yearOfForecastUsedInLocalTime,2530 -yearOfModelVersion,2531 -yearOfReference,2532 -yearOfStartOfReferencePeriod,2533 -zero,2534 -zeros,2535 +extras,849 +extremeClockwiseWindDirection,850 +extremeCounterClockwiseWindDirection,851 +extremeValuesRVR1,852 +extremeValuesRVR2,853 +extremeValuesRVR3,854 +extremeValuesRVR4,855 +faFieldName,856 +faLevelName,857 +faModelName,858 +false,859 +falseEasting,860 +falseNorthing,861 +fcmonth,862 +fcperiod,863 +fgDate,864 +fgTime,865 +file,866 +fileConsistencyFlags,867 +fireTemplate,868 +firstDimension,869 +firstDimensionCoordinateValueDefinition,870 +firstDimensionPhysicalSignificance,871 +firstLatitude,872 +firstLatitudeInDegrees,873 +firstMonthUsedToBuildClimateMonth1,874 +firstMonthUsedToBuildClimateMonth2,875 +firstOrderValues,876 +firstSize,877 +firstWavelength,878 +firstWavelengthInMetres,879 +firstWavelengthInNanometres,880 +flag,881 +flagForAnyFurtherInformation,882 +flagForIrregularGridCoordinateList,883 +flagForNormalOrStaggeredGrid,884 +flagShowingPostAuxiliaryArrayInUse,885 +flags,886 +floatVal,887 +floatValues,888 +forceStepUnits,889 +forecastLeadTime,890 +forecastMonth,891 +forecastOrSingularVectorNumber,892 +forecastPeriod,893 +forecastPeriodFrom,894 +forecastPeriodTo,895 +forecastProbabilityNumber,896 +forecastSteps,897 +forecastTime,898 +forecastperiod,899 +formatForDoubles,900 +formatForLongs,901 +formatVersionMajorNumber,902 +formatVersionMinorNumber,903 +freeFormData,904 +frequency,905 +frequencyNumber,906 +frequencyScalingFactor,907 +functionCode,908 +g,909 +g1conceptsLocalDirAll,910 +g1conceptsMasterDir,911 +g2grid,912 +gaussianGridName,913 +genVertHeightCoords,914 +generalExtended2ordr,915 +generatingProcessIdentificationNumber,916 +generatingProcessIdentifier,917 +generatingProcessTemplate,918 +generatingProcessTemplateNumber,919 +generation,920 +getNumberOfValues,921 +gg,922 +global,923 +globalDomain,924 +grib1divider,925 +grib2LocalSectionNumber,926 +grib2LocalSectionPresent,927 +grib2divider,928 +grib3divider,929 +gribDataQualityChecks,930 +gribMasterTablesVersionNumber,931 +gribTablesVersionNo,932 +grid,933 +gridCoordinate,934 +gridDefinition,935 +gridDefinitionDescription,936 +gridDefinitionSection,937 +gridDefinitionTemplateNumber,938 +gridDescriptionSectionPresent,939 +gridName,940 +gridPointPosition,941 +gridSpecification,942 +gridType,943 +groupInternalNodeK,944 +groupLeafNodeK,945 +groupLengths,946 +groupSplitting,947 +groupSplittingMethodUsed,948 +groupWidth,949 +groupWidths,950 +gts_CCCC,951 +gts_TTAAii,952 +gts_ddhh00,953 +gts_header,954 +halfByte,955 +hdate,956 +headersOnly,957 +heightLevelName,958 +heightOrPressureOfLevel,959 +heightPressureEtcOfLevels,960 +hideThis,961 +hook_post_meta_data,962 +horizontalCoordinateDefinition,963 +horizontalCoordinateSupplement,964 +horizontalDimensionProcessed,965 +horizontalDomainTemplate,966 +horizontalDomainTemplateNumber,967 +hour,968 +hourOfAnalysis,969 +hourOfEndOfOverallTimeInterval,970 +hourOfForecast,971 +hourOfForecastUsedInLocalTime,972 +hourOfModelVersion,973 +hourOfReference,974 +hourOfStartOfReferencePeriod,975 +hoursAfterDataCutoff,976 +hoursAfterReferenceTimeOfDataCutoff,977 +hundred,978 +iDirectionIncrement,979 +iDirectionIncrementGiven,980 +iDirectionIncrementGridLength,981 +iDirectionIncrementInDegrees,982 +iIncrement,983 +iScansNegatively,984 +iScansPositively,985 +ident,986 +identificationNumber,987 +identificationOfOriginatingGeneratingCentre,988 +identificationOfProject,989 +identifier,990 +ieeeFloats,991 +ifsParam,992 +ijDirectionIncrementGiven,993 +implementationDateOfModelCycle,994 +incrementOfLengths,995 +indexTemplate,996 +indexTemplateNumber,997 +indexedStorageInternalNodeK,998 +indexingDate,999 +indexingTime,1000 +indexingTimeHH,1001 +indexingTimeHHMM,1002 +indexingTimeMM,1003 +indicatorOfParameter,1004 +indicatorOfTypeOfLevel,1005 +indicatorOfUnitForForecastTime,1006 +indicatorOfUnitForTimeIncrement,1007 +indicatorOfUnitForTimeRange,1008 +indicatorOfUnitForTimeRangeForReferencePeriod,1009 +indicatorOfUnitOfTimeRange,1010 +inputDataPresentIndicator,1011 +inputDelayedDescriptorReplicationFactor,1012 +inputExtendedDelayedDescriptorReplicationFactor,1013 +inputOriginatingCentre,1014 +inputOverriddenReferenceValues,1015 +inputProcessIdentifier,1016 +inputShortDelayedDescriptorReplicationFactor,1017 +instrument,1018 +instrumentIdentifier,1019 +instrumentType,1020 +integerPointValues,1021 +integerScaleFactor,1022 +integerScalingFactorAppliedToDirections,1023 +integerScalingFactorAppliedToFrequencies,1024 +integerValues,1025 +internalVersion,1026 +internationalDataSubCategory,1027 +interpretationOfNumberOfPoints,1028 +intervalBetweenTimes,1029 +isAccumulation,1030 +isAuto,1031 +isCavok,1032 +isCavokTrend1,1033 +isCavokTrend2,1034 +isCavokTrend3,1035 +isCavokTrend4,1036 +isConstant,1037 +isCorrection,1038 +isEPS,1039 +isEps,1040 +isFillup,1041 +isGridded,1042 +isHindcast,1043 +isOctahedral,1044 +isRotatedGrid,1045 +isSatellite,1046 +isSatelliteType,1047 +isSens,1048 +isSpectral,1049 +isTemplateDeprecated,1050 +isTemplateExperimental,1051 +is_aerosol,1052 +is_aerosol_optical,1053 +is_chemical,1054 +is_chemical_distfn,1055 +is_chemical_srcsink,1056 +is_localtime,1057 +is_ocean2d_param,1058 +is_ocean3d_param,1059 +is_uerra,1060 +isectionNumber2,1061 +isectionNumber3,1062 +isectionNumber4,1063 +isotopeIdentificationNumber,1064 +iteration,1065 +iterationNumber,1066 +iteratorDisableUnrotate,1067 +jDirectionIncrement,1068 +jDirectionIncrementGiven,1069 +jDirectionIncrementGridLength,1070 +jDirectionIncrementInDegrees,1071 +jIncrement,1072 +jPointsAreConsecutive,1073 +jScansNegatively,1074 +jScansPositively,1075 +jdLocal,1076 +jdSelected,1077 +julianDay,1078 +julianForecastDay,1079 +keyData,1080 +keyMore,1081 +keySat,1082 +kindOfProduct,1083 +kurt,1084 +kurtosis,1085 +lBB,1086 +landtype,1087 +laplacianOperator,1088 +laplacianOperatorIsSet,1089 +laplacianScalingFactor,1090 +laplacianScalingFactorUnset,1091 +lastMonthUsedToBuildClimateMonth1,1092 +lastMonthUsedToBuildClimateMonth2,1093 +latLonValues,1094 +latitude,1095 +latitudeFirstInDegrees,1096 +latitudeLastInDegrees,1097 +latitudeLongitudeValues,1098 +latitudeOfCentralPointInClusterDomain,1099 +latitudeOfCentrePoint,1100 +latitudeOfCentrePointInDegrees,1101 +latitudeOfFirstGridPoint,1102 +latitudeOfFirstGridPointInDegrees,1103 +latitudeOfGridPoints,1104 +latitudeOfIcosahedronPole,1105 +latitudeOfLastGridPoint,1106 +latitudeOfLastGridPointInDegrees,1107 +latitudeOfNorthWestCornerOfArea,1108 +latitudeOfReferencePoint,1109 +latitudeOfReferencePointInDegrees,1110 +latitudeOfSouthEastCornerOfArea,1111 +latitudeOfSouthernPole,1112 +latitudeOfSouthernPoleInDegrees,1113 +latitudeOfStretchingPole,1114 +latitudeOfStretchingPoleInDegrees,1115 +latitudeOfSubSatellitePoint,1116 +latitudeOfSubSatellitePointInDegrees,1117 +latitudeOfTangencyPoint,1118 +latitudeOfThePoleOfStretching,1119 +latitudeOfThePolePoint,1120 +latitudeOfThePolePointInDegrees,1121 +latitudeOfTheSouthernPoleOfProjection,1122 +latitudeSexagesimal,1123 +latitudeWhereDxAndDyAreSpecified,1124 +latitudeWhereDxAndDyAreSpecifiedInDegrees,1125 +latitudes,1126 +latitudesList,1127 +latitudinalDirectionGridLength,1128 +lcwfvSuiteName,1129 +leadtime,1130 +legBaseDate,1131 +legBaseTime,1132 +legNumber,1133 +legacyGaussSubarea,1134 +lengthDescriptors,1135 +lengthIncrementForTheGroupLengths,1136 +lengthOf4DvarWindow,1137 +lengthOfHeaders,1138 +lengthOfIndexTemplate,1139 +lengthOfMessage,1140 +lengthOfOriginatorLocalTemplate,1141 +lengthOfProjectLocalTemplate,1142 +lengthOfTimeRange,1143 +lengthOfTimeRangeForReferencePeriod,1144 +lev,1145 +levTypeName,1146 +level,1147 +levelIndicator,1148 +levelType,1149 +levelValues,1150 +level_value_list,1151 +levelist,1152 +levels,1153 +levtype,1154 +libraryVersion,1155 +listMembersMissing,1156 +listMembersMissing2,1157 +listMembersMissing3,1158 +listMembersMissing4,1159 +listMembersUsed,1160 +listMembersUsed2,1161 +listMembersUsed3,1162 +listMembersUsed4,1163 +listOfContributingSpectralBands,1164 +listOfDistributionFunctionParameter,1165 +listOfEnsembleForecastNumbers,1166 +listOfModelIdentifiers,1167 +listOfParametersUsedForClustering,1168 +listOfScaledFrequencies,1169 +listOfUsedTileAttributesInCombination,1170 +listOfWaveDirectionSequenceParameters,1171 +listOfWaveFrequencySequenceParameters,1172 +local,1173 +localDate,1174 +localDateTime,1175 +localDay,1176 +localDecimalScaleFactor,1177 +localDefNumberOne,1178 +localDefNumberTwo,1179 +localDefinition,1180 +localDefinitionNumber,1181 +localDir,1182 +localExtensionPadding,1183 +localFlag,1184 +localFlagLatestVersion,1185 +localHour,1186 +localLatitude,1187 +localLatitude1,1188 +localLatitude2,1189 +localLongitude,1190 +localLongitude1,1191 +localLongitude2,1192 +localMinute,1193 +localMonth,1194 +localNumberOfObservations,1195 +localSecond,1196 +localSection,1197 +localSectionPresent,1198 +localTablesVersion,1199 +localTablesVersionNumber,1200 +localTime,1201 +localTimeForecastList,1202 +localTimeMethod,1203 +localUsePresent,1204 +localYear,1205 +local_padding,1206 +local_use,1207 +logTransform,1208 +longitude,1209 +longitudeFirstInDegrees,1210 +longitudeLastInDegrees,1211 +longitudeOfCentralPointInClusterDomain,1212 +longitudeOfCentrePoint,1213 +longitudeOfCentrePointInDegrees,1214 +longitudeOfFirstDiamondCenterLine,1215 +longitudeOfFirstDiamondCentreLine,1216 +longitudeOfFirstDiamondCentreLineInDegrees,1217 +longitudeOfFirstGridPoint,1218 +longitudeOfFirstGridPointInDegrees,1219 +longitudeOfGridPoints,1220 +longitudeOfIcosahedronPole,1221 +longitudeOfLastGridPoint,1222 +longitudeOfLastGridPointInDegrees,1223 +longitudeOfNorthWestCornerOfArea,1224 +longitudeOfReferencePoint,1225 +longitudeOfReferencePointInDegrees,1226 +longitudeOfSouthEastCornerOfArea,1227 +longitudeOfSouthernPole,1228 +longitudeOfSouthernPoleInDegrees,1229 +longitudeOfStretchingPole,1230 +longitudeOfStretchingPoleInDegrees,1231 +longitudeOfSubSatellitePoint,1232 +longitudeOfSubSatellitePointInDegrees,1233 +longitudeOfTangencyPoint,1234 +longitudeOfThePoleOfStretching,1235 +longitudeOfThePolePoint,1236 +longitudeOfThePolePointInDegrees,1237 +longitudeOfTheSouthernPoleOfProjection,1238 +longitudeSexagesimal,1239 +longitudes,1240 +longitudesList,1241 +longitudinalDirectionGridLength,1242 +lowerLimit,1243 +lowerRange,1244 +lowerThreshold,1245 +lowerThresholdValue,1246 +ls_labeling,1247 +lsdate_bug,1248 +lstime_bug,1249 +m,1250 +mAngleMultiplier,1251 +mBasicAngle,1252 +mars,1253 +marsClass,1254 +marsClass1,1255 +marsClass2,1256 +marsDir,1257 +marsDomain,1258 +marsEndStep,1259 +marsExperimentOffset,1260 +marsExpver,1261 +marsForecastMonth,1262 +marsGrid,1263 +marsIdent,1264 +marsKeywords,1265 +marsKeywords1,1266 +marsLamModel,1267 +marsLatitude,1268 +marsLevel,1269 +marsLevelist,1270 +marsLongitude,1271 +marsModel,1272 +marsParam,1273 +marsQuantile,1274 +marsRange,1275 +marsStartStep,1276 +marsStep,1277 +marsStream,1278 +marsStream1,1279 +marsStream2,1280 +marsType,1281 +marsType1,1282 +marsType2,1283 +mars_labeling,1284 +mask,1285 +masterDir,1286 +masterTableNumber,1287 +masterTablesVersionNumber,1288 +masterTablesVersionNumberLatest,1289 +matchAerosolBinNumber,1290 +matchAerosolPacking,1291 +matchLandType,1292 +matchSort,1293 +matchTimeRepres,1294 +matrixBitmapsPresent,1295 +matrixOfValues,1296 +max,1297 +maxLevelValue,1298 +maximum,1299 +md5Data,1300 +md5DataSection,1301 +md5GridSection,1302 +md5Headers,1303 +md5Product,1304 +md5Section1,1305 +md5Section10,1306 +md5Section2,1307 +md5Section3,1308 +md5Section4,1309 +md5Section5,1310 +md5Section6,1311 +md5Section7,1312 +md5Section8,1313 +md5Section9,1314 +md5Structure,1315 +md5TimeDomainSection,1316 +meanRVR1,1317 +meanRVR2,1318 +meanRVR3,1319 +meanRVR4,1320 +meanSize,1321 +meanValueRVR1,1322 +meanValueRVR2,1323 +meanValueRVR3,1324 +meanValueRVR4,1325 +meaningOfVerticalCoordinate,1326 +memberNumber,1327 +messageLength,1328 +metadata,1329 +method,1330 +methodNumber,1331 +million,1332 +min,1333 +minimum,1334 +minute,1335 +minuteOfAnalysis,1336 +minuteOfEndOfOverallTimeInterval,1337 +minuteOfForecast,1338 +minuteOfForecastUsedInLocalTime,1339 +minuteOfModelVersion,1340 +minuteOfReference,1341 +minuteOfStartOfReferencePeriod,1342 +minutesAfterDataCutoff,1343 +minutesAfterReferenceTimeOfDataCutoff,1344 +missingDataFlag,1345 +missingValue,1346 +missingValueManagement,1347 +missingValueManagementUsed,1348 +missingValuesPresent,1349 +missing_values,1350 +mixedCoordinateDefinition,1351 +mixedCoordinateFieldFlag,1352 +modeNumber,1353 +model,1354 +modelErrorType,1355 +modelIdentifier,1356 +modelName,1357 +modelVersion,1358 +modelVersionDate,1359 +modelVersionTime,1360 +molarMass,1361 +month,1362 +monthOfAnalysis,1363 +monthOfEndOfOverallTimeInterval,1364 +monthOfForecast,1365 +monthOfForecastUsedInLocalTime,1366 +monthOfModelVersion,1367 +monthOfReference,1368 +monthOfStartOfReferencePeriod,1369 +monthlyVerificationDate,1370 +monthlyVerificationMonth,1371 +monthlyVerificationTime,1372 +monthlyVerificationYear,1373 +multiplicationFactorForLatLong,1374 +n,1375 +n2,1376 +n3,1377 +nTileAtt,1378 +nTileAttCombo,1379 +nTiles,1380 +na,1381 +name,1382 +nameECMF,1383 +nameLegacyECMF,1384 +nameOfFirstFixedSurface,1385 +nameOfSecondFixedSurface,1386 +names,1387 +nd,1388 +neitherPresent,1389 +newSubtype,1390 +ninety_nine,1391 +nlev,1392 +nnn,1393 +normAtFinalTime,1394 +normAtInitialTime,1395 +normal,1396 +northLatitudeOfCluster,1397 +northLatitudeOfDomainOfTubing,1398 +northWestLatitudeOfLPOArea,1399 +northWestLatitudeOfVerficationArea,1400 +northWestLongitudeOfLPOArea,1401 +northWestLongitudeOfVerficationArea,1402 +northernLatitudeOfClusterDomain,1403 +northernLatitudeOfDomain,1404 +nosigPresent,1405 +notDecoded,1406 +nref,1407 +nspatvals,1408 +nt,1409 +number,1410 +numberInHorizontalCoordinates,1411 +numberInMixedCoordinateDefinition,1412 +numberInTheAuxiliaryArray,1413 +numberInTheGridCoordinateList,1414 +numberIncludedInAverage,1415 +numberMissingFromAveragesOrAccumulations,1416 +numberOfAdditionalParametersForReferencePeriod,1417 +numberOfAnalysis,1418 +numberOfBits,1419 +numberOfBitsContainingEachPackedValue,1420 +numberOfBitsForScaledGroupLengths,1421 +numberOfBitsUsedForTheGroupWidths,1422 +numberOfBitsUsedForTheScaledGroupLengths,1423 +numberOfBytesInLocalDefinition,1424 +numberOfBytesOfFreeFormatData,1425 +numberOfBytesPerInteger,1426 +numberOfCategories,1427 +numberOfCharacters,1428 +numberOfChars,1429 +numberOfClusterHighResolution,1430 +numberOfClusterLowResolution,1431 +numberOfClusters,1432 +numberOfCodedValues,1433 +numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1434 +numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1435 +numberOfColumns,1436 +numberOfComponents,1437 +numberOfContributingSpectralBands,1438 +numberOfControlForecastTube,1439 +numberOfCoordinatesValues,1440 +numberOfDataBinsAlongRadials,1441 +numberOfDataMatrices,1442 +numberOfDataPoints,1443 +numberOfDataPointsExpected,1444 +numberOfDataValues,1445 +numberOfDaysInClimateSamplingWindow,1446 +numberOfDiamonds,1447 +numberOfDirections,1448 +numberOfDistinctSection3s,1449 +numberOfDistinctSection4s,1450 +numberOfDistinctSection5s,1451 +numberOfDistinctSection6s,1452 +numberOfDistinctSection7s,1453 +numberOfDistinctSection8s,1454 +numberOfDistinctSection9s,1455 +numberOfDistributionFunctionParameters,1456 +numberOfEffectiveValues,1457 +numberOfFloats,1458 +numberOfForcasts,1459 +numberOfForecastsInCluster,1460 +numberOfForecastsInEnsemble,1461 +numberOfForecastsInTheCluster,1462 +numberOfForecastsInTube,1463 +numberOfForecastsUsedInLocalTime,1464 +numberOfFrequencies,1465 +numberOfGridInReference,1466 +numberOfGridUsed,1467 +numberOfGroups,1468 +numberOfGroupsOfDataValues,1469 +numberOfHorizontalPoints,1470 +numberOfIntegers,1471 +numberOfInts,1472 +numberOfIterations,1473 +numberOfLevelValues,1474 +numberOfLocalDefinitions,1475 +numberOfLogicals,1476 +numberOfMembersInCluster,1477 +numberOfMembersInEnsemble,1478 +numberOfMissing,1479 +numberOfMissingInStatisticalProcess,1480 +numberOfMissingValues,1481 +numberOfModeOfDistribution,1482 +numberOfModels,1483 +numberOfOctectsForNumberOfPoints,1484 +numberOfOctetsExtraDescriptors,1485 +numberOfOperationalForecastTube,1486 +numberOfPackedValues,1487 +numberOfParallelsBetweenAPoleAndTheEquator,1488 +numberOfParametersUsedForClustering,1489 +numberOfPartitions,1490 +numberOfPoints,1491 +numberOfPointsAlongAMeridian,1492 +numberOfPointsAlongAParallel,1493 +numberOfPointsAlongASide,1494 +numberOfPointsAlongFirstAxis,1495 +numberOfPointsAlongSecondAxis,1496 +numberOfPointsAlongTheXAxis,1497 +numberOfPointsAlongTheYAxis,1498 +numberOfPointsAlongXAxis,1499 +numberOfPointsAlongXAxisInCouplingArea,1500 +numberOfPointsAlongYAxis,1501 +numberOfPointsAlongYAxisInCouplingArea,1502 +numberOfPointsInDomain,1503 +numberOfPointsUsed,1504 +numberOfPressureLevelsUsedForClustering,1505 +numberOfRadarSitesUsed,1506 +numberOfRadials,1507 +numberOfReferencePeriodTimeRanges,1508 +numberOfReforecastYearsInModelClimate,1509 +numberOfRemaininChars,1510 +numberOfRepresentativeMember,1511 +numberOfReservedBytes,1512 +numberOfRows,1513 +numberOfSecondOrderPackedValues,1514 +numberOfSection,1515 +numberOfSingularVectorsComputed,1516 +numberOfSingularVectorsEvolved,1517 +numberOfSpatialVicinityValues,1518 +numberOfStatisticallyProcessedFieldsForLocalTime,1519 +numberOfStepsUsedForClustering,1520 +numberOfSubsets,1521 +numberOfTensOfThousandsOfYearsOfOffset,1522 +numberOfTimeIncrementsOfForecastsUsedInLocalTime,1523 +numberOfTimeRange,1524 +numberOfTimeRanges,1525 +numberOfTimeSteps,1526 +numberOfUnexpandedDescriptors,1527 +numberOfUnusedBitsAtEndOfSection3,1528 +numberOfUsedSpatialTiles,1529 +numberOfUsedTileAttributeCombinationsForTypeOfTile,1530 +numberOfUsedTileAttributes,1531 +numberOfUsedTileAttributesForTileAttributeCombination,1532 +numberOfUsefulPointsAlongXAxis,1533 +numberOfUsefulPointsAlongYAxis,1534 +numberOfVGridUsed,1535 +numberOfValues,1536 +numberOfVerticalCoordinateValues,1537 +numberOfVerticalGridDescriptors,1538 +numberOfVerticalPoints,1539 +numberOfWaveDirectionSequenceParameters,1540 +numberOfWaveDirections,1541 +numberOfWaveFrequencies,1542 +numberOfWaveFrequencySequenceParameters,1543 +numberingOrderOfDiamonds,1544 +numericValues,1545 +observablePropertyTemplate,1546 +observablePropertyTemplateNumber,1547 +observationDiagnostic,1548 +observationGeneratingProcessIdentifier,1549 +observationType,1550 +observedData,1551 +obstype,1552 +oceanAtmosphereCoupling,1553 +oceanLevName,1554 +oceanStream,1555 +octetAtWichPackedDataBegins,1556 +offset,1557 +offsetAfterBitmap,1558 +offsetAfterCentreLocalSection,1559 +offsetAfterData,1560 +offsetAfterLocalSection,1561 +offsetAfterPadding,1562 +offsetBBitmap,1563 +offsetBSection5,1564 +offsetBSection6,1565 +offsetBSection9,1566 +offsetBeforeBitmap,1567 +offsetBeforeData,1568 +offsetBeforePL,1569 +offsetBeforePV,1570 +offsetDescriptors,1571 +offsetEndSection4,1572 +offsetFreeFormData,1573 +offsetFromOriginToInnerBound,1574 +offsetFromReferenceOfFirstTime,1575 +offsetICEFieldsUsed,1576 +offsetSection0,1577 +offsetSection1,1578 +offsetSection10,1579 +offsetSection11,1580 +offsetSection2,1581 +offsetSection3,1582 +offsetSection4,1583 +offsetSection5,1584 +offsetSection6,1585 +offsetSection7,1586 +offsetSection8,1587 +offsetSection9,1588 +offsetToEndOf4DvarWindow,1589 +offsetValuesBy,1590 +offsetdate,1591 +offsettime,1592 +oldSubtype,1593 +one,1594 +oneConstant,1595 +oneMillionConstant,1596 +oneMinuteMeanMaximumRVR1,1597 +oneMinuteMeanMaximumRVR2,1598 +oneMinuteMeanMaximumRVR3,1599 +oneMinuteMeanMaximumRVR4,1600 +oneMinuteMeanMinimumRVR1,1601 +oneMinuteMeanMinimumRVR2,1602 +oneMinuteMeanMinimumRVR3,1603 +oneMinuteMeanMinimumRVR4,1604 +oper,1605 +operStream,1606 +operatingMode,1607 +operationalForecastCluster,1608 +optimisationTime,1609 +optimizeScaleFactor,1610 +optionalData,1611 +opttime,1612 +orderOfSPD,1613 +orderOfSpatialDifferencing,1614 +ordering,1615 +orderingConvention,1616 +orientationOfTheGrid,1617 +orientationOfTheGridInDegrees,1618 +origin,1619 +originOfPostProcessing,1620 +originalParameterNumber,1621 +originalParameterTableNumber,1622 +originalSubCentreIdentifier,1623 +originatingCentre,1624 +originatingCentreOfAnalysis,1625 +originatingClass,1626 +originatorLocalTemplate,1627 +originatorLocalTemplateNumber,1628 +outerLoopLengthOfTimeRange,1629 +outerLoopTypeOfStatisticalProcessing,1630 +outerLoopTypeOfTimeIncrement,1631 +overlayTemplate,1632 +overlayTemplateNumber,1633 +pack,1634 +packedValues,1635 +packingError,1636 +packingType,1637 +padding,1638 +padding_grid1_1,1639 +padding_grid1_2,1640 +padding_grid3_1,1641 +padding_grid4_1,1642 +padding_grid50_1,1643 +padding_grid5_1,1644 +padding_grid90_1,1645 +padding_loc10_1,1646 +padding_loc12_1,1647 +padding_loc13_1,1648 +padding_loc13_2,1649 +padding_loc13_3,1650 +padding_loc13_4,1651 +padding_loc13_5,1652 +padding_loc14_1,1653 +padding_loc14_2,1654 +padding_loc15_1,1655 +padding_loc16_1,1656 +padding_loc17_2,1657 +padding_loc18_1,1658 +padding_loc18_2,1659 +padding_loc190_1,1660 +padding_loc191_1,1661 +padding_loc191_2,1662 +padding_loc191_3,1663 +padding_loc192_1,1664 +padding_loc19_2,1665 +padding_loc20_1,1666 +padding_loc21_1,1667 +padding_loc23_1,1668 +padding_loc244_1,1669 +padding_loc244_2,1670 +padding_loc244_3,1671 +padding_loc245_1,1672 +padding_loc245_2,1673 +padding_loc26_1,1674 +padding_loc27_1,1675 +padding_loc27_2,1676 +padding_loc28_1,1677 +padding_loc29_1,1678 +padding_loc29_2,1679 +padding_loc29_3,1680 +padding_loc2_1,1681 +padding_loc2_2,1682 +padding_loc30_1,1683 +padding_loc30_2,1684 +padding_loc37_1,1685 +padding_loc37_2,1686 +padding_loc38_1,1687 +padding_loc3_1,1688 +padding_loc43,1689 +padding_loc4_2,1690 +padding_loc50_1,1691 +padding_loc5_1,1692 +padding_loc6_1,1693 +padding_loc7_1,1694 +padding_loc9_1,1695 +padding_loc9_2,1696 +padding_local11_1,1697 +padding_local1_1,1698 +padding_local1_31,1699 +padding_local40_1,1700 +padding_local_35,1701 +padding_local_7_1,1702 +padding_sec1_loc,1703 +padding_sec2_1,1704 +padding_sec2_2,1705 +padding_sec2_3,1706 +padding_sec3_1,1707 +padding_sec4_1,1708 +paleontologicalOffset,1709 +param,1710 +paramId,1711 +paramIdECMF,1712 +paramIdForConversion,1713 +paramIdLegacyECMF,1714 +paramTypeTile,1715 +param_value_max,1716 +param_value_min,1717 +parameter,1718 +parameterCategory,1719 +parameterCode,1720 +parameterDiscipline,1721 +parameterIndicator,1722 +parameterName,1723 +parameterNumber,1724 +parameterUnits,1725 +parameters,1726 +parametersVersion,1727 +paramtype,1728 +partitionItems,1729 +partitionNumber,1730 +partitionTable,1731 +partitions,1732 +pastTendencyRVR1,1733 +pastTendencyRVR2,1734 +pastTendencyRVR3,1735 +pastTendencyRVR4,1736 +patch_precip_fp,1737 +pentagonalResolutionParameterJ,1738 +pentagonalResolutionParameterK,1739 +pentagonalResolutionParameterM,1740 +percentileValue,1741 +periodOfTime,1742 +periodOfTimeIntervals,1743 +perturbationNumber,1744 +perturbedType,1745 +phase,1746 +physicalFlag1,1747 +physicalFlag2,1748 +physicalMeaningOfVerticalCoordinate,1749 +pl,1750 +platform,1751 +plusOneinOrdersOfSPD,1752 +points,1753 +postAuxiliary,1754 +postAuxiliaryArrayPresent,1755 +postProcessing,1756 +powerOfTenUsedToScaleClimateWeight,1757 +preBitmapValues,1758 +preProcessingParameter,1759 +precision,1760 +precisionOfTheUnpackedSubset,1761 +predefined_grid,1762 +predefined_grid_values,1763 +preferLocalConcepts,1764 +present,1765 +presentTrend1,1766 +presentTrend2,1767 +presentTrend3,1768 +presentTrend4,1769 +presentWeather1Present,1770 +presentWeather1PresentTrend1,1771 +presentWeather1PresentTrend2,1772 +presentWeather1PresentTrend3,1773 +presentWeather1PresentTrend4,1774 +presentWeather2Present,1775 +presentWeather2PresentTrend1,1776 +presentWeather2PresentTrend2,1777 +presentWeather2PresentTrend3,1778 +presentWeather2PresentTrend4,1779 +presentWeather3Present,1780 +presentWeather3PresentTrend1,1781 +presentWeather3PresentTrend2,1782 +presentWeather3PresentTrend3,1783 +presentWeather3PresentTrend4,1784 +pressureLevel,1785 +pressureUnits,1786 +primaryBitmap,1787 +primaryMissingValue,1788 +primaryMissingValueSubstitute,1789 +probContinous,1790 +probPoint,1791 +probProductDefinition,1792 +probabilityType,1793 +probabilityTypeName,1794 +process,1795 +produceLargeConstantFields,1796 +product,1797 +productDefinition,1798 +productDefinitionTemplateName,1799 +productDefinitionTemplateNumber,1800 +productDefinitionTemplateNumberInternal,1801 +productIdentifier,1802 +productType,1803 +productionStatusOfProcessedData,1804 +projSourceString,1805 +projString,1806 +projTargetString,1807 +projectLocalTemplate,1808 +projectLocalTemplateNumber,1809 +projectionCenterFlag,1810 +projectionCentreFlag,1811 +pv,1812 +pvlLocation,1813 +qfe,1814 +qfePresent,1815 +qfeUnits,1816 +qnh,1817 +qnhAPresent,1818 +qnhPresent,1819 +qnhUnits,1820 +qualityControl,1821 +qualityControlIndicator,1822 +qualityValueAssociatedWithParameter,1823 +quantile,1824 +quantileValue,1825 +radialAngularSpacing,1826 +radials,1827 +radius,1828 +radiusInMetres,1829 +radiusOfCentralCluster,1830 +radiusOfClusterDomain,1831 +radiusOfTheEarth,1832 +range,1833 +rangeBinSpacing,1834 +rdbDateTime,1835 +rdbSubtype,1836 +rdbType,1837 +rdb_key,1838 +rdbtime,1839 +rdbtimeDate,1840 +rdbtimeDay,1841 +rdbtimeHour,1842 +rdbtimeMinute,1843 +rdbtimeMonth,1844 +rdbtimeSecond,1845 +rdbtimeTime,1846 +rdbtimeYear,1847 +realPart,1848 +realPartOf00,1849 +realization,1850 +recDateTime,1851 +recentWeather,1852 +recentWeatherTry,1853 +rectime,1854 +rectimeDay,1855 +rectimeHour,1856 +rectimeMinute,1857 +rectimeSecond,1858 +reducedGrid,1859 +refdate,1860 +reference,1861 +referenceDate,1862 +referenceForGroupLengths,1863 +referenceForGroupWidths,1864 +referenceOfLengths,1865 +referenceOfWidths,1866 +referencePeriodList,1867 +referenceReflectivityForEchoTop,1868 +referenceSampleInterval,1869 +referenceStep,1870 +referenceValue,1871 +referenceValueError,1872 +reflectivityCalibrationConstant,1873 +releaseStartDay,1874 +releaseStartHour,1875 +releaseStartMinute,1876 +releaseStartMonth,1877 +releaseStartSecond,1878 +releaseStartYear,1879 +remarkPresent,1880 +reportType,1881 +representationMode,1882 +representationType,1883 +representativeMember,1884 +requestedByEntity,1885 +reserved,1886 +reserved1,1887 +reserved2,1888 +reserved3,1889 +reservedNeedNotBePresent,1890 +reservedOctet,1891 +reservedSection2,1892 +reservedSection3,1893 +reservedSection4,1894 +resolution,1895 +resolutionAndComponentFlags,1896 +resolutionAndComponentFlags1,1897 +resolutionAndComponentFlags2,1898 +resolutionAndComponentFlags3,1899 +resolutionAndComponentFlags4,1900 +resolutionAndComponentFlags6,1901 +resolutionAndComponentFlags7,1902 +resolutionAndComponentFlags8,1903 +restricted,1904 +rootGroupObjectHeaderAddress,1905 +rootGroupSymbolTableEntry,1906 +rootTablesDir,1907 +roundedMarsLatitude,1908 +roundedMarsLevelist,1909 +roundedMarsLongitude,1910 +runwayBrakingActionState1,1911 +runwayBrakingActionState2,1912 +runwayBrakingActionState3,1913 +runwayBrakingActionState4,1914 +runwayDepositCodeState1,1915 +runwayDepositCodeState2,1916 +runwayDepositCodeState3,1917 +runwayDepositCodeState4,1918 +runwayDepositState1,1919 +runwayDepositState2,1920 +runwayDepositState3,1921 +runwayDepositState4,1922 +runwayDepthOfDepositCodeState1,1923 +runwayDepthOfDepositCodeState2,1924 +runwayDepthOfDepositCodeState3,1925 +runwayDepthOfDepositCodeState4,1926 +runwayDepthOfDepositState1,1927 +runwayDepthOfDepositState2,1928 +runwayDepthOfDepositState3,1929 +runwayDepthOfDepositState4,1930 +runwayDesignatorRVR1,1931 +runwayDesignatorRVR2,1932 +runwayDesignatorRVR3,1933 +runwayDesignatorRVR4,1934 +runwayDesignatorState1,1935 +runwayDesignatorState2,1936 +runwayDesignatorState3,1937 +runwayDesignatorState4,1938 +runwayExtentOfContaminationCodeState1,1939 +runwayExtentOfContaminationCodeState2,1940 +runwayExtentOfContaminationCodeState3,1941 +runwayExtentOfContaminationCodeState4,1942 +runwayExtentOfContaminationState1,1943 +runwayExtentOfContaminationState2,1944 +runwayExtentOfContaminationState3,1945 +runwayExtentOfContaminationState4,1946 +runwayFrictionCodeValueState1,1947 +runwayFrictionCodeValueState2,1948 +runwayFrictionCodeValueState3,1949 +runwayFrictionCodeValueState4,1950 +runwayFrictionCoefficientCodeState1,1951 +runwayFrictionCoefficientCodeState2,1952 +runwayFrictionCoefficientCodeState3,1953 +runwayFrictionCoefficientCodeState4,1954 +runwayFrictionCoefficientState1,1955 +runwayFrictionCoefficientState2,1956 +runwayFrictionCoefficientState3,1957 +runwayFrictionCoefficientState4,1958 +runwaySideCodeState1,1959 +runwaySideCodeState2,1960 +runwaySideCodeState3,1961 +runwaySideCodeState4,1962 +runwayState,1963 +sampleSizeOfModelClimate,1964 +sampleSizeOfReferencePeriod,1965 +satelliteID,1966 +satelliteIdentifier,1967 +satelliteNumber,1968 +satelliteSeries,1969 +scaleFactorAtReferencePoint,1970 +scaleFactorOfAdditionalParameterForReferencePeriod,1971 +scaleFactorOfCentralWaveNumber,1972 +scaleFactorOfDistanceFromEnsembleMean,1973 +scaleFactorOfDistributionFunctionParameter,1974 +scaleFactorOfEarthMajorAxis,1975 +scaleFactorOfEarthMinorAxis,1976 +scaleFactorOfFirstFixedSurface,1977 +scaleFactorOfFirstLimit,1978 +scaleFactorOfFirstSize,1979 +scaleFactorOfFirstWavelength,1980 +scaleFactorOfLengthOfSemiMajorAxis,1981 +scaleFactorOfLengthOfSemiMinorAxis,1982 +scaleFactorOfLowerLimit,1983 +scaleFactorOfLowerWavePeriodLimit,1984 +scaleFactorOfMajorAxisOfOblateSpheroidEarth,1985 +scaleFactorOfMinorAxisOfOblateSpheroidEarth,1986 +scaleFactorOfPrimeMeridianOffset,1987 +scaleFactorOfRadiusOfSphericalEarth,1988 +scaleFactorOfSecondFixedSurface,1989 +scaleFactorOfSecondLimit,1990 +scaleFactorOfSecondSize,1991 +scaleFactorOfSecondWavelength,1992 +scaleFactorOfStandardDeviation,1993 +scaleFactorOfStandardDeviationInTheCluster,1994 +scaleFactorOfUpperLimit,1995 +scaleFactorOfUpperWavePeriodLimit,1996 +scaleFactorOfWaveDirectionSequenceParameter,1997 +scaleFactorOfWaveDirections,1998 +scaleFactorOfWaveFrequencies,1999 +scaleFactorOfWaveFrequencySequenceParameter,2000 +scaleValuesBy,2001 +scaledDirections,2002 +scaledFrequencies,2003 +scaledValueOfAdditionalParameterForReferencePeriod,2004 +scaledValueOfCentralWaveNumber,2005 +scaledValueOfDistanceFromEnsembleMean,2006 +scaledValueOfDistributionFunctionParameter,2007 +scaledValueOfEarthMajorAxis,2008 +scaledValueOfEarthMinorAxis,2009 +scaledValueOfFirstFixedSurface,2010 +scaledValueOfFirstLimit,2011 +scaledValueOfFirstSize,2012 +scaledValueOfFirstWavelength,2013 +scaledValueOfLengthOfSemiMajorAxis,2014 +scaledValueOfLengthOfSemiMinorAxis,2015 +scaledValueOfLowerLimit,2016 +scaledValueOfLowerWavePeriodLimit,2017 +scaledValueOfMajorAxisOfOblateSpheroidEarth,2018 +scaledValueOfMinorAxisOfOblateSpheroidEarth,2019 +scaledValueOfPrimeMeridianOffset,2020 +scaledValueOfRadiusOfSphericalEarth,2021 +scaledValueOfSecondFixedSurface,2022 +scaledValueOfSecondLimit,2023 +scaledValueOfSecondSize,2024 +scaledValueOfSecondWavelength,2025 +scaledValueOfStandardDeviation,2026 +scaledValueOfStandardDeviationInTheCluster,2027 +scaledValueOfUpperLimit,2028 +scaledValueOfUpperWavePeriodLimit,2029 +scaledValueOfWaveDirectionSequenceParameter,2030 +scaledValueOfWaveFrequencySequenceParameter,2031 +scaledValuesOfWaveDirections,2032 +scaledValuesOfWaveFrequencies,2033 +scalingFactorForFrequencies,2034 +scanPosition,2035 +scanningMode,2036 +scanningMode4,2037 +scanningMode5,2038 +scanningMode6,2039 +scanningMode7,2040 +scanningMode8,2041 +scanningModeForOneDiamond,2042 +scenarioOrigin,2043 +sd,2044 +second,2045 +secondDimension,2046 +secondDimensionCoordinateValueDefinition,2047 +secondDimensionPhysicalSignificance,2048 +secondLatitude,2049 +secondLatitudeInDegrees,2050 +secondOfEndOfOverallTimeInterval,2051 +secondOfForecast,2052 +secondOfForecastUsedInLocalTime,2053 +secondOfModelVersion,2054 +secondOfStartOfReferencePeriod,2055 +secondOrderFlags,2056 +secondOrderOfDifferentWidth,2057 +secondOrderValuesDifferentWidths,2058 +secondSize,2059 +secondWavelength,2060 +secondWavelengthInMetres,2061 +secondWavelengthInNanometres,2062 +secondaryBitMap,2063 +secondaryBitmap,2064 +secondaryBitmapPresent,2065 +secondaryBitmaps,2066 +secondaryBitmapsCount,2067 +secondaryBitmapsSize,2068 +secondaryMissingValue,2069 +secondaryMissingValueSubstitute,2070 +secondsOfAnalysis,2071 +secondsOfReference,2072 +section,2073 +section0Length,2074 +section0Pointer,2075 +section1,2076 +section10Length,2077 +section10Pointer,2078 +section11Length,2079 +section11Pointer,2080 +section1Flags,2081 +section1Length,2082 +section1Padding,2083 +section1Pointer,2084 +section2Length,2085 +section2Padding,2086 +section2Pointer,2087 +section2Present,2088 +section2Used,2089 +section3Flags,2090 +section3Length,2091 +section3Padding,2092 +section3Pointer,2093 +section3UniqueIdentifier,2094 +section4,2095 +section4Length,2096 +section4Padding,2097 +section4Pointer,2098 +section4UniqueIdentifier,2099 +section5,2100 +section5Length,2101 +section5Pointer,2102 +section5UniqueIdentifier,2103 +section6,2104 +section6Length,2105 +section6Pointer,2106 +section6UniqueIdentifier,2107 +section7,2108 +section7Length,2109 +section7Pointer,2110 +section7UniqueIdentifier,2111 +section8,2112 +section8Length,2113 +section8Pointer,2114 +section8UniqueIdentifier,2115 +section9Length,2116 +section9Pointer,2117 +section9UniqueIdentifier,2118 +sectionLengthLimitForEnsembles,2119 +sectionLengthLimitForProbability,2120 +sectionNumber,2121 +sectionPosition,2122 +section_01,2123 +section_02,2124 +section_03,2125 +section_04,2126 +section_05,2127 +section_06,2128 +section_07,2129 +section_08,2130 +section_09,2131 +section_1,2132 +section_10,2133 +section_11,2134 +section_2,2135 +section_3,2136 +section_4,2137 +section_5,2138 +section_6,2139 +section_7,2140 +section_8,2141 +selectStepTemplateInstant,2142 +selectStepTemplateInterval,2143 +selectedDay,2144 +selectedFcIndex,2145 +selectedHour,2146 +selectedMinute,2147 +selectedMonth,2148 +selectedSecond,2149 +selectedYear,2150 +sensitiveAreaDomain,2151 +sequences,2152 +setBitsPerValue,2153 +setCalendarId,2154 +setDecimalPrecision,2155 +setLocalDefinition,2156 +setPackingType,2157 +setToMissingIfOutOfRange,2158 +sfc_levtype,2159 +shapeOfTheEarth,2160 +shapeOfVerificationArea,2161 +shortName,2162 +shortNameECMF,2163 +shortNameLegacyECMF,2164 +short_name,2165 +signature,2166 +significanceOfReferenceDateAndTime,2167 +significanceOfReferenceTime,2168 +simpleThinningMissingRadius,2169 +simpleThinningSkip,2170 +simpleThinningStart,2171 +siteElevation,2172 +siteId,2173 +siteLatitude,2174 +siteLongitude,2175 +sizeOfLength,2176 +sizeOfOffsets,2177 +sizeOfPostAuxiliaryArray,2178 +sizeOfPostAuxiliaryArrayPlusOne,2179 +skew,2180 +skewness,2181 +skipExtraKeyAttributes,2182 +sort,2183 +sourceOfGridDefinition,2184 +sourceSinkChemicalPhysicalProcess,2185 +southEastLatitudeOfLPOArea,2186 +southEastLatitudeOfVerficationArea,2187 +southEastLongitudeOfLPOArea,2188 +southEastLongitudeOfVerficationArea,2189 +southLatitudeOfCluster,2190 +southLatitudeOfDomainOfTubing,2191 +southPoleOnProjectionPlane,2192 +southernLatitudeOfClusterDomain,2193 +southernLatitudeOfDomain,2194 +sp1,2195 +sp2,2196 +sp3,2197 +spaceUnitFlag,2198 +spacingOfBinsAlongRadials,2199 +spare,2200 +spare1,2201 +spare2,2202 +spare3,2203 +spare4,2204 +spatialProcessing,2205 +spatialSmoothingOfProduct,2206 +spatialVicinityMissingData,2207 +spatialVicinityProcessing,2208 +spatialVicinityProcessingArgument1,2209 +spatialVicinityProcessingArgument2,2210 +spatialVicinityType,2211 +spatialVicinityValue,2212 +spatialVicintiyList,2213 +spectralDataRepresentationMode,2214 +spectralDataRepresentationType,2215 +spectralMode,2216 +spectralType,2217 +sphericalHarmonics,2218 +standardDeviation,2219 +standardParallel,2220 +standardParallelInDegrees,2221 +standardParallelInMicrodegrees,2222 +startDateOfReferencePeriod,2223 +startOfHeaders,2224 +startOfMessage,2225 +startOfRange,2226 +startStep,2227 +startStepInHours,2228 +startStepUnit,2229 +startTimeStep,2230 +startingAzimuth,2231 +statisticalProcess,2232 +statisticalProcessesList,2233 +statistics,2234 +status,2235 +step,2236 +stepForClustering,2237 +stepHumanReadable,2238 +stepInHours,2239 +stepRange,2240 +stepRangeInHours,2241 +stepType,2242 +stepTypeForConversion,2243 +stepTypeInternal,2244 +stepUnits,2245 +stepZero,2246 +stepunits,2247 +stream,2248 +streamOfAnalysis,2249 +stretchingFactor,2250 +stretchingFactorScaled,2251 +stringValues,2252 +subCentre,2253 +subDefinitions1,2254 +subDefinitions2,2255 +subLocalDefinition1,2256 +subLocalDefinition2,2257 +subLocalDefinitionLength1,2258 +subLocalDefinitionLength2,2259 +subLocalDefinitionNumber1,2260 +subLocalDefinitionNumber2,2261 +subSetJ,2262 +subSetK,2263 +subSetM,2264 +subcentreOfAnalysis,2265 +subdivisionsOfBasicAngle,2266 +suiteName,2267 +superblockExtensionAddress,2268 +swapScanningAlternativeRows,2269 +swapScanningLat,2270 +swapScanningLon,2271 +swapScanningX,2272 +swapScanningY,2273 +system,2274 +systemNumber,2275 +t,2276 +table2Version,2277 +tableCode,2278 +tableNumber,2279 +tableReference,2280 +tablesLocalDir,2281 +tablesMasterDir,2282 +tablesVersion,2283 +tablesVersionLatest,2284 +tablesVersionLatestOfficial,2285 +targetCompressionRatio,2286 +td,2287 +tempLevtype,2288 +tempPressureUnits,2289 +temperature,2290 +temperatureAndDewpointPresent,2291 +template_is_deprecated,2292 +template_is_experimental,2293 +templatesLocalDir,2294 +templatesMasterDir,2295 +temporalVicinityProcessing,2296 +temporalVicinityTowardsFuture,2297 +temporalVicinityTowardsPast,2298 +temporalVicinityUnit,2299 +theHindcastMarsStream,2300 +theMessage,2301 +thisExperimentVersionNumber,2302 +thisMarsClass,2303 +thisMarsStream,2304 +thisMarsType,2305 +thousand,2306 +three,2307 +threshold,2308 +thresholdIndicator,2309 +tiggeCentre,2310 +tiggeLAMName,2311 +tiggeLocalVersion,2312 +tiggeModel,2313 +tiggeSection,2314 +tiggeSuiteID,2315 +tigge_name,2316 +tigge_short_name,2317 +tile,2318 +tileAttribute,2319 +tileClassification,2320 +tileGrouping,2321 +tileIndex,2322 +tileName,2323 +tileattribute,2324 +time,2325 +timeCoordinateDefinition,2326 +timeDomainTemplate,2327 +timeDomainTemplateNumber,2328 +timeIncrement,2329 +timeIncrementBetweenSuccessiveFields,2330 +timeOfAnalysis,2331 +timeOfForecast,2332 +timeOfForecastUsedInLocalTime,2333 +timeOfModelVersion,2334 +timeOfReference,2335 +timeRangeIndicator,2336 +timeRangeIndicatorFromStepRange,2337 +timeUnitFlag,2338 +timerepres,2339 +topLevel,2340 +total,2341 +totalAerosolBinsNumbers,2342 +totalInitialConditions,2343 +totalLength,2344 +totalNumber,2345 +totalNumberOfClusters,2346 +totalNumberOfDataValuesMissingInStatisticalProcess,2347 +totalNumberOfDirections,2348 +totalNumberOfForecastProbabilities,2349 +totalNumberOfFrequencies,2350 +totalNumberOfGridPoints,2351 +totalNumberOfIterations,2352 +totalNumberOfQuantiles,2353 +totalNumberOfRepetitions,2354 +totalNumberOfTileAttributeCombinations,2355 +totalNumberOfTileAttributePairs,2356 +totalNumberOfTubes,2357 +totalNumberOfValuesInUnpackedSubset,2358 +totalNumberOfWaveDirections,2359 +totalNumberOfWaveFrequencies,2360 +totalNumberOfdimensions,2361 +totalTileAttCombo,2362 +transportModelUsed,2363 +treatmentOfMissingData,2364 +true,2365 +trueLengthOfLastGroup,2366 +truncateDegrees,2367 +truncateLaplacian,2368 +tsectionNumber3,2369 +tsectionNumber4,2370 +tsectionNumber5,2371 +tubeDomain,2372 +tubeNumber,2373 +two,2374 +twoOrdersOfSPD,2375 +type,2376 +typeOfAnalysis,2377 +typeOfAuxiliaryInformation,2378 +typeOfCalendar,2379 +typeOfCompressionUsed,2380 +typeOfDistributionFunction,2381 +typeOfEnsembleForecast,2382 +typeOfEnsembleMember,2383 +typeOfFirstFixedSurface,2384 +typeOfGeneratingProcess,2385 +typeOfGrid,2386 +typeOfHorizontalLine,2387 +typeOfIntervalForFirstAndSecondSize,2388 +typeOfIntervalForFirstAndSecondWavelength,2389 +typeOfLevel,2390 +typeOfLevelECMF,2391 +typeOfOriginalFieldValues,2392 +typeOfPacking,2393 +typeOfPostProcessing,2394 +typeOfPreProcessing,2395 +typeOfProcessedData,2396 +typeOfReferenceDataset,2397 +typeOfRelationToReferenceDataset,2398 +typeOfSSTFieldUsed,2399 +typeOfSecondFixedSurface,2400 +typeOfSizeInterval,2401 +typeOfStatisticalPostProcessingOfEnsembleMembers,2402 +typeOfStatisticalProcessing,2403 +typeOfStatisticalProcessingForTimeRangeForReferencePeriod,2404 +typeOfTile,2405 +typeOfTimeIncrement,2406 +typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2407 +typeOfWaveDirectionSequence,2408 +typeOfWaveFrequencySequence,2409 +typeOfWavePeriodInterval,2410 +typeOfWavelengthInterval,2411 +typicalCentury,2412 +typicalDate,2413 +typicalDateTime,2414 +typicalDay,2415 +typicalHour,2416 +typicalMinute,2417 +typicalMonth,2418 +typicalSecond,2419 +typicalTime,2420 +typicalYear,2421 +typicalYear2,2422 +typicalYearOfCentury,2423 +uco,2424 +ucs,2425 +uerraLocalVersion,2426 +uerraSection,2427 +unexpandedDescriptors,2428 +unexpandedDescriptorsEncoded,2429 +unitOfOffsetFromReferenceTime,2430 +unitOfTime,2431 +unitOfTimeIncrement,2432 +unitOfTimeRange,2433 +units,2434 +unitsBias,2435 +unitsConversionOffset,2436 +unitsConversionScaleFactor,2437 +unitsDecimalScaleFactor,2438 +unitsECMF,2439 +unitsFactor,2440 +unitsLegacyECMF,2441 +unitsOfFirstFixedSurface,2442 +unitsOfSecondFixedSurface,2443 +unknown,2444 +unpack,2445 +unpackedError,2446 +unpackedSubsetPrecision,2447 +unpackedValues,2448 +unsignedIntegers,2449 +unstructuredGrid,2450 +unstructuredGridSubtype,2451 +unstructuredGridType,2452 +unstructuredGridUUID,2453 +unusedBitsInBitmap,2454 +updateSequenceNumber,2455 +upperLimit,2456 +upperRange,2457 +upperThreshold,2458 +upperThresholdValue,2459 +userDateEnd,2460 +userDateStart,2461 +userDateTimeEnd,2462 +userDateTimeStart,2463 +userTimeEnd,2464 +userTimeStart,2465 +uuid,2466 +uuidOfDataGroup,2467 +uuidOfHGrid,2468 +uuidOfVGrid,2469 +uvRelativeToGrid,2470 +validityDate,2471 +validityDateTime,2472 +validityTime,2473 +values,2474 +variationOfVisibility,2475 +variationOfVisibilityDirection,2476 +variationOfVisibilityDirectionAngle,2477 +variationOfVisibilityDirectionTrend1,2478 +variationOfVisibilityDirectionTrend2,2479 +variationOfVisibilityDirectionTrend3,2480 +variationOfVisibilityDirectionTrend4,2481 +variationOfVisibilityTrend1,2482 +variationOfVisibilityTrend2,2483 +variationOfVisibilityTrend3,2484 +variationOfVisibilityTrend4,2485 +varno,2486 +verificationDate,2487 +verificationMonth,2488 +verificationYear,2489 +verifyingMonth,2490 +version,2491 +versionNumOfFilesFreeSpaceStorage,2492 +versionNumOfRootGroupSymbolTableEntry,2493 +versionNumOfSharedHeaderMessageFormat,2494 +versionNumberOfExperimentalSuite,2495 +versionNumberOfGribLocalTables,2496 +versionNumberOfSuperblock,2497 +versionOfModelClimate,2498 +verticalCoordinate,2499 +verticalCoordinateDefinition,2500 +verticalDomainTemplate,2501 +verticalDomainTemplateNumber,2502 +verticalVisibility,2503 +verticalVisibilityCoded,2504 +visibility,2505 +visibilityInKilometresTrend1,2506 +visibilityInKilometresTrend2,2507 +visibilityInKilometresTrend3,2508 +visibilityInKilometresTrend4,2509 +visibilityTrend1,2510 +visibilityTrend2,2511 +visibilityTrend3,2512 +visibilityTrend4,2513 +wallClockInitialTimeOfExecutionDay,2514 +wallClockInitialTimeOfExecutionHour,2515 +wallClockInitialTimeOfExecutionMinute,2516 +wallClockInitialTimeOfExecutionMonth,2517 +wallClockInitialTimeOfExecutionSecond,2518 +wallClockInitialTimeOfExecutionYear,2519 +waveDirectionNumber,2520 +waveDomain,2521 +waveFrequencyNumber,2522 +waveLevType,2523 +weightAppliedToClimateMonth1,2524 +westLongitudeOfCluster,2525 +westLongitudeOfDomainOfTubing,2526 +westernLongitudeOfClusterDomain,2527 +westernLongitudeOfDomain,2528 +widthOfFirstOrderValues,2529 +widthOfLengths,2530 +widthOfSPD,2531 +widthOfWidths,2532 +windDirection,2533 +windDirectionTrend1,2534 +windDirectionTrend2,2535 +windDirectionTrend3,2536 +windDirectionTrend4,2537 +windGust,2538 +windGustTrend1,2539 +windGustTrend2,2540 +windGustTrend3,2541 +windGustTrend4,2542 +windPresent,2543 +windSpeed,2544 +windSpeedTrend1,2545 +windSpeedTrend2,2546 +windSpeedTrend3,2547 +windSpeedTrend4,2548 +windUnits,2549 +windUnitsTrend1,2550 +windUnitsTrend2,2551 +windUnitsTrend3,2552 +windUnitsTrend4,2553 +windVariableDirection,2554 +windVariableDirectionTrend1,2555 +windVariableDirectionTrend2,2556 +windVariableDirectionTrend3,2557 +windVariableDirectionTrend4,2558 +wrongPadding,2559 +xCoordinateOfOriginOfSectorImage,2560 +xCoordinateOfSubSatellitePoint,2561 +xDirectionGridLength,2562 +xDirectionGridLengthInMetres,2563 +xDirectionGridLengthInMillimetres,2564 +xFirst,2565 +xLast,2566 +yCoordinateOfOriginOfSectorImage,2567 +yCoordinateOfSubSatellitePoint,2568 +yDirectionGridLength,2569 +yDirectionGridLengthInMetres,2570 +yDirectionGridLengthInMillimetres,2571 +yFirst,2572 +yLast,2573 +year,2574 +yearOfAnalysis,2575 +yearOfCentury,2576 +yearOfEndOfOverallTimeInterval,2577 +yearOfForecast,2578 +yearOfForecastUsedInLocalTime,2579 +yearOfModelVersion,2580 +yearOfReference,2581 +yearOfStartOfReferencePeriod,2582 +zero,2583 +zeros,2584 From cae430a2c1b1d36073708c2264ae2faf20afca42 Mon Sep 17 00:00:00 2001 From: Eugen Betke Date: Wed, 30 Oct 2024 13:51:36 +0100 Subject: [PATCH 13/23] ECC-1898: Revert changes --- src/action_class_alias.cc | 21 +++++++++++++-------- tests/CMakeLists.txt | 2 +- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/src/action_class_alias.cc b/src/action_class_alias.cc index b5bf7f179..91f6cf28f 100644 --- a/src/action_class_alias.cc +++ b/src/action_class_alias.cc @@ -137,8 +137,6 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) if (x->name_space_ == NULL) x->name_space_ = act->name_space; - // TODO(maee): Make sure that the accessor is added to the trie - grib_context_log(p->h->context, GRIB_LOG_DEBUG, "alias: add only namespace: %s.%s", act->name_space, act->name); i = 0; @@ -180,12 +178,19 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) act->name_space, act->name, y->name_); /* printf("[%s %s]\n",y->all_names_[i], y->all_name_spaces_[i]); */ - // ECC-1898: Remove accessor from cache - grib_handle* hand = grib_handle_of_accessor(y); - if (hand->use_trie && y->all_name_spaces_[i] != NULL && strcmp(y->name_, act->name) != 0) { - int id = grib_hash_keys_get_id(hand->context->keys, act->name); - hand->accessors[id] = NULL; - } + /* + * ECC-1898: Remove accessor from cache + * This workaround was disabled because it was causing problems with the unaliasing mars.step, + * i.e., when unaliasing "mars.step" it also unaliases "step" + */ + + // TODO(maee): Implement a new hash function, which uses the name and the name_space as well + + //grib_handle* hand = grib_handle_of_accessor(y); + //if (hand->use_trie && y->all_name_spaces_[i] != NULL && strcmp(y->name_, act->name) != 0) { + // int id = grib_hash_keys_get_id(hand->context->keys, act->name); + // hand->accessors[id] = NULL; + //} while (i < MAX_ACCESSOR_NAMES - 1) { y->all_names_[i] = y->all_names_[i + 1]; diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 493386a5e..c53e98b73 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -276,7 +276,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1764 grib_ecc-1792 grib_ecc-1806 - grib_ecc-1898 + #grib_ecc-1898 grib_ecc-1907 grib_ecc-1941 grib_ecc-1942 From c204a123310e5e8559ba96852d3506bab3284346 Mon Sep 17 00:00:00 2001 From: Matthew Griffith Date: Wed, 30 Oct 2024 16:14:21 +0000 Subject: [PATCH 14/23] ECC-1955: Moved to . rather than _ in filenames. --- definitions/grib2/local/ecmf/section4_extras.def | 2 +- ...odelVersionConcept_AIFS.def => modelVersionConcept.AIFS.def} | 0 ...{modelVersionConcept_IFS.def => modelVersionConcept.IFS.def} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename definitions/grib2/localConcepts/ecmf/{modelVersionConcept_AIFS.def => modelVersionConcept.AIFS.def} (100%) rename definitions/grib2/localConcepts/ecmf/{modelVersionConcept_IFS.def => modelVersionConcept.IFS.def} (100%) diff --git a/definitions/grib2/local/ecmf/section4_extras.def b/definitions/grib2/local/ecmf/section4_extras.def index 0d70c1ac9..49351d8b9 100644 --- a/definitions/grib2/local/ecmf/section4_extras.def +++ b/definitions/grib2/local/ecmf/section4_extras.def @@ -5,7 +5,7 @@ if (centre is "ecmf" or datasetForLocal is "era6") { concept modelName(unknown, "modelNameConcept.def", conceptsMasterDir, conceptsLocalDirAll): no_copy, dump, read_only; if (modelName isnot "unknown") { - concept modelVersion(unknown, "modelVersionConcept_[modelName].def", conceptsMasterDir, conceptsLocalDirAll): no_copy, dump, read_only; + concept modelVersion(unknown, "modelVersionConcept.[modelName].def", conceptsMasterDir, conceptsLocalDirAll): no_copy, dump, read_only; # alias ls.model = modelName; # alias mars.model = modelName; } diff --git a/definitions/grib2/localConcepts/ecmf/modelVersionConcept_AIFS.def b/definitions/grib2/localConcepts/ecmf/modelVersionConcept.AIFS.def similarity index 100% rename from definitions/grib2/localConcepts/ecmf/modelVersionConcept_AIFS.def rename to definitions/grib2/localConcepts/ecmf/modelVersionConcept.AIFS.def diff --git a/definitions/grib2/localConcepts/ecmf/modelVersionConcept_IFS.def b/definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def similarity index 100% rename from definitions/grib2/localConcepts/ecmf/modelVersionConcept_IFS.def rename to definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def From 94a7cb4c570d1f86134b9c16479cb5b6b341fa8b Mon Sep 17 00:00:00 2001 From: Matthew Griffith Date: Wed, 30 Oct 2024 16:14:59 +0000 Subject: [PATCH 15/23] ECC-1955: Added new IFS model versions up to cycle 50. --- .../localConcepts/ecmf/modelVersionConcept.IFS.def | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def b/definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def index 8445b7489..2bbe0ee20 100644 --- a/definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def +++ b/definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def @@ -1,4 +1,12 @@ -'cy49r1' = { generatingProcessIdentifier = 155; } +'cy50r3' = { generatingProcessIdentifier = 163; } +'cy50r2' = { generatingProcessIdentifier = 162; } +'cy50r1' = { generatingProcessIdentifier = 161; } +'cy49r3' = { generatingProcessIdentifier = 160; } +'cy49r2' = { generatingProcessIdentifier = 159; } +'cy49r1' = { generatingProcessIdentifier = 158; } +'cy48r3' = { generatingProcessIdentifier = 157; } +'climatedt' = { generatingProcessIdentifier = 156; } +'cy48r2' = { generatingProcessIdentifier = 155; } 'cy48r1' = { generatingProcessIdentifier = 154; } 'cy47r3' = { generatingProcessIdentifier = 153; } 'cy47r2' = { generatingProcessIdentifier = 152; } @@ -7,4 +15,4 @@ 'cy45r1' = { generatingProcessIdentifier = 149; } 'cy43r3' = { generatingProcessIdentifier = 148; } 'cy43r1' = { generatingProcessIdentifier = 147; } -'cy41r2' = { generatingProcessIdentifier = 146; } +'cy41r2' = { generatingProcessIdentifier = 146; } \ No newline at end of file From c5e3403b54e3dcc25cdac435037251296852f74b Mon Sep 17 00:00:00 2001 From: Matthew Griffith Date: Wed, 30 Oct 2024 16:32:31 +0000 Subject: [PATCH 16/23] ECC-1955: Moved filenames for ERA6 pseudocentre also. --- ...{modelVersionConcept_AIFS.def => modelVersionConcept.AIFS.def} | 0 .../{modelVersionConcept_IFS.def => modelVersionConcept.IFS.def} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename definitions/grib2/localConcepts/era6/{modelVersionConcept_AIFS.def => modelVersionConcept.AIFS.def} (100%) rename definitions/grib2/localConcepts/era6/{modelVersionConcept_IFS.def => modelVersionConcept.IFS.def} (100%) diff --git a/definitions/grib2/localConcepts/era6/modelVersionConcept_AIFS.def b/definitions/grib2/localConcepts/era6/modelVersionConcept.AIFS.def similarity index 100% rename from definitions/grib2/localConcepts/era6/modelVersionConcept_AIFS.def rename to definitions/grib2/localConcepts/era6/modelVersionConcept.AIFS.def diff --git a/definitions/grib2/localConcepts/era6/modelVersionConcept_IFS.def b/definitions/grib2/localConcepts/era6/modelVersionConcept.IFS.def similarity index 100% rename from definitions/grib2/localConcepts/era6/modelVersionConcept_IFS.def rename to definitions/grib2/localConcepts/era6/modelVersionConcept.IFS.def From 9e4c44eddb18d91956b5906b5d9f03da0df892d9 Mon Sep 17 00:00:00 2001 From: shahramn Date: Wed, 30 Oct 2024 16:42:18 +0000 Subject: [PATCH 17/23] Debugging: file pool contents --- src/eccodes_prototypes.h | 1 + src/grib_filepool.cc | 20 +++++++++++++++++--- tests/unit_tests.cc | 7 +++++++ 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/eccodes_prototypes.h b/src/eccodes_prototypes.h index 90592dd72..a32aa8749 100644 --- a/src/eccodes_prototypes.h +++ b/src/eccodes_prototypes.h @@ -486,6 +486,7 @@ void grib_file_close(const char* filename, int force, int* err); void grib_file_close_all(int* err); grib_file* grib_get_file(const char* filename, int* err); void grib_file_delete(grib_file* file); +void grib_file_pool_print(const char* title, FILE* out); /* grib_geography.cc */ int grib_get_gaussian_latitudes(long trunc, double* lats); diff --git a/src/grib_filepool.cc b/src/grib_filepool.cc index a55bb562c..4f98a33e3 100644 --- a/src/grib_filepool.cc +++ b/src/grib_filepool.cc @@ -9,6 +9,8 @@ */ #include "grib_api_internal.h" +#include + #define GRIB_MAX_OPENED_FILES 200 #if GRIB_PTHREADS @@ -423,10 +425,22 @@ void grib_file_delete(grib_file* file) // } //} - free(file->name); - free(file->mode); - free(file->buffer); + free(file->name); file->name = 0; + free(file->mode); file->mode = 0; + free(file->buffer); file->buffer = 0; grib_context_free(file->context, file); /* file = NULL; */ GRIB_MUTEX_UNLOCK(&mutex1); } + +void grib_file_pool_print(const char* title, FILE* out) +{ + int i = 0; + grib_file* file = file_pool.first; + printf("%s: size=%zu, num_opened_files=%d\n", title, file_pool.size, file_pool.number_of_opened_files); + while (file) { + printf("%s:\tfile_pool entry %d = %s\n", title, i++, file->name); + file = file->next; + } + printf("\n"); +} diff --git a/tests/unit_tests.cc b/tests/unit_tests.cc index aad854fec..c401b94aa 100644 --- a/tests/unit_tests.cc +++ b/tests/unit_tests.cc @@ -855,6 +855,12 @@ static void test_grib_get_binary_scale_fact() Assert( result == 0 ); } +static void test_filepool() +{ + printf("Running %s ...\n", __func__); + grib_file_pool_print("file_pool contents", stdout); +} + int main(int argc, char** argv) { printf("Doing unit tests. ecCodes version = %ld\n", grib_get_api_version()); @@ -924,6 +930,7 @@ int main(int argc, char** argv) test_grib2_choose_PDTN(); test_codes_is_feature_enabled(); test_codes_get_features(); + test_filepool(); return 0; } From d8f1cdcc3d43f0707c029b07313f39cc0e648996 Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 31 Oct 2024 11:14:59 +0000 Subject: [PATCH 18/23] Definitions: Precedence order env var --- definitions/boot.def | 3 ++- tests/grib_ecc-806.sh | 15 +++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/definitions/boot.def b/definitions/boot.def index bb8991382..25b3f895d 100644 --- a/definitions/boot.def +++ b/definitions/boot.def @@ -12,7 +12,8 @@ constant internalVersion=30 : hidden; meta checkInternalVersion check_internal_version(internalVersion) : hidden; # ECC-806: Local concepts precedence order -transient preferLocalConcepts = 0 : hidden; +preferLocalConceptsEnvVar = getenv("ECCODES_GRIB_PREFER_LOCAL_CONCEPTS","0") : hidden; +transient preferLocalConcepts = preferLocalConceptsEnvVar : hidden; constant defaultTypeOfLevel="unknown" : hidden; diff --git a/tests/grib_ecc-806.sh b/tests/grib_ecc-806.sh index 95707b812..11c375c56 100755 --- a/tests/grib_ecc-806.sh +++ b/tests/grib_ecc-806.sh @@ -17,7 +17,6 @@ label="grib_ecc-806_test" tempGrb=temp.${label}.grb tempOut=temp.${label}.txt -tempErr=temp.${label}.err # This NCEP grib2 file has the keys # discipline = 0 @@ -36,5 +35,17 @@ res=`${tools_dir}/grib_get -p paramId,shortName,units,name $input` res=`${tools_dir}/grib_get -s preferLocalConcepts=1 -p paramId,shortName,units,name $input` [ "$res" = "260056 sdwe kg m**-2 Water equivalent of accumulated snow depth (deprecated)" ] +# Test the environment variable too +export ECCODES_GRIB_PREFER_LOCAL_CONCEPTS=1 +grib_check_key_equals $input preferLocalConceptsEnvVar,preferLocalConcepts '1 1' +res=`${tools_dir}/grib_get -p paramId,shortName,units,name $input` +[ "$res" = "260056 sdwe kg m**-2 Water equivalent of accumulated snow depth (deprecated)" ] + +export ECCODES_GRIB_PREFER_LOCAL_CONCEPTS=0 +grib_check_key_equals $input preferLocalConceptsEnvVar,preferLocalConcepts '0 0' +unset ECCODES_GRIB_PREFER_LOCAL_CONCEPTS +grib_check_key_equals $input preferLocalConceptsEnvVar,preferLocalConcepts '0 0' + + # Clean up -rm -f $tempGrb $tempOut $tempErr +rm -f $tempGrb $tempOut From f83540af740549ecf9d613ad37c5a824fd309d0b Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 31 Oct 2024 13:46:36 +0000 Subject: [PATCH 19/23] Testing: Rename --- tests/CMakeLists.txt | 2 +- tests/{grib_ecc-1691.sh => grib_destine_mars_keys.sh} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/{grib_ecc-1691.sh => grib_destine_mars_keys.sh} (99%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c53e98b73..fa685fd44 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -114,6 +114,7 @@ if( HAVE_BUILD_TOOLS ) grib2_wave_spectra grib_element grib_suppressed + grib_destine_mars_keys grib_2nd_order_numValues grib_ecc-136 grib_ecc-530 @@ -142,7 +143,6 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1654 grib_ecc-1671 grib_ecc-1708 - grib_ecc-1691 grib_ecc-1766 grib_ecc-1829 bufr_ecc-1028 diff --git a/tests/grib_ecc-1691.sh b/tests/grib_destine_mars_keys.sh similarity index 99% rename from tests/grib_ecc-1691.sh rename to tests/grib_destine_mars_keys.sh index d64bae087..dc24677a8 100755 --- a/tests/grib_ecc-1691.sh +++ b/tests/grib_destine_mars_keys.sh @@ -14,7 +14,7 @@ REDIRECT=/dev/null # ECC-1691: Destination Earth ClimateDT metadata support -label="grib_ecc-1691_test" +label="grib_destine_mars_keys_test" temp_grib_a=temp.$label.a.grib temp_grib_b=temp.$label.b.grib destine_sample=temp.$label.destine.grib From 7c13e374a052cc34d6434c758f857419426e7b0f Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 31 Oct 2024 16:41:46 +0000 Subject: [PATCH 20/23] Error messages --- src/accessor/grib_accessor_class_ascii.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/accessor/grib_accessor_class_ascii.cc b/src/accessor/grib_accessor_class_ascii.cc index e6d9a3436..d3c9bea69 100644 --- a/src/accessor/grib_accessor_class_ascii.cc +++ b/src/accessor/grib_accessor_class_ascii.cc @@ -66,16 +66,16 @@ int grib_accessor_ascii_t::pack_string(const char* val, size_t* len) { grib_handle* hand = grib_handle_of_accessor(this); const size_t alen = length_; - if (len[0] > (alen + 1)) { + if (*len > (alen + 1)) { grib_context_log(context_, GRIB_LOG_ERROR, - "pack_string: Wrong size (%zu) for %s, it contains %ld values", - len[0], name_, length_ + 1); - len[0] = 0; + "%s: Buffer too small for %s. It is %zu bytes long (input string len=%zu)", + class_name_, name_, alen, *len); + *len = alen; return GRIB_BUFFER_TOO_SMALL; } for (size_t i = 0; i < alen; i++) { - if (i < len[0]) + if (i < *len) hand->buffer->data[offset_ + i] = val[i]; else hand->buffer->data[offset_ + i] = 0; From 1c0fc64eee110ff380ba46674ab555b69152795b Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 1 Nov 2024 16:06:28 +0000 Subject: [PATCH 21/23] Accessors: ASCII: Deal with string too long --- src/accessor/grib_accessor_class_ascii.cc | 24 +++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/accessor/grib_accessor_class_ascii.cc b/src/accessor/grib_accessor_class_ascii.cc index d3c9bea69..6fa3f4cbc 100644 --- a/src/accessor/grib_accessor_class_ascii.cc +++ b/src/accessor/grib_accessor_class_ascii.cc @@ -68,8 +68,8 @@ int grib_accessor_ascii_t::pack_string(const char* val, size_t* len) const size_t alen = length_; if (*len > (alen + 1)) { grib_context_log(context_, GRIB_LOG_ERROR, - "%s: Buffer too small for %s. It is %zu bytes long (input string len=%zu)", - class_name_, name_, alen, *len); + "%s: Buffer too small for %s. It is %zu bytes long (input string len=%zu)", + class_name_, name_, alen, *len); *len = alen; return GRIB_BUFFER_TOO_SMALL; } @@ -81,6 +81,26 @@ int grib_accessor_ascii_t::pack_string(const char* val, size_t* len) hand->buffer->data[offset_ + i] = 0; } + // TODO(masn): Make this an error. + // But we have to allow this case unfortunately as returning an error breaks + // clients e.g. grib1 local def 40 has marsDomain of 2 bytes but local def 21 + // has the same key with 1 byte! Legacy stuff that cannot be changed easily. + // So at least issue a warning + if (*len > alen) { + // Decode the string and compare with the incoming value + size_t size = 0; + if (grib_get_string_length_acc(this, &size) == GRIB_SUCCESS) { + char* value = (char*)grib_context_malloc_clear(context_, size); + if (value) { + if (this->unpack_string(value, &size) == GRIB_SUCCESS && !STR_EQUAL(val, value)) { + fprintf(stderr, "ECCODES WARNING : String input '%s' truncated to '%s'. Key %s is %zu byte(s)\n", + val, value, name_, alen); + } + grib_context_free(context_, value); + } + } + } + return GRIB_SUCCESS; } From 8795b6d71afc3b4d896d63550e72d7a7dbe99515 Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 1 Nov 2024 16:06:38 +0000 Subject: [PATCH 22/23] Comments --- definitions/grib1/local.98.16.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/grib1/local.98.16.def b/definitions/grib1/local.98.16.def index f3ff7040a..8ab7c7aad 100644 --- a/definitions/grib1/local.98.16.def +++ b/definitions/grib1/local.98.16.def @@ -29,7 +29,7 @@ transient hourOfEndOfOverallTimeInterval=23; transient minuteOfEndOfOverallTimeInterval=59; transient secondOfEndOfOverallTimeInterval=59; -transient indicatorOfUnitForTimeRange=3; +transient indicatorOfUnitForTimeRange=3; # month transient lengthOfTimeRange=1; unsigned[1] averagingPeriod : dump ; From d538f7e08dc29b8310b1f9a40650700a3033d26d Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 1 Nov 2024 18:32:20 +0000 Subject: [PATCH 23/23] Testing: keys iterator get functions --- tests/grib_keys_iter.cc | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tests/grib_keys_iter.cc b/tests/grib_keys_iter.cc index d68977b13..4becf79c7 100644 --- a/tests/grib_keys_iter.cc +++ b/tests/grib_keys_iter.cc @@ -17,12 +17,11 @@ int main(int argc, char* argv[]) { - FILE* f = NULL; grib_handle* h = NULL; - int err = 0; + int err = 0; Assert(argc == 2); - f = fopen(argv[1], "rb"); + FILE* f = fopen(argv[1], "rb"); Assert(f); while ((h = grib_handle_new_from_file(0, f, &err)) != NULL) { @@ -39,6 +38,8 @@ int main(int argc, char* argv[]) int type = 0; GRIB_CHECK(grib_get_native_type(h, name, &type), 0); Assert( type > 0 && type < 7 ); + int ktype = grib_keys_iterator_get_native_type(kiter); + Assert(type == ktype); const char* type_name = grib_get_type_name(type); Assert( !STR_EQUAL(type_name, "unknown") ); printf("%s = %s (%d)\n", name, type_name, type); @@ -48,6 +49,16 @@ int main(int argc, char* argv[]) size_t vlen = MAX_VAL_LEN; GRIB_CHECK(grib_get_string(h, name, value, &vlen), name); Assert( strlen(value) > 0 ); + int e = grib_keys_iterator_get_string(kiter, value, &vlen); + Assert(!e); + Assert( STR_EQUAL(name, value) ); + } + if (STR_EQUAL(name, "editionNumber")) { + long lVal = 0; + size_t llen = 1; + int e = grib_keys_iterator_get_long(kiter, &lVal, &llen); + Assert(!e); + Assert(lVal == 1 || lVal == 2); } }